mirror of
https://github.com/lrsjng/h5ai.git
synced 2025-08-29 08:40:34 +02:00
Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
c521ecd055 | ||
|
44e53ab213 |
13
CHANGELOG.md
13
CHANGELOG.md
@@ -1,6 +1,19 @@
|
||||
# Changelog
|
||||
|
||||
|
||||
## v0.29.1 - *2019-01-20*
|
||||
|
||||
* replace `babel-preset-es2015` with `babel-preset-env`
|
||||
* update `eslint` to 5.14.1
|
||||
* update `ghu` to 0.12.0
|
||||
* update `jsdom` to 9.2.0
|
||||
* update `kjua` to 0.1.2
|
||||
* update `lolight` to 0.6.0
|
||||
* update `marked` to 0.6.1
|
||||
* update `normalize.css` to 8.0.1
|
||||
* update `scar` to 1.0.0
|
||||
|
||||
|
||||
## v0.29.0 - *2016-08-12*
|
||||
|
||||
* back to cleaner visual experience
|
||||
|
@@ -32,7 +32,7 @@ requires [`node 6.0+`][node] to be installed).
|
||||
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2016 Lars Jung (https://larsjung.de)
|
||||
Copyright (c) 2019 Lars Jung (https://larsjung.de)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
4
ghu.js
4
ghu.js
@@ -18,7 +18,7 @@ const webpackCfg = include => ({
|
||||
loader: 'babel-loader',
|
||||
query: {
|
||||
cacheDirectory: true,
|
||||
presets: ['es2015']
|
||||
presets: ['babel-preset-env']
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -108,7 +108,7 @@ ghu.task('build:copy', runtime => {
|
||||
read(`${SRC}: **, ! **/*.js, ! **/*.less, ! **/*.pug, ! **/conf/*.json`)
|
||||
.then(newerThan(mapper))
|
||||
.then(each(obj => {
|
||||
if (/index\.php$/.test(obj.source)) {
|
||||
if ((/index\.php$/).test(obj.source)) {
|
||||
obj.content = obj.content.replace('{{VERSION}}', runtime.pkg.version);
|
||||
}
|
||||
}))
|
||||
|
6579
package-lock.json
generated
Normal file
6579
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
22
package.json
22
package.json
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "h5ai",
|
||||
"version": "0.29.0",
|
||||
"version": "0.29.1",
|
||||
"description": "Modern HTTP web server index.",
|
||||
"homepage": "https://larsjung.de/h5ai/",
|
||||
"bugs": "https://github.com/lrsjng/h5ai/issues",
|
||||
@@ -15,18 +15,18 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"babel-loader": "6.2.4",
|
||||
"babel-preset-es2015": "6.13.2",
|
||||
"eslint": "3.2.2",
|
||||
"ghu": "0.11.0",
|
||||
"jsdom": "9.4.2",
|
||||
"kjua": "0.1.1",
|
||||
"lolight": "0.3.0",
|
||||
"marked": "0.3.6",
|
||||
"normalize.css": "4.2.0",
|
||||
"babel-preset-env": "1.7.0",
|
||||
"eslint": "5.14.1",
|
||||
"ghu": "0.12.0",
|
||||
"jsdom": "9.2.0",
|
||||
"kjua": "0.1.2",
|
||||
"lolight": "0.6.0",
|
||||
"marked": "0.6.1",
|
||||
"normalize.css": "8.0.1",
|
||||
"null-loader": "0.1.1",
|
||||
"scar": "0.17.0"
|
||||
"scar": "1.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.0.0"
|
||||
"node": ">=10.0.0"
|
||||
}
|
||||
}
|
||||
|
@@ -122,7 +122,7 @@
|
||||
- alwaysVisible: boolean, always show download button (defaults to download the current folder)
|
||||
*/
|
||||
"download": {
|
||||
"enabled": false,
|
||||
"enabled": true,
|
||||
"type": "php-tar",
|
||||
"packageName": null,
|
||||
"alwaysVisible": false
|
||||
@@ -157,7 +157,7 @@
|
||||
- type: string, "php" (sloooow) or "shell-du" (sloow)
|
||||
*/
|
||||
"foldersize": {
|
||||
"enabled": false,
|
||||
"enabled": true,
|
||||
"type": "php"
|
||||
},
|
||||
|
||||
@@ -180,7 +180,7 @@
|
||||
- qrColor: string, QR-Code fill color
|
||||
*/
|
||||
"info": {
|
||||
"enabled": false,
|
||||
"enabled": true,
|
||||
"show": false,
|
||||
"qrcode": true,
|
||||
"qrFill": "#999",
|
||||
@@ -318,7 +318,7 @@
|
||||
- checkboxes: boolean, show a checkbox on mouse over item
|
||||
*/
|
||||
"select": {
|
||||
"enabled": false,
|
||||
"enabled": true,
|
||||
"clickndrag": true,
|
||||
"checkboxes": true
|
||||
},
|
||||
|
Reference in New Issue
Block a user