mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2025-01-23 13:51:13 -05:00
20.0: Import picks
Signed-off-by: Tavi <tavi@divested.dev>
This commit is contained in:
parent
082bc48c32
commit
1a0e13a70d
@ -0,0 +1,92 @@
|
||||
From a2b8af36f27ee342c78c0e8be5cc7ba03e25b0a7 Mon Sep 17 00:00:00 2001
|
||||
From: Davide Garberi <dade.garberi@gmail.com>
|
||||
Date: Wed, 12 Jul 2023 15:55:29 +0200
|
||||
Subject: [PATCH] Launcher3: Allow toggling monochrome icons for all apps
|
||||
|
||||
* This feature has been added by Google in Android 13 QPR2, but
|
||||
hasn't been enabled by default
|
||||
* Instead of forcing it to always enabled, add a toggle so that
|
||||
users can choose whether they want it or not.
|
||||
|
||||
Change-Id: I6bf7aa4aca22f80231b06123a9c5fd0386bde851
|
||||
---
|
||||
res/values/lineage_strings.xml | 4 ++++
|
||||
res/xml/launcher_preferences.xml | 7 +++++++
|
||||
src/com/android/launcher3/InvariantDeviceProfile.java | 5 +++++
|
||||
src/com/android/launcher3/icons/LauncherIcons.java | 3 ++-
|
||||
4 files changed, 18 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/res/values/lineage_strings.xml b/res/values/lineage_strings.xml
|
||||
index dd033354959..87f58a47c91 100644
|
||||
--- a/res/values/lineage_strings.xml
|
||||
+++ b/res/values/lineage_strings.xml
|
||||
@@ -39,6 +39,10 @@
|
||||
<string name="pref_themed_icons_title">Use themed icons in drawer</string>
|
||||
<string name="pref_themed_icons_summary">Follow themed icons used on home screen</string>
|
||||
|
||||
+ <!-- Force monocrome icons -->
|
||||
+ <string name="pref_force_mono_icons_title">Force monochrome icons</string>
|
||||
+ <string name="pref_force_mono_icons_summary">Force monochrome icons for apps that don\'t support them natively</string>
|
||||
+
|
||||
<!-- Hide labels -->
|
||||
<string name="desktop_show_labels">Show icon labels on desktop</string>
|
||||
<string name="drawer_show_labels">Show icon labels in drawer</string>
|
||||
diff --git a/res/xml/launcher_preferences.xml b/res/xml/launcher_preferences.xml
|
||||
index 83ef5b3bd20..a10c0f5365f 100644
|
||||
--- a/res/xml/launcher_preferences.xml
|
||||
+++ b/res/xml/launcher_preferences.xml
|
||||
@@ -84,6 +84,13 @@
|
||||
android:defaultValue="false"
|
||||
android:persistent="true" />
|
||||
|
||||
+ <SwitchPreference
|
||||
+ android:key="pref_force_mono_icons"
|
||||
+ android:title="@string/pref_force_mono_icons_title"
|
||||
+ android:summary="@string/pref_force_mono_icons_summary"
|
||||
+ android:defaultValue="false"
|
||||
+ android:persistent="true" />
|
||||
+
|
||||
<SwitchPreference
|
||||
android:key="pref_desktop_show_labels"
|
||||
android:title="@string/desktop_show_labels"
|
||||
diff --git a/src/com/android/launcher3/InvariantDeviceProfile.java b/src/com/android/launcher3/InvariantDeviceProfile.java
|
||||
index f495ed45a40..7c0c84dfb67 100644
|
||||
--- a/src/com/android/launcher3/InvariantDeviceProfile.java
|
||||
+++ b/src/com/android/launcher3/InvariantDeviceProfile.java
|
||||
@@ -95,10 +95,13 @@ public class InvariantDeviceProfile implements OnSharedPreferenceChangeListener
|
||||
private static final float ICON_SIZE_DEFINED_IN_APP_DP = 48;
|
||||
|
||||
public static final String KEY_ALLAPPS_THEMED_ICONS = "pref_allapps_themed_icons";
|
||||
+ public static final String KEY_FORCE_MONO_ICONS = "pref_force_mono_icons";
|
||||
public static final String KEY_SHOW_DESKTOP_LABELS = "pref_desktop_show_labels";
|
||||
public static final String KEY_SHOW_DRAWER_LABELS = "pref_drawer_show_labels";
|
||||
public static final String KEY_WORKSPACE_LOCK = "pref_workspace_lock";
|
||||
|
||||
+ public static boolean mPrefForceMonoIcons;
|
||||
+
|
||||
// Constants that affects the interpolation curve between statically defined device profile
|
||||
// buckets.
|
||||
private static final float KNEARESTNEIGHBOR = 3;
|
||||
@@ -329,6 +332,8 @@ public void reinitializeAfterRestore(Context context) {
|
||||
@Override
|
||||
public void onSharedPreferenceChanged(SharedPreferences prefs, String key) {
|
||||
switch (key) {
|
||||
+ case KEY_FORCE_MONO_ICONS:
|
||||
+ mPrefForceMonoIcons = prefs.getBoolean(key, false);
|
||||
case KEY_ALLAPPS_THEMED_ICONS:
|
||||
case KEY_SHOW_DESKTOP_LABELS:
|
||||
case KEY_SHOW_DRAWER_LABELS:
|
||||
diff --git a/src/com/android/launcher3/icons/LauncherIcons.java b/src/com/android/launcher3/icons/LauncherIcons.java
|
||||
index 57fa8a256bb..4fc4d7de749 100644
|
||||
--- a/src/com/android/launcher3/icons/LauncherIcons.java
|
||||
+++ b/src/com/android/launcher3/icons/LauncherIcons.java
|
||||
@@ -98,7 +98,8 @@ public void recycle() {
|
||||
@Override
|
||||
protected Drawable getMonochromeDrawable(Drawable base) {
|
||||
Drawable mono = super.getMonochromeDrawable(base);
|
||||
- if (mono != null || !ENABLE_FORCED_MONO_ICON.get()) {
|
||||
+ if (mono != null || (!ENABLE_FORCED_MONO_ICON.get() &&
|
||||
+ !InvariantDeviceProfile.mPrefForceMonoIcons)) {
|
||||
return mono;
|
||||
}
|
||||
if (mMonochromeIconFactory == null) {
|
@ -95,6 +95,7 @@ patchWorkspaceReal() {
|
||||
repopick -t Q_asb_2023-12 -e 377251,378083,378084,378085,378086,378087,378088,378314,378315;
|
||||
repopick -t Q_asb_2024-01;
|
||||
repopick -t Q_asb_2024-02;
|
||||
#repopick -t Q_asb_2024-03;
|
||||
|
||||
sh "$DOS_SCRIPTS/Patch.sh";
|
||||
sh "$DOS_SCRIPTS_COMMON/Enable_Verity.sh";
|
||||
|
@ -164,8 +164,7 @@ patchWorkspaceReal() {
|
||||
verifyAllPlatformTags;
|
||||
gpgVerifyGitHead "$DOS_BUILD_BASE/external/chromium-webview";
|
||||
|
||||
source build/envsetup.sh;
|
||||
repopick -i 361248; #Launcher3: Allow toggling monochrome icons for all apps
|
||||
#source build/envsetup.sh;
|
||||
|
||||
sh "$DOS_SCRIPTS/Patch.sh";
|
||||
sh "$DOS_SCRIPTS_COMMON/Enable_Verity.sh";
|
||||
|
@ -356,6 +356,7 @@ fi;
|
||||
|
||||
if enterAndClear "packages/apps/Trebuchet"; then
|
||||
git am $DOS_PATCHES/ASB-2023-10/launcher-*.patch;
|
||||
applyPatch "$DOS_PATCHES/android_packages_apps_Trebuchet/361248.patch"; #Launcher3: Allow toggling monochrome icons for all apps
|
||||
cp $DOS_BUILD_BASE/vendor/divested/overlay/common/packages/apps/Trebuchet/res/xml/default_workspace_*.xml res/xml/; #XXX: Likely no longer needed
|
||||
fi;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user