Skip to content

Commit

Permalink
v5.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Kris-B committed Jun 30, 2016
1 parent 98a0f43 commit 2f5668f
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nanogallery",
"version": "5.10.2",
"version": "5.10.3",
"homepage": "http://nanogallery.brisbois.fr",
"authors": [
"Christophe Brisbois"
Expand Down
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ nanoGALLERY - jQuery plugin
ChangeLog
------

v5.10.3
------
- nanoPhotosProvider : underscores are replaced with spaces in title an description
- nanoPhotosProvider : remove leading @@NNNN in title

v5.10.2
------
- bugfix issue #119 iPhone issue - version detection error
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.nanogallery.min.js

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions jquery.nanogallery.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
nanoGALLERY v5.10.3 release notes.
- nanoPhotosProvider : underscores are replaced with spaces in title an description
- nanoPhotosProvider : removes leading @@NNNN in title
- nanoPhotosProvider : underscores are replaced with spaces in title an description
- nanoPhotosProvider : remove leading @@NNNN in title
**Visit nanoGALLERY homepage for usage details: [http://nanogallery.brisbois.fr](http://www.nanogallery.brisbois.fr/)**
Expand Down Expand Up @@ -3251,6 +3251,8 @@ nanoGALLERY v5.10.3 release notes.
// remove leading @@NNNN (used to sort manually the albums)
if( title.search(/@@\d\d\d\d/) == 0 ) {
title=title.substring(6);
// Trim trailing/leading whitespace
title = title.replace(/^\s*|\s*$/, '');
}

var description=''; //' ';
Expand Down
2 changes: 1 addition & 1 deletion nanogallery.jquery.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"touchscreen",
"RTL"
],
"version": "5.10.2",
"version": "5.10.3",
"author": {
"name": "Kris_B",
"url": "http://www.brisbois.fr"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nanogallery",
"version": "5.10.2",
"version": "5.10.3",
"homepage": "http://nanogallery.brisbois.fr",
"author": "Christophe Brisbois <[email protected]>",
"description": "image gallery simplified - jQuery plugin",
Expand Down

0 comments on commit 2f5668f

Please sign in to comment.