Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
photos
Commits
aa07c985
Commit
aa07c985
authored
Jul 26, 2014
by
Tobias Reich
Browse files
Merge branch 'master' into uploader
Conflicts: assets/min/main.js
parents
31ed7cb0
a7785177
Changes
4
Hide whitespace changes
Inline
Side-by-side
assets/js/album.js
View file @
aa07c985
...
...
@@ -308,10 +308,10 @@ album = {
if
(
$
(
"
.message .choice input[name='password']:checked
"
).
val
()
===
"
password
"
)
{
password
=
md5
(
$
(
"
.message input.text
"
).
val
());
album
.
json
.
password
=
true
;
album
.
json
.
password
=
1
;
}
else
{
password
=
""
;
album
.
json
.
password
=
false
;
album
.
json
.
password
=
0
;
}
if
(
$
(
"
.message .choice input[name='listed']:checked
"
).
val
()
===
"
listed
"
)
listed
=
true
;
...
...
@@ -323,8 +323,11 @@ album = {
if
(
visible
.
album
())
{
album
.
json
.
public
=
(
album
.
json
.
public
==
0
)
?
1
:
0
;
album
.
json
.
password
=
(
album
.
json
.
public
==
0
)
?
0
:
album
.
json
.
password
;
view
.
album
.
public
();
view
.
album
.
password
();
if
(
album
.
json
.
public
==
1
)
contextMenu
.
shareAlbum
(
albumID
,
e
);
}
...
...
assets/js/lychee.js
View file @
aa07c985
...
...
@@ -8,8 +8,8 @@
var
lychee
=
{
title
:
""
,
version
:
"
2.5.
5
"
,
version_code
:
"
02050
5
"
,
version
:
"
2.5.
6
"
,
version_code
:
"
02050
6
"
,
api_path
:
"
php/api.php
"
,
update_path
:
"
http://lychee.electerious.com/version/index.php
"
,
...
...
build/package.json
View file @
aa07c985
{
"name"
:
"Lychee"
,
"version"
:
"2.5.
0
"
,
"version"
:
"2.5.
6
"
,
"description"
:
"Self-hosted photo-management done right."
,
"authors"
:
"Tobias Reich <tobias.reich.ich@gmail.com>"
,
"license"
:
"MIT"
,
...
...
docs/Changelog.md
View file @
aa07c985
## v2.5.6
Released July 25, 2014
-
`New`
Choose if album should be listed public (#177)
-
`New`
Gulp instead of Grunt with autoprefixer
-
`Improved`
Slightly better performance when opening big albums
-
`Improved`
Checksum with sha1 instead of md5 (#179)
-
`Fixed`
Missing public badge on public albums
-
`Fixed`
Wrong path for public photos in view.php
-
`Fixed`
Wrong link to thumbs when searching
-
`Fixed`
Wrong date in album view when takestamp was null
-
`Fixed`
It wasn't possible to rename albums while searching
-
`Fixed`
It was possible to right-click on SmartAlbums after searching
## v2.5.5
Released July 5, 2014
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment