From b12c040727e116f5b6b9dd0afe44958d20369969 Mon Sep 17 00:00:00 2001 From: oupala Date: Tue, 4 Jun 2019 13:12:59 +0200 Subject: [PATCH 1/4] chore: bump version from 2.1.1 to 2.1.2-dev --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 33ce1e4..206e2e3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "apaxy", - "version": "2.1.1", + "version": "2.1.2-dev", "description": "A simple, customisable theme for your Apache directory listing.", "main": "index.js", "scripts": { From 5668b927f685240f18a2fe0388e19f78903bc4cf Mon Sep 17 00:00:00 2001 From: oupala Date: Mon, 3 Jun 2019 21:09:16 +0200 Subject: [PATCH 2/4] fix: add gif extension to image gallery viewer --- apaxy/theme/apaxy-lightgallery.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apaxy/theme/apaxy-lightgallery.js b/apaxy/theme/apaxy-lightgallery.js index 6ccfb88..5e78dea 100644 --- a/apaxy/theme/apaxy-lightgallery.js +++ b/apaxy/theme/apaxy-lightgallery.js @@ -1,7 +1,7 @@ var imageSelector = [ 'tr:not(.parent) td.indexcolname a[href$=".png"]', 'tr:not(.parent) td.indexcolname a[href$=".jpg"]', - 'tr:not(.parent) td.indexcolname a[href$=".jpeg"]', + 'tr:not(.parent) td.indexcolname a[href$=".gif"]', ].join(', '); lightGallery(document.getElementById('indexlist'), { From ded1ffc983de607eea3679912b7eb78842541826 Mon Sep 17 00:00:00 2001 From: oupala Date: Mon, 3 Jun 2019 21:18:32 +0200 Subject: [PATCH 3/4] refactor: log formatting Refactor log formatting for a better readability. --- apaxy-configure.sh | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/apaxy-configure.sh b/apaxy-configure.sh index 28c8757..fea382a 100755 --- a/apaxy-configure.sh +++ b/apaxy-configure.sh @@ -252,16 +252,16 @@ fi # script # output current config -log 3 "current config" -log 3 " configFile: ${configFile}" -log 3 " apacheWebRootPath: ${apacheWebRootPath}" -log 3 " installWebPath: ${installWebPath}" -log 3 " installDir: ${installDir}" -log 3 " enableGallery: ${enableGallery}" -log 3 " headerMessage: ${headerMessage}" -log 3 " footerMessage: ${footerMessage}" -log 3 " logLevel: ${logLevel}" -log 3 " logFile: ${logFile}" +log 3 "- current config" +log 3 " configFile: ${configFile}" +log 3 " apacheWebRootPath: ${apacheWebRootPath}" +log 3 " installWebPath: ${installWebPath}" +log 3 " installDir: ${installDir}" +log 3 " enableGallery: ${enableGallery}" +log 3 " headerMessage: ${headerMessage}" +log 3 " footerMessage: ${footerMessage}" +log 3 " logLevel: ${logLevel}" +log 3 " logFile: ${logFile}" log 1 "- creating install directory ${installDir}" mkdir -p "${installDir}" From ea8a72d375e804f8091c5aaf847216002654ad45 Mon Sep 17 00:00:00 2001 From: oupala Date: Tue, 4 Jun 2019 13:15:36 +0200 Subject: [PATCH 4/4] chore: bump version from 2.1.2-dev to 2.1.2 --- CHANGELOG.md | 9 +++++++++ package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d1a9e0..0bfd128 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [2.1.2](https://github.com/oupala/apaxy/compare/2.1.1...2.1.2) (2019-06-04) + + +### Bug Fixes + +* add gif extension to image gallery viewer ([5668b92](https://github.com/oupala/apaxy/commit/5668b92)) + + + ## [2.1.1](https://github.com/oupala/apaxy/compare/2.1.0...2.1.1) (2019-06-03) diff --git a/package.json b/package.json index 206e2e3..7f56cc4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "apaxy", - "version": "2.1.2-dev", + "version": "2.1.2", "description": "A simple, customisable theme for your Apache directory listing.", "main": "index.js", "scripts": {