Skip to content

Commit

Permalink
Version 2.0.22
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikhail Barashkov committed Sep 27, 2021
1 parent 96fa5ad commit 2e304bc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ android {
applicationId "com.handydev.financier"
minSdkVersion 21
targetSdkVersion 29
versionCode 221
versionName "2.0.21"
versionCode 222
versionName "2.0.22"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
multiDexEnabled true
javaCompileOptions {
Expand Down
6 changes: 6 additions & 0 deletions app/src/main/assets/whatsnew.htm
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@
</style>
<body>

<p><b>2.0.22, 24 Sep 2021</b></p>
<p>
[*]Fix date selection in filters not completely visible sometimes.
[*]Fixed time selector in filters always showing AM/PM even when not needed.
</p>

<p><b>2.0.21, 10 Sep 2021</b></p>
<p>
[*]Fix unresponsive Menu tab.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public static DateFormat getTimeFormat(Context context) {
}

public static boolean is24HourFormat(Context context) {
return "24".equals(Settings.System.getString(context.getContentResolver(), Settings.System.TIME_12_24));
return android.text.format.DateFormat.is24HourFormat(context);
}

public static void zeroSeconds(Calendar dateTime) {
Expand Down

0 comments on commit 2e304bc

Please sign in to comment.