Compare commits

..

No commits in common. "ef1632dc8b7334c1037850365cb644f4fdbf2d0a" and "d5c5b71fc9958ed9971ac2e89da7ff44d02ccde4" have entirely different histories.

4 changed files with 3 additions and 8 deletions

View file

@ -1,4 +1,4 @@
1.9
1.9 (Unreleased)
==
- Updated targetSDK to 34 (Android 14) with compatibility fixes.
@ -9,7 +9,6 @@
- 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
===

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color="@color/colorNavigationIconTint" android:state_checked="true" />
<item android:color="@color/colorNavigationIconTintSelected" android:state_checked="false" />
<item android:color="@color/colorAccent" android:state_checked="true" />
<item android:color="@color/colorTextPrimary" android:state_checked="false" />
</selector>

View file

@ -4,8 +4,6 @@
<color name="colorAccent">#009688</color>
<color name="colorAccentSetupWizard">#FFC107</color>
<color name="colorNavigationBar">#004D3F</color>
<color name="colorNavigationIconTint">@color/colorTextPrimary</color>
<color name="colorNavigationIconTintSelected">@color/colorAccent</color>
<color name="colorTextPrimary">#EEEEEE</color>
<color name="colorTextSecondary">#CCCCCC</color>
<color name="disabledAppBackground">#004D3F</color>

View file

@ -4,8 +4,6 @@
<color name="colorAccent">#009688</color>
<color name="colorAccentSetupWizard">#FFC107</color>
<color name="colorNavigationBar">#E0F2F1</color>
<color name="colorNavigationIconTint">@color/colorAccent</color>
<color name="colorNavigationIconTintSelected">@color/colorTextPrimary</color>
<color name="colorTextPrimary">#333333</color>
<color name="colorTextSecondary">#999999</color>
<color name="disabledAppBackground">#E0F2F1</color>