Skip to content

Commit d10bde8

Browse files
committed
Update version, dependencies update
1 parent be988b5 commit d10bde8

File tree

6 files changed

+16
-13
lines changed

6 files changed

+16
-13
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v1.4.5 (2022-09-25)
2+
- Fixed cursor moving to first line when scrolling (#60, thanks to @nhoeher)
3+
14
## v1.4.4 (2022-07-24)
25
- Added separate swipe left & right actions, with animated icon shown on swipe (#36).
36
- Fixed cursor going to end of note when scrolling long text notes (#63, potentially #60).

app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ android {
2727
applicationId "com.maltaisn.notes.sync"
2828
minSdkVersion 21
2929
targetSdkVersion 32
30-
versionCode 10404
31-
versionName "1.4.4"
30+
versionCode 10405
31+
versionName "1.4.5"
3232
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
3333

3434
kapt {

app/src/main/kotlin/com/maltaisn/notes/ui/ViewModels.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ fun <VM : ViewModel> createLazyViewModel(
8686
savedStateRegistryOwnerProducer: () -> SavedStateRegistryOwner,
8787
viewModelStoreOwnerProducer: () -> ViewModelStoreOwner,
8888
viewModelProvider: (SavedStateHandle) -> VM
89-
) = ViewModelLazy(viewModelClass, { viewModelStoreOwnerProducer().viewModelStore }) {
89+
) = ViewModelLazy(viewModelClass, { viewModelStoreOwnerProducer().viewModelStore }, {
9090
object : AbstractSavedStateViewModelFactory(savedStateRegistryOwnerProducer(), Bundle()) {
9191
@Suppress("UNCHECKED_CAST")
9292
override fun <T : ViewModel> create(
@@ -95,7 +95,7 @@ fun <VM : ViewModel> createLazyViewModel(
9595
handle: SavedStateHandle
9696
) = viewModelProvider(handle) as T
9797
}
98-
}
98+
})
9999

100100
interface AssistedSavedStateViewModelFactory<T> {
101101
fun create(savedStateHandle: SavedStateHandle): T
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
- Added configurable left & right swipe actions.
2-
- A few bug fixes
1+
- Bug fix
2+
- Translations update
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
- Action de glissement configurable selon la direction.
2-
- Quelques bugs corrigés.
1+
- Correction d'un bug
2+
- Mise à jour des traductions

gradle.properties

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# App version
22
# Must be updated manually in app/build.gradle!
33
# (F-Droid only supports raw literals for auto update detection)
4-
appVersion=1.4.4
5-
appVersionCode=10404
4+
appVersion=1.4.5
5+
appVersionCode=10405
66

77
# Kotlin
88
kotlinVersion=1.6.20
@@ -21,10 +21,10 @@ appCompatVersion=1.3.1 # do not upgrade, see commit 9056998236bb message
2121
recyclerViewVersion=1.2.1
2222
constraintLayoutVersion=2.1.4
2323
preferenceVersion=1.2.0
24-
roomVersion=2.4.2
24+
roomVersion=2.4.3
2525
materialVersion=1.6.1
26-
navVersion=2.4.2
27-
lifecycleVersion=2.4.1
26+
navVersion=2.5.2
27+
lifecycleVersion=2.5.1
2828
recurpickerVersion=2.1.6
2929
aboutLibrariesVersion=8.9.3
3030

0 commit comments

Comments
 (0)