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:
@@ -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;
|
||||
});
|
||||
|
||||
@@ -62,6 +62,7 @@ const sourceFiles = [
|
||||
'renderer/account-submit.js',
|
||||
'renderer/app.js',
|
||||
'renderer/drop-target.html',
|
||||
'renderer/i18n.js',
|
||||
'renderer/index.html',
|
||||
'renderer/styles.css',
|
||||
'scripts/afterPack.cjs',
|
||||
@@ -83,11 +84,13 @@ const sourceFiles = [
|
||||
'tests/diagnostics-agent.test.js',
|
||||
'tests/diagnostics-collectors.test.js',
|
||||
'tests/diagnostics-protocol.test.js',
|
||||
'tests/dev-runner.test.js',
|
||||
'tests/doodstream-api-upload.test.js',
|
||||
'tests/doodstream-upload.test.js',
|
||||
'tests/file-probe.test.js',
|
||||
'tests/history-retention.test.js',
|
||||
'tests/hosters.test.js',
|
||||
'tests/i18n.test.js',
|
||||
'tests/ip-allowlist.test.js',
|
||||
'tests/log-mode.test.js',
|
||||
'tests/log-policy.test.js',
|
||||
|
||||
Reference in New Issue
Block a user