From dd110377e6b9955141d43b8dea30516a35b30e49 Mon Sep 17 00:00:00 2001 From: oupala Date: Sun, 15 Sep 2024 11:00:18 +0200 Subject: [PATCH 1/3] chore: bump version from 2.5.0 to 2.5.1-dev --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a579f59..1b622ec 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "apaxy", - "version": "2.5.0", + "version": "2.5.1-dev", "description": "A simple, customisable theme for your Apache directory listing.", "main": "index.js", "scripts": { From 518adb3f021884194a83aa7cb8ef86797acc89bd Mon Sep 17 00:00:00 2001 From: NP Viroonc Date: Sun, 6 Oct 2024 14:47:04 -0700 Subject: [PATCH 2/3] fix: lightgallery feature Add missing comma at the end of lines 2 and 3. fix #160 --- apaxy/theme/apaxy-lightgallery.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apaxy/theme/apaxy-lightgallery.js b/apaxy/theme/apaxy-lightgallery.js index b4ace30..f2a1701 100644 --- a/apaxy/theme/apaxy-lightgallery.js +++ b/apaxy/theme/apaxy-lightgallery.js @@ -1,6 +1,6 @@ var imageSelector = [ - 'tr:not(.parent) td.indexcolname a[href$=".gif"]' - 'tr:not(.parent) td.indexcolname a[href$=".GIF"]' + 'tr:not(.parent) td.indexcolname a[href$=".gif"]', + 'tr:not(.parent) td.indexcolname a[href$=".GIF"]', 'tr:not(.parent) td.indexcolname a[href$=".heic"]', 'tr:not(.parent) td.indexcolname a[href$=".HEIC"]', 'tr:not(.parent) td.indexcolname a[href$=".jpg"]', From 5ca6e94cb173a631ce2aabb999b4b24872a7e54e Mon Sep 17 00:00:00 2001 From: oupala Date: Wed, 9 Oct 2024 23:26:54 +0200 Subject: [PATCH 3/3] chore: bump version from 2.5.1-dev to 2.5.1 --- CHANGELOG.md | 9 +++++++++ package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a7036fe..4752bfa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [2.5.1](https://github.com/oupala/apaxy/compare/2.5.0...2.5.1) (2024-10-09) + + +### Bug Fixes + +* lightgallery feature ([c7a1221](https://github.com/oupala/apaxy/commit/c7a1221bc7d92f6611a2d80255b3634e7f42d945)), closes [#160](https://github.com/oupala/apaxy/issues/160) + + + # [2.5.0](https://github.com/oupala/apaxy/compare/2.4.0...2.5.0) (2024-09-15) diff --git a/package.json b/package.json index 1b622ec..4630fbd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "apaxy", - "version": "2.5.1-dev", + "version": "2.5.1", "description": "A simple, customisable theme for your Apache directory listing.", "main": "index.js", "scripts": {