commit
c0de7b8c63
BIN
dist/main.js
vendored
BIN
dist/main.js
vendored
Binary file not shown.
@ -1,3 +1,10 @@
|
|||||||
|
## v3.1.4
|
||||||
|
|
||||||
|
Released August 28, 2016
|
||||||
|
|
||||||
|
- `Fixed` Search stopped working because of an undefined index error (#605)
|
||||||
|
- `Fixed` Better next/previous photo check to prevent an error when opening an album with only one photo
|
||||||
|
|
||||||
## v3.1.3
|
## v3.1.3
|
||||||
|
|
||||||
Released August 22, 2016
|
Released August 22, 2016
|
||||||
|
@ -21,7 +21,7 @@ function search($term) {
|
|||||||
* Photos
|
* Photos
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$query = Database::prepare(Database::get(), "SELECT id, title, tags, public, star, album, thumbUrl, takestamp, url FROM ? WHERE title LIKE '%?%' OR description LIKE '%?%' OR tags LIKE '%?%'", array(LYCHEE_TABLE_PHOTOS, $term, $term, $term));
|
$query = Database::prepare(Database::get(), "SELECT id, title, tags, public, star, album, thumbUrl, takestamp, url, medium FROM ? WHERE title LIKE '%?%' OR description LIKE '%?%' OR tags LIKE '%?%'", array(LYCHEE_TABLE_PHOTOS, $term, $term, $term));
|
||||||
$result = Database::execute(Database::get(), $query, __METHOD__, __LINE__);
|
$result = Database::execute(Database::get(), $query, __METHOD__, __LINE__);
|
||||||
|
|
||||||
if ($result===false) return false;
|
if ($result===false) return false;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Lychee",
|
"name": "Lychee",
|
||||||
"version": "3.1.3",
|
"version": "3.1.4",
|
||||||
"description": "Self-hosted photo-management done right.",
|
"description": "Self-hosted photo-management done right.",
|
||||||
"authors": "Tobias Reich <tobias@electerious.com>",
|
"authors": "Tobias Reich <tobias@electerious.com>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
@ -6,8 +6,8 @@
|
|||||||
lychee = {
|
lychee = {
|
||||||
|
|
||||||
title : document.title,
|
title : document.title,
|
||||||
version : '3.1.3',
|
version : '3.1.4',
|
||||||
versionCode : '030103',
|
versionCode : '030104',
|
||||||
|
|
||||||
updatePath : '//update.electerious.com/index.json',
|
updatePath : '//update.electerious.com/index.json',
|
||||||
updateURL : 'https://github.com/electerious/Lychee',
|
updateURL : 'https://github.com/electerious/Lychee',
|
||||||
|
@ -413,8 +413,8 @@ view.photo = {
|
|||||||
let $nextArrow = lychee.imageview.find('a#next')
|
let $nextArrow = lychee.imageview.find('a#next')
|
||||||
let $previousArrow = lychee.imageview.find('a#previous')
|
let $previousArrow = lychee.imageview.find('a#previous')
|
||||||
let photoID = photo.getID()
|
let photoID = photo.getID()
|
||||||
let hasNext = album.json && album.json.content && album.json.content[photoID] && album.json.content[photoID].nextPhoto!==''
|
let hasNext = album.json && album.json.content && album.json.content[photoID] && album.json.content[photoID].nextPhoto!=null && album.json.content[photoID].nextPhoto!==''
|
||||||
let hasPrevious = album.json && album.json.content && album.json.content[photoID] && album.json.content[photoID].previousPhoto!==''
|
let hasPrevious = album.json && album.json.content && album.json.content[photoID] && album.json.content[photoID].previousPhoto!=null && album.json.content[photoID].previousPhoto!==''
|
||||||
|
|
||||||
if (hasNext===false || lychee.viewMode===true) {
|
if (hasNext===false || lychee.viewMode===true) {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user