release: Multi-Hoster-Upload 2.1.0

Refine navigation feedback, settings controls, application dialogs, history actions, and development reload behavior. Restore hardware-accelerated rendering and expand release verification for the packaged source manifest.
This commit is contained in:
Sucukdeluxe
2026-08-10 15:56:45 +02:00
parent 761b5e27db
commit 3fc8cca329
13 changed files with 483 additions and 39 deletions
+2 -2
View File
@@ -27,10 +27,10 @@ class TestBrowserWindow extends EventEmitter {
}
}
test('configureStartupRenderer disables hardware acceleration', () => {
test('configureStartupRenderer leaves hardware acceleration enabled', () => {
let calls = 0;
configureStartupRenderer({ disableHardwareAcceleration() { calls++; } });
assert.equal(calls, 1);
assert.equal(calls, 0);
});
test('createStartupWindow forces the main window to start hidden', () => {