Skip to content

Commit a50e622

Browse files
committed
Updated version code and dependencies
1 parent 3ca1135 commit a50e622

File tree

7 files changed

+19
-6
lines changed

7 files changed

+19
-6
lines changed
File renamed without changes.

app/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ android {
1313
applicationId "com.omgodse.notally"
1414
minSdk 21
1515
targetSdk 32
16-
versionCode 43
17-
versionName "4.8"
16+
versionCode 44
17+
versionName "4.9"
1818
resConfigs "en", "ca", "cs", "da", "de", "el", "es", "fr", "hu", "in", "it", "ja", "nb", "nl", "nn", "pl", "pt-rBR", "pt-rPT", "ru", "sk", "sv", "tl", "tr", "uk", "vi", "zh-rCN"
1919
vectorDrawables.generatedDensities = []
2020
}
@@ -48,7 +48,7 @@ android {
4848

4949
dependencies {
5050
final def navVersion = "2.3.5"
51-
final def roomVersion = "2.4.3"
51+
final def roomVersion = "2.5.0"
5252

5353
kapt "androidx.room:room-compiler:$roomVersion"
5454
implementation "androidx.room:room-ktx:$roomVersion"

app/src/main/AndroidManifest.xml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<application
66
android:name=".NotallyApplication"
77
android:allowBackup="true"
8+
android:appCategory="productivity"
89
android:icon="@mipmap/notally"
910
android:label="@string/app_name"
1011
android:roundIcon="@mipmap/notally_round"

app/src/main/res/layout/label.xml

+1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@
77
android:clickable="false"
88
android:ellipsize="end"
99
android:focusable="false"
10+
app:chipSurfaceColor="@color/Transparent"
1011
app:rippleColor="@null" />

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ buildscript {
66
}
77

88
dependencies {
9-
classpath "com.android.tools.build:gradle:7.3.0"
10-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10"
9+
classpath "com.android.tools.build:gradle:7.4.0"
10+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.21"
1111
}
1212
}
1313

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Added Vietnamese translation
2+
Updated German, Russian, Italian, Indonesian, Turkish and Chinese translations
3+
4+
Fixed bug that caused app to crash when clicking on a note or link.
5+
6+
Changed the backup format. This fixes a bug where exporting a backup caused the app to crash. Older backups can still be imported.
7+
8+
Changed the way lists are shared. Instead
9+
of numbers, the items are prefixed with checkboxes.
10+
11+
Improved search. Instead of the filters being buried under a dialog, they're now front and center.
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Sat Feb 06 22:56:10 IST 2021
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)