Version 5.2.6

This commit is contained in:
Chrystian Huot 2021-08-25 12:27:55 -04:00
parent 7e7c48c855
commit 70ec113c85
6 changed files with 9 additions and 5 deletions

View file

@ -35,6 +35,10 @@ _v5.2.5_
- README.md updated. - README.md updated.
- Documentation images resized. - Documentation images resized.
_v5.2.6_
- Fix crash when when options.pruneDays = 0.
# Version 5.1 # Version 5.1
This one is a big one... **Be sure to backup your config.json and your database.sqlite before updating.** This one is a big one... **Be sure to backup your config.json and your database.sqlite before updating.**

View file

@ -37,5 +37,5 @@
"build": "ng build --base-href ./ --configuration production", "build": "ng build --base-href ./ --configuration production",
"start": "ng serve" "start": "ng serve"
}, },
"version": "5.2.5" "version": "5.2.6"
} }

View file

@ -14,5 +14,5 @@
"update": "node update" "update": "node update"
}, },
"type": "module", "type": "module",
"version": "5.2.5" "version": "5.2.6"
} }

View file

@ -985,7 +985,7 @@ export class Controller extends EventEmitter {
}, 15 * 60 * 1000); }, 15 * 60 * 1000);
} else { } else {
this.pruneScheduler = null; this.pruneInterval = null;
} }
} }

View file

@ -19,6 +19,6 @@
'use strict'; 'use strict';
export const version = '5.2.5'; export const version = '5.2.6';
export default version; export default version;

View file

@ -46,5 +46,5 @@
"start": "nodemon" "start": "nodemon"
}, },
"type": "module", "type": "module",
"version": "5.2.5" "version": "5.2.6"
} }