Skip to content

Commit

Permalink
Version 0.9.18
Browse files Browse the repository at this point in the history
- Add new `tz` configuration property in the `client` object.  This will override the auto-detected TZ in all users browsers.
- Fixes #565
  • Loading branch information
jhuckaby committed Dec 28, 2022
1 parent d2521f3 commit 1e80586
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion htdocs/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ app.extend({
this.server_groups = [];

// timezone support
this.tz = jstz.determine().name();
this.tz = this.config.tz || jstz.determine().name();
this.zones = moment.tz.names();

// preload a few essential images
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Cronicle",
"version": "0.9.17",
"version": "0.9.18",
"description": "A simple, distributed task scheduler and runner with a web based UI.",
"author": "Joseph Huckaby <jhuckaby@gmail.com>",
"homepage": "https://github.com/jhuckaby/Cronicle",
Expand Down

0 comments on commit 1e80586

Please sign in to comment.