From 375a3623cc3f5bce0d239135b320269f6fcfe60b Mon Sep 17 00:00:00 2001 From: amd64fox <62529699+amd64fox@users.noreply.github.com> Date: Wed, 1 Nov 2023 15:57:33 +0300 Subject: [PATCH] New parameter 'Plus' - with the 'Plus' parameter, you can save and select destinations for songs, playlists, or podcasts --- patches/patches.json | 9 +++++++++ run.ps1 | 7 +++++++ 2 files changed, 16 insertions(+) diff --git a/patches/patches.json b/patches/patches.json index b49c39e..9634481 100644 --- a/patches/patches.json +++ b/patches/patches.json @@ -681,6 +681,15 @@ "fr": "1.2.21", "to": "" } + }, + "Plus": { + "name": "enableAlignedCuration", + "description": "it`s killing the heart icon, you`re able to save and choose the destination for any song, playlist, or podcast", + "native_description": "Enable Aligned Curation", + "version": { + "fr": "1.2.21", + "to": "" + } } }, "CustomExp": { diff --git a/run.ps1 b/run.ps1 index 46eebba..6c990ea 100644 --- a/run.ps1 +++ b/run.ps1 @@ -59,6 +59,9 @@ param [Parameter(HelpMessage = 'Enable enhance playlist & liked songs.')] [switch]$EnhanceSongs, + [Parameter(HelpMessage = 'it`s killing the heart icon, you`re able to save and choose the destination for any song, playlist, or podcast')] + [switch]$Plus, + [Parameter(HelpMessage = 'Enable funny progress bar.')] [switch]$funnyprogressBar, @@ -1066,6 +1069,10 @@ function Helper($paramname) { } + if (!($Plus)) { + Move-Json -n 'Plus' -t $Enable -f $Disable + } + Remove-Json -j $Enable -p "EncoreCards", "QueueOnRightPanel" if (!($funnyprogressBar)) { Remove-Json -j $Enable -p "HeBringsNpb" }