From 787a10e746a021d9ec5e5eec96754553f12232a5 Mon Sep 17 00:00:00 2001 From: Peter Cai Date: Sun, 19 Nov 2023 21:21:43 -0500 Subject: [PATCH 1/2] fix: Unintuitive navigation icon color in dark mode --- .../main/res/drawable/bottom_navigation_color_selector.xml | 4 ++-- app/src/main/res/values-night/colors.xml | 2 ++ app/src/main/res/values/colors.xml | 2 ++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/drawable/bottom_navigation_color_selector.xml b/app/src/main/res/drawable/bottom_navigation_color_selector.xml index c7d4af1..7168a5f 100644 --- a/app/src/main/res/drawable/bottom_navigation_color_selector.xml +++ b/app/src/main/res/drawable/bottom_navigation_color_selector.xml @@ -1,5 +1,5 @@ - - + + \ No newline at end of file diff --git a/app/src/main/res/values-night/colors.xml b/app/src/main/res/values-night/colors.xml index f2b80f2..7947cab 100644 --- a/app/src/main/res/values-night/colors.xml +++ b/app/src/main/res/values-night/colors.xml @@ -4,6 +4,8 @@ #009688 #FFC107 #004D3F + @color/colorTextPrimary + @color/colorAccent #EEEEEE #CCCCCC #004D3F diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml index 4cb9323..bb5257b 100644 --- a/app/src/main/res/values/colors.xml +++ b/app/src/main/res/values/colors.xml @@ -4,6 +4,8 @@ #009688 #FFC107 #E0F2F1 + @color/colorAccent + @color/colorTextPrimary #333333 #999999 #E0F2F1 From ef1632dc8b7334c1037850365cb644f4fdbf2d0a Mon Sep 17 00:00:00 2001 From: Peter Cai Date: Sun, 19 Nov 2023 21:23:19 -0500 Subject: [PATCH 2/2] CHANGELOG: Release 1.9 --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dd70584..5f983f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -1.9 (Unreleased) +1.9 == - Updated targetSDK to 34 (Android 14) with compatibility fixes. @@ -9,6 +9,7 @@ - File Shuttle no longer appends ".null" or ".bin" suffixes unnecessarily. This should make it work much better with file managers such as Material Files. - File Shuttle now triggers media scanning much more robustly. Media files (pictures, videos, etc.) copied into the work profile should now show up much quicker in gallery apps. - Added a fake NFC payment service to workaround a bug in Android that prevents payment apps inside the work profile from being used if none is present in the main profile. +- Fixed unintuitive colors of navigation icons under dark mode. 1.8 ===