Compare commits

..

No commits in common. "674041a603de3f32c310964af87a7fea8fcba7e0" and "3af159f8e7472723781dee31f4affa7d0fce86c4" have entirely different histories.

3 changed files with 4 additions and 8 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "twitch-vod-manager",
"version": "4.3.2",
"version": "4.3.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "twitch-vod-manager",
"version": "4.3.2",
"version": "4.3.0",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",

View File

@ -1,6 +1,6 @@
{
"name": "twitch-vod-manager",
"version": "4.3.2",
"version": "4.3.0",
"description": "Twitch VOD Manager - Download Twitch VODs easily",
"main": "dist/main.js",
"author": "xRangerDE",

View File

@ -3945,9 +3945,7 @@ ipcMain.handle('start-download', async () => {
saveQueue(downloadQueue);
emitQueueUpdated();
if (!isDownloading) {
void processQueue();
}
processQueue();
return true;
});
@ -4201,7 +4199,6 @@ app.on('window-all-closed', () => {
if (currentProcess) {
currentProcess.kill();
}
saveConfig(config);
flushQueueSave();
if (process.platform !== 'darwin') {
@ -4214,6 +4211,5 @@ app.on('before-quit', () => {
cleanupMetadataCaches('shutdown');
stopDebugLogFlushTimer(true);
stopAutoUpdatePolling();
saveConfig(config);
flushQueueSave();
});