Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dev.aunetx.deezer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"sources": [
{
"type": "archive",
"url": "https://cdn-content.dzcdn.net/builds/deezer-desktop/8cF2rAuKxLcU1oMDmCYm8Uiqe19Ql0HTySLssdzLkQ9ZWHuDTp2JBtQOvdrFzWPA/win32/x86/7.1.50/DeezerDesktopSetup_7.1.50.exe",
"sha256": "85843367f2f5878820193952d7efce197f37303a29aaace11bddbfcd33839ac6",
"url": "https://cdn-content.dzcdn.net/builds/deezer-desktop/8cF2rAuKxLcU1oMDmCYm8Uiqe19Ql0HTySLssdzLkQ9ZWHuDTp2JBtQOvdrFzWPA/win32/x86/7.1.60/DeezerDesktopSetup_7.1.60.exe",
"sha256": "91ca528326494e88529a45d29943f67dbd9b482a3b9caacf66ac886dcf1d705c",
"only-arches": [
"x86_64"
],
Expand Down
2 changes: 1 addition & 1 deletion patches/06-control-log-level.patch
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ diff --git a/build/main.js b/build/main.js
index 481fc5c..b141aa2 100644
--- a/build/main.js
+++ b/build/main.js
@@ -3319,12 +3319,18 @@
@@ -3322,12 +3322,18 @@
processType: isProcessMain() ? "main" : process.type,
}),
(external_electron_log_default().transports.console.format = `{h}:{i}:{s}.{ms} ({processType}/{level}) ${isPlatform(PLATFORM.WINDOWS) ? ">" : "›"} {text}`),
Expand Down
2 changes: 1 addition & 1 deletion patches/07-improve-responsiveness.patch
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ diff --git a/build/main.js b/build/main.js
index b141aa2..e5bc640 100644
--- a/build/main.js
+++ b/build/main.js
@@ -3078,8 +3078,8 @@
@@ -3081,8 +3081,8 @@
},
windowOptions = {
title: "Deezer Desktop",
Expand Down
2 changes: 1 addition & 1 deletion patches/08-hide-offline-banner.patch
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ diff --git a/build/main.js b/build/main.js
index e5bc640..8953617 100644
--- a/build/main.js
+++ b/build/main.js
@@ -3075,6 +3075,11 @@
@@ -3078,6 +3078,11 @@
getRealPath(external_electron_namespaceObject.app, __dirname),
"preload.js"
),
Expand Down
2 changes: 1 addition & 1 deletion patches/09-disable-animations.patch
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ diff --git a/build/main.js b/build/main.js
index 8953617..69a734d 100644
--- a/build/main.js
+++ b/build/main.js
@@ -3079,6 +3079,9 @@
@@ -3082,6 +3082,9 @@
(process.argv.some((arg) => arg === "--hide-offline-banner") ||
"yes" === process.env.DZ_HIDE_OFFLINE_BANNER) &&
"--hide-offline-banner",
Expand Down
2 changes: 1 addition & 1 deletion patches/10-disable-notifications.patch
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ diff --git a/build/main.js b/build/main.js
index 69a734d..edacdde 100644
--- a/build/main.js
+++ b/build/main.js
@@ -3082,6 +3082,9 @@
@@ -3085,6 +3085,9 @@
(process.argv.some((arg) => arg === "--disable-animations") ||
"yes" === process.env.DZ_DISABLE_ANIMATIONS) &&
"--disable-animations",
Expand Down
8 changes: 4 additions & 4 deletions patches/11-fix-thumbar-actions.patch
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ index edacdde..ba3d65e 100644
(MenuItemType.PlayerNext = "player-next"),
(MenuItemType.PlayerPrev = "player-prev"),
(MenuItemType.PlayerShuffle = "player-shuffle"),
@@ -1443,6 +1444,8 @@
@@ -1446,6 +1447,8 @@
return this.getPasteOptions();
case MenuItemType.PlayerPlay:
return this.getPlayerPlayOptions();
Expand All @@ -28,7 +28,7 @@ index edacdde..ba3d65e 100644
case MenuItemType.PlayerNext:
return this.getPlayerNextOptions();
case MenuItemType.PlayerPrev:
@@ -1583,15 +1586,26 @@
@@ -1586,15 +1589,26 @@
}),
};
}
Expand Down Expand Up @@ -57,7 +57,7 @@ index edacdde..ba3d65e 100644
};
}
getPlayerPrevOptions() {
@@ -1600,9 +1614,9 @@
@@ -1603,9 +1617,9 @@
label: i18n_t("menu_previous_label"),
enabled: this.user.isLoggedIn() && canPrev,
accelerator: "Shift+Left",
Expand All @@ -69,7 +69,7 @@ index edacdde..ba3d65e 100644
};
}
getPlayerShuffleOptions() {
@@ -2245,7 +2259,7 @@
@@ -2248,7 +2262,7 @@
external_electron_namespaceObject.Menu.buildFromTemplate([
this.menu.getItem(MenuItemType.Open),
this.menu.getItem(MenuItemType.Separator),
Expand Down
2 changes: 1 addition & 1 deletion patches/13-disable-hardware-acceleration.patch
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ diff --git a/build/main.js b/build/main.js
index b2b1c55..63386d4 100644
--- a/build/main.js
+++ b/build/main.js
@@ -2894,6 +2894,11 @@
@@ -2897,6 +2897,11 @@
"disable-features",
"HardwareMediaKeyHandling"
),
Expand Down