release: v2.0.6

Redesign the desktop workspace with task sidebars, live filters, clearer settings, and an accessible update dialog.

Harden encrypted backup imports, configuration persistence, history retention, queue snapshots, shutdown recovery, and update installation ordering.

Publish verified Windows artifacts and refreshed English documentation.
This commit is contained in:
Sucukdeluxe
2026-08-10 09:28:28 +02:00
commit 76a228fb7c
113 changed files with 36923 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
(function (root) {
'use strict';
function createSerializedRunner(task) {
if (typeof task !== 'function') throw new TypeError('task must be a function');
let pending = Promise.resolve();
return {
run(...args) {
const result = pending.catch(() => {}).then(() => task(...args));
pending = result;
return result;
},
flush() {
return pending;
}
};
}
const api = { createSerializedRunner };
if (typeof module !== 'undefined' && module.exports) module.exports = api;
else if (root) root.SerializedRunner = api;
})(typeof window !== 'undefined' ? window : this);