Skip to content

Commit

Permalink
Version 0.9.47
Browse files Browse the repository at this point in the history
- Disabled the "event autosave" feature that saves the state of an event edit, when you leave without saving.  It creates confusion.
  • Loading branch information
jhuckaby committed Apr 30, 2024
1 parent dc0340d commit 990e7ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion htdocs/js/pages/Schedule.class.js
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,8 @@ Class.subclass( Page.Base, "Page.Schedule", {
if (!event) return app.doError("Could not locate Event with ID: " + args.id);

// check for autosave recovery
if (app.autosave_event) {
// JH 2024-04-29 I have disabled this feature, because everyone hates it, including me.
if (0 && app.autosave_event) {
if (args.id == app.autosave_event.id) {
Debug.trace("Recovering autosave data for: " + args.id);
event = app.autosave_event;
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.46",
"version": "0.9.47",
"description": "A simple, distributed task scheduler and runner with a web based UI.",
"author": "Joseph Huckaby <[email protected]>",
"homepage": "https://github.com/jhuckaby/Cronicle",
Expand Down

0 comments on commit 990e7ed

Please sign in to comment.