1
0
mirror of https://github.com/oupala/apaxy.git synced 2025-09-25 17:59:02 +02:00

4 Commits
2.1.1 ... 2.1.2

Author SHA1 Message Date
oupala
ea8a72d375 chore: bump version from 2.1.2-dev to 2.1.2 2019-06-04 13:15:36 +02:00
oupala
ded1ffc983 refactor: log formatting
Refactor log formatting for a better readability.
2019-06-04 13:13:41 +02:00
oupala
5668b927f6 fix: add gif extension to image gallery viewer 2019-06-04 13:13:27 +02:00
oupala
b12c040727 chore: bump version from 2.1.1 to 2.1.2-dev 2019-06-04 13:12:59 +02:00
4 changed files with 21 additions and 12 deletions

View File

@@ -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)

View File

@@ -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}"

View File

@@ -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'), {

View File

@@ -1,6 +1,6 @@
{
"name": "apaxy",
"version": "2.1.1",
"version": "2.1.2",
"description": "A simple, customisable theme for your Apache directory listing.",
"main": "index.js",
"scripts": {