mirror of
https://github.com/iSoron/uhabits.git
synced 2025-12-06 09:08:52 -06:00
Merge branch 'master' into dev
This commit is contained in:
@@ -19,6 +19,10 @@
|
||||
* **Refactoring:**
|
||||
* Convert files to Kotlin (@olegivo)
|
||||
|
||||
### 1.8.11 (Dec 29, 2020)
|
||||
|
||||
* Fix theme issues on Xiaomi phones
|
||||
|
||||
### 1.8.10 (Nov 26, 2020)
|
||||
|
||||
* Update translations
|
||||
|
||||
@@ -1,14 +1,2 @@
|
||||
1.8.10:
|
||||
* Update translations
|
||||
1.8.9
|
||||
* Remove unused permissions
|
||||
* Notification bundling
|
||||
1.8:
|
||||
* New bar chart showing number of repetitions performed each week, month or year
|
||||
* Performing habits on irregular weekdays will no longer break your streak
|
||||
* More colors
|
||||
* Customize how transparent the widgets are
|
||||
* Customize the first day of the week
|
||||
* Yes/No buttons on notifications
|
||||
* Automatic dark theme (Android 10)
|
||||
* Smaller APK and backup files
|
||||
1.8.11:
|
||||
* Fix theme issues on Xiaomi phones
|
||||
|
||||
@@ -17,13 +17,14 @@
|
||||
~ with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<resources>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<style name="AppBaseTheme" parent="@style/Theme.MaterialComponents.Light.NoActionBar">
|
||||
<item name="aboutScreenColor">@color/blue_800</item>
|
||||
<item name="actionBarPopupTheme">@style/ThemeOverlay.AppCompat.Light</item>
|
||||
<item name="actionModeBackground">@color/grey_700</item>
|
||||
<item name="android:alertDialogTheme">@style/Theme.AppCompat.Light.Dialog</item>
|
||||
<item name="android:dialogTheme">@style/Theme.AppCompat.Light.Dialog</item>
|
||||
<item name="android:forceDarkAllowed" tools:targetApi="q">false</item>
|
||||
<item name="android:itemBackground">?attr/highContrastReverseTextColor</item>
|
||||
<item name="android:navigationBarColor">?attr/colorPrimary</item>
|
||||
<item name="android:textColor">@color/grey_800</item>
|
||||
@@ -65,6 +66,7 @@
|
||||
<item name="actionModeBackground">@color/grey_800</item>
|
||||
<item name="android:alertDialogTheme">@style/Theme.AppCompat.Dialog</item>
|
||||
<item name="android:dialogTheme">@style/Theme.AppCompat.Dialog</item>
|
||||
<item name="android:forceDarkAllowed" tools:targetApi="q">false</item>
|
||||
<item name="android:textColor">@color/grey_100</item>
|
||||
<item name="cardBackground">@drawable/card_dark_background</item>
|
||||
<item name="cardBgColor">@color/grey_850</item>
|
||||
@@ -102,6 +104,7 @@
|
||||
</style>
|
||||
|
||||
<style name="AppBaseThemeDark.PureBlack">
|
||||
<item name="android:forceDarkAllowed" tools:targetApi="q">false</item>
|
||||
<item name="android:textColor">@color/grey_200</item>
|
||||
<item name="cardBackground">@drawable/card_amoled_background</item>
|
||||
<item name="cardBgColor">@color/black</item>
|
||||
|
||||
Reference in New Issue
Block a user