Compare commits

..

No commits in common. "c845be64cf94548b418721c6590960f2177a5920" and "d19e7ebc34866a42dc319c3c76fca5f75f74f43b" have entirely different histories.

3 changed files with 7 additions and 7 deletions

4
package-lock.json generated
View File

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

View File

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

View File

@ -6392,7 +6392,7 @@ function setupAutoUpdater() {
autoUpdater.autoRunAppAfterInstall = true;
autoUpdater.on('checking-for-update', () => {
appendDebugLog('auto-updater-checking');
console.log('Checking for updates...');
mainWindow?.webContents.send('update-checking');
});
@ -6416,7 +6416,7 @@ function setupAutoUpdater() {
compareUpdateVersions(downloadedUpdateVersion, incomingVersion) === 0
);
appendDebugLog('auto-updater-update-available', { version: displayVersion });
console.log('Update available:', displayVersion);
if (!hasAlreadyDownloadedThisVersion) {
autoUpdateReadyToInstall = false;
}
@ -6440,7 +6440,7 @@ function setupAutoUpdater() {
});
autoUpdater.on('update-not-available', () => {
appendDebugLog('auto-updater-update-not-available');
console.log('No updates available');
mainWindow?.webContents.send('update-not-available');
});
@ -6460,7 +6460,7 @@ function setupAutoUpdater() {
autoUpdater.on('update-downloaded', (info) => {
const downloadedVersion = normalizeUpdateVersion(info.version) || info.version;
appendDebugLog('auto-updater-update-downloaded', { version: downloadedVersion });
console.log('Update downloaded:', downloadedVersion);
autoUpdateReadyToInstall = true;
autoUpdateDownloadInProgress = false;
downloadedUpdateVersion = downloadedVersion;