release: Multi-Hoster-Upload 2.1.1

Add live English and German interface switching, animated navigation and history controls, improved update changelogs, remembered upload folders, reliable repeated hot reloads, and refreshed public documentation.
This commit is contained in:
Sucukdeluxe
2026-08-10 18:31:35 +02:00
parent d8e4a2d203
commit dc744ec6f3
19 changed files with 1658 additions and 88 deletions
+4 -2
View File
@@ -57,12 +57,14 @@ function releaseLock() {
}
function startApp() {
child = spawn(electron, ['.', '--dev'], {
const startedChild = spawn(electron, ['.', '--dev'], {
cwd: root,
stdio: 'inherit',
windowsHide: false
});
child.once('exit', (code, signal) => {
child = startedChild;
startedChild.once('exit', (code, signal) => {
if (child !== startedChild) return;
child = null;
if (!stopping && code !== 0 && signal !== 'SIGTERM') process.exitCode = code || 1;
});