From 5012439a8e53b2a4ab5e85c47976e1ab28a51208 Mon Sep 17 00:00:00 2001 From: LisoUseInAIKyrios <118716522+LisoUseInAIKyrios@users.noreply.github.com> Date: Fri, 21 Mar 2025 10:23:26 +0100 Subject: [PATCH] fix(YouTube - Spoof app version): Change oldest spoof target to 19.01.34 --- .../extension/youtube/settings/Settings.java | 4 +-- .../spoofappversion/SpoofAppVersionPatch.kt | 31 ++++++++++++------- .../addresources/values-ar-rSA/strings.xml | 2 +- .../addresources/values-az-rAZ/strings.xml | 2 +- .../addresources/values-be-rBY/strings.xml | 2 +- .../addresources/values-bg-rBG/strings.xml | 2 +- .../addresources/values-bn-rBD/strings.xml | 2 +- .../addresources/values-ca-rES/strings.xml | 2 +- .../addresources/values-cs-rCZ/strings.xml | 2 +- .../addresources/values-da-rDK/strings.xml | 2 +- .../addresources/values-de-rDE/strings.xml | 2 +- .../addresources/values-el-rGR/strings.xml | 2 +- .../addresources/values-es-rES/strings.xml | 2 +- .../addresources/values-et-rEE/strings.xml | 2 +- .../addresources/values-fi-rFI/strings.xml | 2 +- .../addresources/values-fil-rPH/strings.xml | 2 +- .../addresources/values-fr-rFR/strings.xml | 2 +- .../addresources/values-ga-rIE/strings.xml | 2 +- .../addresources/values-hu-rHU/strings.xml | 2 +- .../addresources/values-hy-rAM/strings.xml | 2 +- .../addresources/values-in-rID/strings.xml | 2 +- .../addresources/values-it-rIT/strings.xml | 2 +- .../addresources/values-iw-rIL/strings.xml | 2 +- .../addresources/values-ja-rJP/strings.xml | 2 +- .../addresources/values-ko-rKR/strings.xml | 2 +- .../addresources/values-lt-rLT/strings.xml | 2 +- .../addresources/values-lv-rLV/strings.xml | 2 +- .../addresources/values-nl-rNL/strings.xml | 2 +- .../addresources/values-pl-rPL/strings.xml | 2 +- .../addresources/values-pt-rBR/strings.xml | 2 +- .../addresources/values-pt-rPT/strings.xml | 2 +- .../addresources/values-ro-rRO/strings.xml | 2 +- .../addresources/values-ru-rRU/strings.xml | 2 +- .../addresources/values-sk-rSK/strings.xml | 2 +- .../addresources/values-sl-rSI/strings.xml | 2 +- .../addresources/values-sq-rAL/strings.xml | 2 +- .../addresources/values-sr-rCS/strings.xml | 2 +- .../addresources/values-sr-rSP/strings.xml | 2 +- .../addresources/values-sv-rSE/strings.xml | 2 +- .../addresources/values-th-rTH/strings.xml | 2 +- .../addresources/values-tr-rTR/strings.xml | 2 +- .../addresources/values-uk-rUA/strings.xml | 2 +- .../addresources/values-vi-rVN/strings.xml | 2 +- .../addresources/values-zh-rCN/strings.xml | 2 +- .../addresources/values-zh-rTW/strings.xml | 2 +- .../resources/addresources/values/arrays.xml | 8 ++++- .../resources/addresources/values/strings.xml | 2 +- 47 files changed, 73 insertions(+), 58 deletions(-) diff --git a/extensions/youtube/src/main/java/app/revanced/extension/youtube/settings/Settings.java b/extensions/youtube/src/main/java/app/revanced/extension/youtube/settings/Settings.java index 62d83fa6c..4724b0f47 100644 --- a/extensions/youtube/src/main/java/app/revanced/extension/youtube/settings/Settings.java +++ b/extensions/youtube/src/main/java/app/revanced/extension/youtube/settings/Settings.java @@ -218,7 +218,7 @@ public class Settings extends BaseSettings { public static final BooleanSetting SPOOF_APP_VERSION = new BooleanSetting("revanced_spoof_app_version", FALSE, true, "revanced_spoof_app_version_user_dialog_message"); public static final BooleanSetting WIDE_SEARCHBAR = new BooleanSetting("revanced_wide_searchbar", FALSE, true); public static final EnumSetting CHANGE_START_PAGE = new EnumSetting<>("revanced_change_start_page", StartPage.DEFAULT, true); - public static final StringSetting SPOOF_APP_VERSION_TARGET = new StringSetting("revanced_spoof_app_version_target", "19.26.42", true, parent(SPOOF_APP_VERSION)); + public static final StringSetting SPOOF_APP_VERSION_TARGET = new StringSetting("revanced_spoof_app_version_target", "19.01.34", true, parent(SPOOF_APP_VERSION)); // Custom filter public static final BooleanSetting CUSTOM_FILTER = new BooleanSetting("revanced_custom_filter", FALSE); public static final StringSetting CUSTOM_FILTER_STRINGS = new StringSetting("revanced_custom_filter_strings", "", true, parent(CUSTOM_FILTER)); @@ -446,7 +446,7 @@ public class Settings extends BaseSettings { } // Old spoof versions that no longer work. - if (SPOOF_APP_VERSION_TARGET.get().compareTo("19.00.00") < 0) { + if (SPOOF_APP_VERSION_TARGET.get().compareTo(SPOOF_APP_VERSION_TARGET.defaultValue) < 0) { Logger.printInfo(() -> "Resetting spoof app version target"); SPOOF_APP_VERSION_TARGET.resetToDefault(); } diff --git a/patches/src/main/kotlin/app/revanced/patches/youtube/layout/spoofappversion/SpoofAppVersionPatch.kt b/patches/src/main/kotlin/app/revanced/patches/youtube/layout/spoofappversion/SpoofAppVersionPatch.kt index 2095b1f30..66f15c0c3 100644 --- a/patches/src/main/kotlin/app/revanced/patches/youtube/layout/spoofappversion/SpoofAppVersionPatch.kt +++ b/patches/src/main/kotlin/app/revanced/patches/youtube/layout/spoofappversion/SpoofAppVersionPatch.kt @@ -16,6 +16,7 @@ import app.revanced.patches.shared.misc.settings.preference.PreferenceCategory import app.revanced.patches.shared.misc.settings.preference.PreferenceScreenPreference.Sorting import app.revanced.patches.shared.misc.settings.preference.SwitchPreference import app.revanced.patches.youtube.misc.extension.sharedExtensionPatch +import app.revanced.patches.youtube.misc.playservice.is_19_43_or_greater import app.revanced.patches.youtube.misc.playservice.versionCheckPatch import app.revanced.patches.youtube.misc.settings.PreferenceScreen import app.revanced.patches.youtube.misc.settings.settingsPatch @@ -57,9 +58,9 @@ val spoofAppVersionPatch = bytecodePatch( compatibleWith( "com.google.android.youtube"( - // "19.16.39", // Cannot be supported because the lowest spoof target is higher. - // "19.25.37", // Cannot be supported because the lowest spoof target is higher. - // "19.34.42", // Cannot be supported because the lowest spoof target is higher. + "19.16.39", + "19.25.37", + "19.34.42", "19.43.41", "19.45.38", "19.46.42", @@ -79,19 +80,27 @@ val spoofAppVersionPatch = bytecodePatch( tag = "app.revanced.extension.shared.settings.preference.NoTitlePreferenceCategory", preferences = setOf( SwitchPreference("revanced_spoof_app_version"), - ListPreference( - key = "revanced_spoof_app_version_target", - summaryKey = null, - ) + if (is_19_43_or_greater) { + ListPreference( + key = "revanced_spoof_app_version_target", + summaryKey = null, + ) + } else { + ListPreference( + key = "revanced_spoof_app_version_target", + summaryKey = null, + entriesKey = "revanced_spoof_app_version_target_legacy_entries", + entryValuesKey = "revanced_spoof_app_version_target_legacy_entry_values" + ) + } ) ) ) /** - * If a user really wants to spoof to very old versions with the latest app target - * they can modify the import/export spoof version. But when spoofing the 19.20.xx - * or earlier the Library tab can crash due to missing image resources trying to load. - * As a temporary workaround, do not set an image in the toolbar when the enum name is UNKNOWN. + * If spoofing to target 19.20 or earlier the Library tab can crash due to + * missing image resources. As a workaround, do not set an image in the + * toolbar when the enum name is UNKNOWN. */ toolBarButtonFingerprint.method.apply { val getDrawableIndex = indexOfGetDrawableInstruction(this) diff --git a/patches/src/main/resources/addresources/values-ar-rSA/strings.xml b/patches/src/main/resources/addresources/values-ar-rSA/strings.xml index 794e1dcbb..63e7ee25e 100644 --- a/patches/src/main/resources/addresources/values-ar-rSA/strings.xml +++ b/patches/src/main/resources/addresources/values-ar-rSA/strings.xml @@ -1089,7 +1089,7 @@ Second \"item\" text" This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> الهدف من تغيير إصدار التطبيق 19.35.36 - استعادة أيقونات مشغل Shorts القديمة - 19.26.42 - استعادة أيقونات التنقل القديمة + 19.01.34 - استعادة أيقونات التنقل القديمة تعيين صفحة البداية diff --git a/patches/src/main/resources/addresources/values-az-rAZ/strings.xml b/patches/src/main/resources/addresources/values-az-rAZ/strings.xml index a194924af..51c66f5f0 100644 --- a/patches/src/main/resources/addresources/values-az-rAZ/strings.xml +++ b/patches/src/main/resources/addresources/values-az-rAZ/strings.xml @@ -1088,7 +1088,7 @@ Sonradan qapadılarsa, UI səhvlərin önləmək üçün tətbiq məlumatların This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Saxta tətbiq versiyası hədəfi 19.35.36 - Köhnə Shorts oynadıcı işarələrin bərpa et - 19.26.42 - Köhnə fəaliyyət simvolların bərpa et + 19.01.34 - Köhnə fəaliyyət simvolların bərpa et Başlanğıc səhifəsini təyin et diff --git a/patches/src/main/resources/addresources/values-be-rBY/strings.xml b/patches/src/main/resources/addresources/values-be-rBY/strings.xml index 1d80dbdc6..5ee4d5fcf 100644 --- a/patches/src/main/resources/addresources/values-be-rBY/strings.xml +++ b/patches/src/main/resources/addresources/values-be-rBY/strings.xml @@ -1090,7 +1090,7 @@ Second \"item\" text" This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Падробка мэтавай версіі праграмы 19.35.36 — Восстановить старые значки плеера Shorts - 19.26.42 - Аднаўленне старых значкоў навігацыі + 19.01.34 - Аднаўленне старых значкоў навігацыі Усталяваць стартавую старонку diff --git a/patches/src/main/resources/addresources/values-bg-rBG/strings.xml b/patches/src/main/resources/addresources/values-bg-rBG/strings.xml index f028ce533..e4e674985 100644 --- a/patches/src/main/resources/addresources/values-bg-rBG/strings.xml +++ b/patches/src/main/resources/addresources/values-bg-rBG/strings.xml @@ -1089,7 +1089,7 @@ Second \"item\" text" This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Подлъгване за версията на 19.35.36 - Възстановете старите икони на Shorts в плейъра - 19.26.42 - Възстановяване на старите икони за навигация + 19.01.34 - Възстановяване на старите икони за навигация Задай начална страница diff --git a/patches/src/main/resources/addresources/values-bn-rBD/strings.xml b/patches/src/main/resources/addresources/values-bn-rBD/strings.xml index d332a42d3..3e615b3fa 100644 --- a/patches/src/main/resources/addresources/values-bn-rBD/strings.xml +++ b/patches/src/main/resources/addresources/values-bn-rBD/strings.xml @@ -1085,7 +1085,7 @@ YouTube সেটিংসে অটো প্লে পরিবর্তন This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> স্পুফ অ্যাপ সংস্করণ লক্ষ্য 19.35.36 - পুরনো Shorts প্লেয়ার আইকন পুনরুদ্ধার করুন - 19.26.42 - পুরনো নেভিগেশন আইকন পুনরুদ্ধার করুন + 19.01.34 - পুরনো নেভিগেশন আইকন পুনরুদ্ধার করুন শুরুর পৃষ্ঠা সেট করুন diff --git a/patches/src/main/resources/addresources/values-ca-rES/strings.xml b/patches/src/main/resources/addresources/values-ca-rES/strings.xml index 2a9b7c854..35f2c5aac 100644 --- a/patches/src/main/resources/addresources/values-ca-rES/strings.xml +++ b/patches/src/main/resources/addresources/values-ca-rES/strings.xml @@ -1088,7 +1088,7 @@ Si després es desactiva, es recomana esborrar les dades de l'aplicació per evi This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Objectiu de la versió falsa de l\'aplicació 19.35.36 - Restaura els icones vells del reproductor de Shorts - 19.26.42 - Restaura les icones de navegació antigues + 19.01.34 - Restaura les icones de navegació antigues Defineix la pàgina d\'inici diff --git a/patches/src/main/resources/addresources/values-cs-rCZ/strings.xml b/patches/src/main/resources/addresources/values-cs-rCZ/strings.xml index 4fe8ee39d..fe349f292 100644 --- a/patches/src/main/resources/addresources/values-cs-rCZ/strings.xml +++ b/patches/src/main/resources/addresources/values-cs-rCZ/strings.xml @@ -1088,7 +1088,7 @@ Pokud bude později vypnuta, doporučujeme vymazat data aplikace, aby se zabrán This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Cíl napodobení verze aplikace 19.35.36 - Obnovuje staré ikony Shorts přehrávače - 19.26.42 - Navrátit staré ikony pro navigaci + 19.01.34 - Navrátit staré ikony pro navigaci Nastavit úvodní stránku diff --git a/patches/src/main/resources/addresources/values-da-rDK/strings.xml b/patches/src/main/resources/addresources/values-da-rDK/strings.xml index 9876cc3fd..f078de96d 100644 --- a/patches/src/main/resources/addresources/values-da-rDK/strings.xml +++ b/patches/src/main/resources/addresources/values-da-rDK/strings.xml @@ -1033,7 +1033,7 @@ Hvis det senere slås fra, anbefales det at rydde app-dataene for at forhindre U This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Spoof app version mål 19.35.36 - Gendan gamle Shorts player ikoner - 19.26.42 - Gendan gamle navigationsikoner + 19.01.34 - Gendan gamle navigationsikoner Indstil startside diff --git a/patches/src/main/resources/addresources/values-de-rDE/strings.xml b/patches/src/main/resources/addresources/values-de-rDE/strings.xml index 381870878..dea55c243 100644 --- a/patches/src/main/resources/addresources/values-de-rDE/strings.xml +++ b/patches/src/main/resources/addresources/values-de-rDE/strings.xml @@ -1082,7 +1082,7 @@ Wenn Sie die Funktion später deaktivieren, wird empfohlen, die App-Daten zu lö This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Spoof-App-Versionsziel 19.35.36 - Alte Shorts Spielersymbole wiederherstellen - 19.26.42 - Alte Navigations-Symbole wiederherstellen + 19.01.34 - Alte Navigations-Symbole wiederherstellen Startseite festlegen diff --git a/patches/src/main/resources/addresources/values-el-rGR/strings.xml b/patches/src/main/resources/addresources/values-el-rGR/strings.xml index 550791b1f..8bc35ae6f 100644 --- a/patches/src/main/resources/addresources/values-el-rGR/strings.xml +++ b/patches/src/main/resources/addresources/values-el-rGR/strings.xml @@ -1090,7 +1090,7 @@ Second \"item\" text" This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Έκδοση τροποποίησης της εφαρμογής 19.35.36 - Επαναφορά των παλιών εικονιδίων της οθόνης αναπαραγωγής Shorts - 19.26.42 - Επαναφορά παλιών εικονιδίων γραμμής πλοήγησης + 19.01.34 - Επαναφορά παλιών εικονιδίων γραμμής πλοήγησης Αλλαγή της αρχικής σελίδας diff --git a/patches/src/main/resources/addresources/values-es-rES/strings.xml b/patches/src/main/resources/addresources/values-es-rES/strings.xml index 629b3e813..bdb48c409 100644 --- a/patches/src/main/resources/addresources/values-es-rES/strings.xml +++ b/patches/src/main/resources/addresources/values-es-rES/strings.xml @@ -1070,7 +1070,7 @@ Si se desactiva posteriormente, se recomienda borrar los datos de la aplicación This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Versión de aplicación falsa de destino 19.35.36 - Restaurar iconos antiguos del reproductor de Shorts - 19.26.42 - Restaurar iconos de navegación antiguos + 19.01.34 - Restaurar iconos de navegación antiguos Establecer página de inicio diff --git a/patches/src/main/resources/addresources/values-et-rEE/strings.xml b/patches/src/main/resources/addresources/values-et-rEE/strings.xml index a898da0a5..b74e00e26 100644 --- a/patches/src/main/resources/addresources/values-et-rEE/strings.xml +++ b/patches/src/main/resources/addresources/values-et-rEE/strings.xml @@ -1089,7 +1089,7 @@ Kui see hiljem välja lülitatakse, on soovitatav rakenduse andmed kustutada, et This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Võltsitud rakenduse versiooni siht 19.35.36 - Taastage vanad Shortsi esitajaikoonid - 19.26.42 - Taasta vanad navigeerimise ikoonid + 19.01.34 - Taasta vanad navigeerimise ikoonid Määra algusleht diff --git a/patches/src/main/resources/addresources/values-fi-rFI/strings.xml b/patches/src/main/resources/addresources/values-fi-rFI/strings.xml index 93dc3a0c2..13635237e 100644 --- a/patches/src/main/resources/addresources/values-fi-rFI/strings.xml +++ b/patches/src/main/resources/addresources/values-fi-rFI/strings.xml @@ -1087,7 +1087,7 @@ Jos tämä poistetaan myöhemmin käytöstä, on suositeltavaa tyhjentää sovel This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Naamioitava kohdeversio 19.35.36 - Palauta vanhat Shorts-soittimen kuvakkeet - 19.26.42 - Palauta vanhat navigointikuvakkeet + 19.01.34 - Palauta vanhat navigointikuvakkeet Aseta aloitussivu diff --git a/patches/src/main/resources/addresources/values-fil-rPH/strings.xml b/patches/src/main/resources/addresources/values-fil-rPH/strings.xml index 7633e411b..5f3a06f44 100644 --- a/patches/src/main/resources/addresources/values-fil-rPH/strings.xml +++ b/patches/src/main/resources/addresources/values-fil-rPH/strings.xml @@ -1087,7 +1087,7 @@ Kung mamaya ay patayin, inirerekumenda na i-clear ang data ng app upang maiwasan This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Target na bersyon ng Spoof app 19.35.36 - Ibalik ang mga lumang icon ng Shorts player - 19.26.42 - Ibalik ang mga lumang icon ng pag-navigate + 19.01.34 - Ibalik ang mga lumang icon ng pag-navigate Itakda ang panimulang pahina diff --git a/patches/src/main/resources/addresources/values-fr-rFR/strings.xml b/patches/src/main/resources/addresources/values-fr-rFR/strings.xml index ed1fc30fc..b7e0a8f84 100644 --- a/patches/src/main/resources/addresources/values-fr-rFR/strings.xml +++ b/patches/src/main/resources/addresources/values-fr-rFR/strings.xml @@ -1088,7 +1088,7 @@ Si désactivé ultérieurement, il est recommandé d'effacer les données de l'a This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Version cible 19.35.36 - Restaurer les anciennes icônes du lecteur Shorts - 19.26.42 - Restaurer les anciennes icônes de navigation + 19.01.34 - Restaurer les anciennes icônes de navigation Définir la page ouverte au lancement diff --git a/patches/src/main/resources/addresources/values-ga-rIE/strings.xml b/patches/src/main/resources/addresources/values-ga-rIE/strings.xml index 285d1397a..1825c4b66 100644 --- a/patches/src/main/resources/addresources/values-ga-rIE/strings.xml +++ b/patches/src/main/resources/addresources/values-ga-rIE/strings.xml @@ -1089,7 +1089,7 @@ Má dhiúltaítear é níos déanaí, moltar sonraí an aip a ghlanadh chun buga This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Sprioc leagan aip spoof 19.35.36 - Athchóirigh sean-deilbhíní imreoir Shorts - 19.26.42 - Athchóiriú Sean Icóin Treorach + 19.01.34 - Athchóiriú Sean Icóin Treorach Socraigh leathanach tosaigh diff --git a/patches/src/main/resources/addresources/values-hu-rHU/strings.xml b/patches/src/main/resources/addresources/values-hu-rHU/strings.xml index a71d313e4..02b1ec9f2 100644 --- a/patches/src/main/resources/addresources/values-hu-rHU/strings.xml +++ b/patches/src/main/resources/addresources/values-hu-rHU/strings.xml @@ -1088,7 +1088,7 @@ Ha később kikapcsolja, akkor ajánlott az alkalmazás adatait törölni, hogy This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Hamisított alkalmazásverzió célja 19.35.36 - A régi Shorts lejátszó ikonok visszaállítása - 19.26.42 - Állítsa vissza a régi navigációs ikonokat + 19.01.34 - Állítsa vissza a régi navigációs ikonokat Kezdőlap beállítása diff --git a/patches/src/main/resources/addresources/values-hy-rAM/strings.xml b/patches/src/main/resources/addresources/values-hy-rAM/strings.xml index c0d6dd83e..14a7907c2 100644 --- a/patches/src/main/resources/addresources/values-hy-rAM/strings.xml +++ b/patches/src/main/resources/addresources/values-hy-rAM/strings.xml @@ -1088,7 +1088,7 @@ Seekbar thumbnails-ները կօգտագործեն նույն որակը, ինչ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Spoof-ի կիրառության տարբերակի նպատակ 19.35.36 - Վերականգնել հին Shorts պլեյերի պատկերակները - 19.26.42 - Վերականգնել հին նավիգացիոն պատկերակները + 19.01.34 - Վերականգնել հին նավիգացիոն պատկերակները Սահմանել մեկնարկային էջ diff --git a/patches/src/main/resources/addresources/values-in-rID/strings.xml b/patches/src/main/resources/addresources/values-in-rID/strings.xml index a298444a1..fb3d213bc 100644 --- a/patches/src/main/resources/addresources/values-in-rID/strings.xml +++ b/patches/src/main/resources/addresources/values-in-rID/strings.xml @@ -1088,7 +1088,7 @@ Jika kemudian dimatikan, disarankan untuk menghapus data aplikasi untuk mencegah This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Target versi app yang dipalsukan 19.35.36 - Pulihkan ikon pemutar Shorts lama - 19.26.42 - Pulihkan ikon navigasi lama + 19.01.34 - Pulihkan ikon navigasi lama Tetapkan halaman awal diff --git a/patches/src/main/resources/addresources/values-it-rIT/strings.xml b/patches/src/main/resources/addresources/values-it-rIT/strings.xml index 6ae8e5b1c..c40673588 100644 --- a/patches/src/main/resources/addresources/values-it-rIT/strings.xml +++ b/patches/src/main/resources/addresources/values-it-rIT/strings.xml @@ -1088,7 +1088,7 @@ Se in seguito verrà disattivato, si consiglia di cancellare i dati dell'app per This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Target della versione dell\'app desiderata 19.35.36 - Ripristinare le vecchie icone del player Shorts - 19.26.42 - Ripristina le vecchie icone di navigazione + 19.01.34 - Ripristina le vecchie icone di navigazione Imposta pagina iniziale diff --git a/patches/src/main/resources/addresources/values-iw-rIL/strings.xml b/patches/src/main/resources/addresources/values-iw-rIL/strings.xml index b026e5cc0..ff6b45b3c 100644 --- a/patches/src/main/resources/addresources/values-iw-rIL/strings.xml +++ b/patches/src/main/resources/addresources/values-iw-rIL/strings.xml @@ -1089,7 +1089,7 @@ Second \"item\" text" This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> יעד גרסת יישום מזויפת 19.35.36 - שחזר סמלי נגן Shorts ישנים - 19.26.42 - שחזר סמלי ניווט ישנים + 19.01.34 - שחזר סמלי ניווט ישנים הגדר דף התחלה diff --git a/patches/src/main/resources/addresources/values-ja-rJP/strings.xml b/patches/src/main/resources/addresources/values-ja-rJP/strings.xml index f6c4e9766..14d9cd144 100644 --- a/patches/src/main/resources/addresources/values-ja-rJP/strings.xml +++ b/patches/src/main/resources/addresources/values-ja-rJP/strings.xml @@ -1090,7 +1090,7 @@ Automotive レイアウト This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> アプリバージョン 19.35.36 - ショート動画プレーヤーのアイコンを旧バージョンに - 19.26.42 - 旧バージョンのナビゲーション アイコンを復元 + 19.01.34 - 旧バージョンのナビゲーション アイコンを復元 起動画面 diff --git a/patches/src/main/resources/addresources/values-ko-rKR/strings.xml b/patches/src/main/resources/addresources/values-ko-rKR/strings.xml index 436554b01..c8e48d9c1 100644 --- a/patches/src/main/resources/addresources/values-ko-rKR/strings.xml +++ b/patches/src/main/resources/addresources/values-ko-rKR/strings.xml @@ -1089,7 +1089,7 @@ MicroG 앱 배터리 최적화를 비활성화(제한 없음)하더라도, 배 This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> 변경할 앱 버전 19.35.36 - 이전 Shorts 플레이어 아이콘을 복원합니다 - 19.26.42 - 이전 하단바 아이콘을 복원합니다 + 19.01.34 - 이전 하단바 아이콘을 복원합니다 앱 시작 페이지 변경하기 diff --git a/patches/src/main/resources/addresources/values-lt-rLT/strings.xml b/patches/src/main/resources/addresources/values-lt-rLT/strings.xml index b51368b8a..362c6dbc8 100644 --- a/patches/src/main/resources/addresources/values-lt-rLT/strings.xml +++ b/patches/src/main/resources/addresources/values-lt-rLT/strings.xml @@ -1090,7 +1090,7 @@ Jei vėliau išjungta, rekomenduojama išvalyti programos duomenis, kad būtų i This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Programėlės versijos apsimetinėjimo tikslas 19.35.36 - Atkurti senus \"Shorts\" grotuvo piktogramas - 19.26.42 - Senos narūyklės ikonų atkūrą + 19.01.34 - Senos narūyklės ikonų atkūrą Nustatyti pradinį puslapį diff --git a/patches/src/main/resources/addresources/values-lv-rLV/strings.xml b/patches/src/main/resources/addresources/values-lv-rLV/strings.xml index 567014fe8..5761edba2 100644 --- a/patches/src/main/resources/addresources/values-lv-rLV/strings.xml +++ b/patches/src/main/resources/addresources/values-lv-rLV/strings.xml @@ -1088,7 +1088,7 @@ Ja vēlāk tiks izslēgts, ieteicams notīrīt lietotnes datus, lai novērstu li This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Viltot lietotnes versijas mērķis 19.35.36 - Atjaunot vecās Shorts spēlētāja ikonas - 19.26.42 - Atjaunot vecās navigācijas ikonas + 19.01.34 - Atjaunot vecās navigācijas ikonas Iestatīt sākotnējo lapu diff --git a/patches/src/main/resources/addresources/values-nl-rNL/strings.xml b/patches/src/main/resources/addresources/values-nl-rNL/strings.xml index 244e78556..7500609bd 100644 --- a/patches/src/main/resources/addresources/values-nl-rNL/strings.xml +++ b/patches/src/main/resources/addresources/values-nl-rNL/strings.xml @@ -1089,7 +1089,7 @@ Als het later wordt uitgeschakeld, wordt aanbevolen om de app-gegevens te wissen This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Doel voor vervalsen app-versie 19.35.36 - Herstel oude pictogrammen voor Shorts-speler - 19.26.42 - Oude navigatie-pictogrammen herstellen + 19.01.34 - Oude navigatie-pictogrammen herstellen Startpagina instellen diff --git a/patches/src/main/resources/addresources/values-pl-rPL/strings.xml b/patches/src/main/resources/addresources/values-pl-rPL/strings.xml index 322724ef9..8d280d439 100644 --- a/patches/src/main/resources/addresources/values-pl-rPL/strings.xml +++ b/patches/src/main/resources/addresources/values-pl-rPL/strings.xml @@ -1089,7 +1089,7 @@ Jeśli później zostanie wyłączony, zaleca się wyczyszczenie danych aplikacj This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Docelowa oszukiwana wersja aplikacji 19.35.36 - Przywraca stare ikony odtwarzacza Shortsów - 19.26.42 - Przywróć stare ikony nawigacji + 19.01.34 - Przywróć stare ikony nawigacji Strona startowa diff --git a/patches/src/main/resources/addresources/values-pt-rBR/strings.xml b/patches/src/main/resources/addresources/values-pt-rBR/strings.xml index 77642e72b..a7049167c 100644 --- a/patches/src/main/resources/addresources/values-pt-rBR/strings.xml +++ b/patches/src/main/resources/addresources/values-pt-rBR/strings.xml @@ -1086,7 +1086,7 @@ Se posteriormente desativado, é recomendável limpar os dados do aplicativo par This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Versão de spoofing alvo 19.35.36 - Restaurar ícones antigos do player dos Shorts - 19.26.42 - Restaurar ícones de navegação antigos + 19.01.34 - Restaurar ícones de navegação antigos Definir página inicial diff --git a/patches/src/main/resources/addresources/values-pt-rPT/strings.xml b/patches/src/main/resources/addresources/values-pt-rPT/strings.xml index 3eeff09fc..114ed9e58 100644 --- a/patches/src/main/resources/addresources/values-pt-rPT/strings.xml +++ b/patches/src/main/resources/addresources/values-pt-rPT/strings.xml @@ -1089,7 +1089,7 @@ Nếu sau này tắt, bạn nên xóa dữ liệu ứng dụng để tránh lỗ This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Destaque de versão do app 19.35.36 - Restaurar os icones antigos do reprodutor dos Shorts - 19.26.42 - Restaurar ícones antigos de navegação + 19.01.34 - Restaurar ícones antigos de navegação Definir página inicial diff --git a/patches/src/main/resources/addresources/values-ro-rRO/strings.xml b/patches/src/main/resources/addresources/values-ro-rRO/strings.xml index 5b0d838e0..d17063239 100644 --- a/patches/src/main/resources/addresources/values-ro-rRO/strings.xml +++ b/patches/src/main/resources/addresources/values-ro-rRO/strings.xml @@ -1088,7 +1088,7 @@ Dacă este dezactivat ulterior, se recomandă să ștergeți datele aplicației This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Țintă versiune falsificată a aplicației 19.35.36 - Restaurează pictogramele vechi ale playerului Shorts - 19.26.42 - Revenire la pictogramele vechi pentru navigare + 19.01.34 - Revenire la pictogramele vechi pentru navigare Setaţi pagina de start diff --git a/patches/src/main/resources/addresources/values-ru-rRU/strings.xml b/patches/src/main/resources/addresources/values-ru-rRU/strings.xml index d0f4f7285..a44287300 100644 --- a/patches/src/main/resources/addresources/values-ru-rRU/strings.xml +++ b/patches/src/main/resources/addresources/values-ru-rRU/strings.xml @@ -1089,7 +1089,7 @@ Second \"item\" text" This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Подменить версию приложения на 19.35.36 - Восстановление старых иконок плеера Shorts - 19.26.42 - Восстановление старых иконок панели навигации + 19.01.34 - Восстановление старых иконок панели навигации Начальная страница diff --git a/patches/src/main/resources/addresources/values-sk-rSK/strings.xml b/patches/src/main/resources/addresources/values-sk-rSK/strings.xml index f7e9c3faf..1bcaf0de3 100644 --- a/patches/src/main/resources/addresources/values-sk-rSK/strings.xml +++ b/patches/src/main/resources/addresources/values-sk-rSK/strings.xml @@ -1079,7 +1079,7 @@ Ak sa neskôr vypne, odporúča sa vymazať údaje aplikácie, aby sa zabránilo This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Falošná cieľová verzia aplikácie 19.35.36 - Obnoviť staré ikony Shorts prehrávača - 19.26.42 - Obnoviť staré ikony navigácie + 19.01.34 - Obnoviť staré ikony navigácie Nastaviť úvodnú stránku diff --git a/patches/src/main/resources/addresources/values-sl-rSI/strings.xml b/patches/src/main/resources/addresources/values-sl-rSI/strings.xml index 3d1be52ae..f995735b8 100644 --- a/patches/src/main/resources/addresources/values-sl-rSI/strings.xml +++ b/patches/src/main/resources/addresources/values-sl-rSI/strings.xml @@ -1088,7 +1088,7 @@ To bo spremenilo videz in funkcije aplikacije, vendar se lahko pojavijo neznani This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Cilj spoofa različice aplikacije 19.35.36 - Obnovi stare ikone predvajalnika Shorts - 19.26.42 - Obnovi stare ikone za krmarjenje + 19.01.34 - Obnovi stare ikone za krmarjenje Nastavi začetno stran diff --git a/patches/src/main/resources/addresources/values-sq-rAL/strings.xml b/patches/src/main/resources/addresources/values-sq-rAL/strings.xml index c1721e4c2..a4b97c7d7 100644 --- a/patches/src/main/resources/addresources/values-sq-rAL/strings.xml +++ b/patches/src/main/resources/addresources/values-sq-rAL/strings.xml @@ -1087,7 +1087,7 @@ Nëse më vonë është çaktivizuar, është e rekomanduar të fshiheni të dh This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Shënjestër e versionit të aplikacionit të mashtuar 19.35.36 - Rikthe ikonat e vjetra të lojtarit Shorts - 19.26.42 - Ristauro ikonave te vjetra te navigimit + 19.01.34 - Ristauro ikonave te vjetra te navigimit Vendos faqen e fillimit diff --git a/patches/src/main/resources/addresources/values-sr-rCS/strings.xml b/patches/src/main/resources/addresources/values-sr-rCS/strings.xml index 228b9d085..79d077397 100644 --- a/patches/src/main/resources/addresources/values-sr-rCS/strings.xml +++ b/patches/src/main/resources/addresources/values-sr-rCS/strings.xml @@ -1088,7 +1088,7 @@ Ako se kasnije isključi, preporučuje se da izbrišete podatke aplikacije da bi This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Ciljna verzija aplikacije za lažiranje 19.35.36 - Vraća stare ikonice Shorts plejera - 19.26.42 - Vraća stare ikonice navigacije + 19.01.34 - Vraća stare ikonice navigacije Polazna stranica diff --git a/patches/src/main/resources/addresources/values-sr-rSP/strings.xml b/patches/src/main/resources/addresources/values-sr-rSP/strings.xml index 09c60f7e2..43ac7dc65 100644 --- a/patches/src/main/resources/addresources/values-sr-rSP/strings.xml +++ b/patches/src/main/resources/addresources/values-sr-rSP/strings.xml @@ -1088,7 +1088,7 @@ Second \"item\" text" This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Циљна верзија апликације за лажирање 19.35.36 - Враћа старе иконице Shorts плејера - 19.26.42 - Враћа старе иконице навигације + 19.01.34 - Враћа старе иконице навигације Полазна страница diff --git a/patches/src/main/resources/addresources/values-sv-rSE/strings.xml b/patches/src/main/resources/addresources/values-sv-rSE/strings.xml index b1c5601b5..2e37129c7 100644 --- a/patches/src/main/resources/addresources/values-sv-rSE/strings.xml +++ b/patches/src/main/resources/addresources/values-sv-rSE/strings.xml @@ -1088,7 +1088,7 @@ Om det senare stängs av rekommenderas det att rensa appens data för att förhi This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Spoof app-versionsmål 19.35.36 - Återställ gamla Shorts-spelarikoner - 19.26.42 - Återställ originalnavigeringsbilder + 19.01.34 - Återställ originalnavigeringsbilder Ställ in startsida diff --git a/patches/src/main/resources/addresources/values-th-rTH/strings.xml b/patches/src/main/resources/addresources/values-th-rTH/strings.xml index 5c7ceec07..dc79b83d5 100644 --- a/patches/src/main/resources/addresources/values-th-rTH/strings.xml +++ b/patches/src/main/resources/addresources/values-th-rTH/strings.xml @@ -1087,7 +1087,7 @@ User id ของคุณเหมือนกับรหัสผ่าน This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> เป้าหมายการปลอมแปลงเวอร์ชันแอป 19.35.36 - คืนค่าไอคอนเครื่องเล่น Shorts เก่า - 19.26.42 - แบนเพิ่มยุธการพันเข้าเนียงเลขนระบเจะหวัด + 19.01.34 - แบนเพิ่มยุธการพันเข้าเนียงเลขนระบเจะหวัด ตั้งค่าหน้าเริ่มต้น diff --git a/patches/src/main/resources/addresources/values-tr-rTR/strings.xml b/patches/src/main/resources/addresources/values-tr-rTR/strings.xml index b847b8698..bc73a89a9 100644 --- a/patches/src/main/resources/addresources/values-tr-rTR/strings.xml +++ b/patches/src/main/resources/addresources/values-tr-rTR/strings.xml @@ -1089,7 +1089,7 @@ Daha sonra kapatılırsa, arayüz hatalarını önlemek için uygulama verilerin This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Uygulama sürümü taklidi hedefi 19.35.36 - Eski Shorts oynatıcı simgelerini geri getir - 19.26.42 - Eski gezinti simgelerini geri getir + 19.01.34 - Eski gezinti simgelerini geri getir Başlangıç sayfasını ayarla diff --git a/patches/src/main/resources/addresources/values-uk-rUA/strings.xml b/patches/src/main/resources/addresources/values-uk-rUA/strings.xml index 50429e9c5..a63fbe8a3 100644 --- a/patches/src/main/resources/addresources/values-uk-rUA/strings.xml +++ b/patches/src/main/resources/addresources/values-uk-rUA/strings.xml @@ -1088,7 +1088,7 @@ Second \"item\" text" This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Підробити версію програми на 19.35.36 - Відновлення старих іконок плеєра Shorts - 19.26.42 - Відновлення старих іконок панелі навігації + 19.01.34 - Відновлення старих іконок панелі навігації Початкова сторінка diff --git a/patches/src/main/resources/addresources/values-vi-rVN/strings.xml b/patches/src/main/resources/addresources/values-vi-rVN/strings.xml index 8d94ec2ba..58c678880 100644 --- a/patches/src/main/resources/addresources/values-vi-rVN/strings.xml +++ b/patches/src/main/resources/addresources/values-vi-rVN/strings.xml @@ -1088,7 +1088,7 @@ Nếu sau này tắt đi, bạn nên xóa dữ liệu ứng dụng để tránh This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Phiên bản giả mạo mục tiêu 19.35.36 - Khôi phục biểu tượng trình phát Shorts cũ - 19.26.42 - Cập nhật lại biểu tượng điều hướng cũ + 19.01.34 - Cập nhật lại biểu tượng điều hướng cũ Đặt trang bắt đầu diff --git a/patches/src/main/resources/addresources/values-zh-rCN/strings.xml b/patches/src/main/resources/addresources/values-zh-rCN/strings.xml index 6c70e2f79..2b84f848d 100644 --- a/patches/src/main/resources/addresources/values-zh-rCN/strings.xml +++ b/patches/src/main/resources/addresources/values-zh-rCN/strings.xml @@ -1093,7 +1093,7 @@ Second \"item\" text" This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> 伪装应用程序版本为 19.35.36 - 恢复旧的 Shorts 播放器图标 - 19.26.42 - 恢复旧导航图标 + 19.01.34 - 恢复旧导航图标 设置起始页 diff --git a/patches/src/main/resources/addresources/values-zh-rTW/strings.xml b/patches/src/main/resources/addresources/values-zh-rTW/strings.xml index 4bf651d86..bbc170dbc 100644 --- a/patches/src/main/resources/addresources/values-zh-rTW/strings.xml +++ b/patches/src/main/resources/addresources/values-zh-rTW/strings.xml @@ -1090,7 +1090,7 @@ Second \"item\" text" This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> 應用程式偽裝目標版本 19.35.36 - 還原舊版 Shorts 播放圖示 - 19.26.42 - 還原舊版導覽圖示 + 19.01.34 - 還原舊版導覽圖示 設定起始頁面 diff --git a/patches/src/main/resources/addresources/values/arrays.xml b/patches/src/main/resources/addresources/values/arrays.xml index 332541633..c333f3659 100644 --- a/patches/src/main/resources/addresources/values/arrays.xml +++ b/patches/src/main/resources/addresources/values/arrays.xml @@ -144,7 +144,13 @@ 19.35.36 - 19.26.42 + 19.01.34 + + + 19.01.34 + + + 19.01.34 diff --git a/patches/src/main/resources/addresources/values/strings.xml b/patches/src/main/resources/addresources/values/strings.xml index 44f730ac6..eb31b8abc 100644 --- a/patches/src/main/resources/addresources/values/strings.xml +++ b/patches/src/main/resources/addresources/values/strings.xml @@ -1155,7 +1155,7 @@ If later turned off, it is recommended to clear the app data to prevent UI bugs. This is because the 'General layout' menu uses alphabetic sorting, and it functionally works better if the spoof target selector appears below the 'Spoof app version' UI switch --> Spoof app version target 19.35.36 - Restore old Shorts player icons - 19.26.42 - Restore old navigation icons + 19.01.34 - Restore old navigation icons Set start page