From 39e6a30f5080c0046bf95c872d012ff8737bdea0 Mon Sep 17 00:00:00 2001 From: amd64fox <62529699+amd64fox@users.noreply.github.com> Date: Tue, 13 Feb 2024 13:25:35 +0300 Subject: [PATCH] version bump to 1.2.31.1205 - enabled dynamic volume control for podcasts - right queue panel returned - funny progress bar is disabled if the version is higher than 1.2.26 - disabled some exp related to ads --- patches/patches.json | 52 +++++++++++++++++++++++++++++++++++++++++--- run.ps1 | 3 ++- 2 files changed, 51 insertions(+), 4 deletions(-) diff --git a/patches/patches.json b/patches/patches.json index 3a9ab868..f4a4aff0 100644 --- a/patches/patches.json +++ b/patches/patches.json @@ -364,6 +364,24 @@ "fr": "1.2.26", "to": "" } + }, + "HomeAds": { + "name": "enableHomeAds", + "description": "Enable Fist Impression Takeover ads on Home Page", + "native_description": "Enable Fist Impression Takeover ads on Home Page", + "version": { + "fr": "1.2.31", + "to": "" + } + }, + "LearningHomeCard": { + "name": "enableLearningHomeCard", + "description": "Enable Learning Home Card", + "native_description": "Enable Learning Home Card", + "version": { + "fr": "1.2.31", + "to": "" + } } }, "EnableExp": { @@ -679,7 +697,7 @@ "native_description": "he brings you playback progress", "version": { "fr": "1.2.14", - "to": "" + "to": "1.2.26" } }, "AlbumPrerelease": { @@ -715,7 +733,7 @@ "native_description": "Enable Queue on the right panel", "version": { "fr": "1.2.26", - "to": "1.2.29" + "to": "" } }, "RecentlyPlayedShortcut": { @@ -829,11 +847,29 @@ "DevicePickerSidePanel": { "name": "enableDevicePickerSidePanel", "description": "Enables Device Picker as a side panel", - "native_description": "", + "native_description": "Enables Device Picker as a side panel", "version": { "fr": "1.2.30", "to": "" } + }, + "Otfn": { + "name": "enableOtfn", + "description": "Enable On-The-Fly-Normalization", + "native_description": "Enable On-The-Fly-Normalization", + "version": { + "fr": "1.2.31", + "to": "" + } + }, + "FullscreenMode": { + "name": "enableFullscreenMode", + "description": "Enable fullscreen mode", + "native_description": "Enable fullscreen mode", + "version": { + "fr": "1.2.31", + "to": "" + } } }, @@ -917,6 +953,16 @@ "fr": "1.2.30", "to": "" } + }, + "VideosPremiumUpsell": { + "name": "musicVideosPremiumUpsell", + "description": "Testing Premium upsell for Free users on music videos", + "native_description": "Testing Premium upsell for Free users on music videos", + "value": "CONTROL", + "version": { + "fr": "1.2.31", + "to": "" + } } }, "binary": { diff --git a/run.ps1 b/run.ps1 index 5cfd21ac..8a2c9885 100644 --- a/run.ps1 +++ b/run.ps1 @@ -368,7 +368,7 @@ if (!($version -and $version -match $match_v)) { } else { # Recommended version for Win 10-12 - $onlineFull = "1.2.30.1135.g02fef27a-399" + $onlineFull = "1.2.31.1205.g4d59ad7c-1561" } } else { @@ -1100,6 +1100,7 @@ function Helper($paramname) { } } + if ([version]$offline -eq [version]'1.2.30.1135') { Move-Json -n 'QueueOnRightPanel' -t $Enable -f $Disable } if (!($plus)) { Move-Json -n 'Plus' -t $Enable -f $Disable }