Skip to content

Commit 63cba55

Browse files
authored
Merge pull request #687 from electerious/develop
Lychee 3.1.6
2 parents 3eaaed7 + 34d2c74 commit 63cba55

File tree

8 files changed

+38
-26
lines changed

8 files changed

+38
-26
lines changed

.htaccess

+7
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@ Options -Indexes
1010
# php_value upload_max_filesize 20M
1111
# php_value max_file_uploads 100
1212
#</IfModule>
13+
#<IfModule mod_php7.c>
14+
# php_value max_execution_time 200
15+
# php_value post_max_size 200M
16+
# php_value upload_max_size 200M
17+
# php_value upload_max_filesize 20M
18+
# php_value max_file_uploads 100
19+
#</IfModule>
1320

1421
# ---
1522
# Uncomment these lines when you want to allow access to the Lychee API from different origins

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 Tobias Reich (http://electerious.com/)
3+
Copyright (c) 2017 Tobias Reich
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

dist/main.js

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/view.js

100755100644
+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/Changelog.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## v3.1.6
2+
3+
Released March 20, 2017
4+
5+
- `Fixed` Downloading a SmartAlbum results in crash (#652)
6+
- `Fixed` htaccess IfModule for PHP7 (#653)
7+
18
## v3.1.5
29

310
Released October 25, 2016

php/Modules/Album.php

-2
Original file line numberDiff line numberDiff line change
@@ -255,8 +255,6 @@ public function getArchive() {
255255
// Execute query
256256
$photos = Database::execute(Database::get(), $photos, __METHOD__, __LINE__);
257257

258-
if ($album===null) return false;
259-
260258
// Check if album empty
261259
if ($photos->num_rows==0) {
262260
Log::error(Database::get(), __METHOD__, __LINE__, 'Could not create ZipArchive without images');

src/package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Lychee",
3-
"version": "3.1.5",
3+
"version": "3.1.6",
44
"description": "Self-hosted photo-management done right.",
55
"authors": "Tobias Reich <[email protected]>",
66
"license": "MIT",
@@ -14,20 +14,20 @@
1414
"compile": "gulp"
1515
},
1616
"dependencies": {
17-
"babel-preset-es2015": "^6.18.0",
17+
"babel-preset-es2015": "^6.24.0",
1818
"basiccontext": "^3.5.1",
19-
"basicmodal": "^3.3.7",
19+
"basicmodal": "^3.3.8",
2020
"gulp": "^3.9.1",
2121
"gulp-autoprefixer": "3.1.1",
2222
"gulp-babel": "^6.1.2",
23-
"gulp-concat": "^2.6.0",
24-
"gulp-inject": "^4.1.0",
25-
"gulp-load-plugins": "^1.3.0",
23+
"gulp-concat": "^2.6.1",
24+
"gulp-inject": "^4.2.0",
25+
"gulp-load-plugins": "^1.5.0",
2626
"gulp-minify-css": "^1.2.4",
27-
"gulp-rimraf": "^0.2.0",
28-
"gulp-sass": "^2.3.2",
29-
"gulp-uglify": "^2.0.0",
30-
"jquery": "^3.1.1",
27+
"gulp-rimraf": "^0.2.1",
28+
"gulp-sass": "^3.1.0",
29+
"gulp-uglify": "^2.1.1",
30+
"jquery": "^3.2.0",
3131
"mousetrap": "^1.6.0"
3232
}
3333
}

src/scripts/lychee.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
lychee = {
66

77
title : document.title,
8-
version : '3.1.5',
9-
versionCode : '030105',
8+
version : '3.1.6',
9+
versionCode : '030106',
1010

1111
updatePath : '//update.electerious.com/index.json',
1212
updateURL : 'https://github.com/electerious/Lychee',

0 commit comments

Comments
 (0)