From 3de420094e7d919260a82a2ab080afc26c84d540 Mon Sep 17 00:00:00 2001 From: maltaisn Date: Sat, 7 Jan 2023 09:33:52 -0500 Subject: [PATCH] Version bump, updated changelog --- CHANGELOG.md | 21 ++++++++++--------- app/build.gradle | 4 ++-- gradle.properties | 4 ++-- .../notesshared/TestDateExtensions.kt | 2 +- 4 files changed, 16 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc77a334..1797ef2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ## v1.5.1 -- Fix data import not importing the hidden field of labels correctly. +- Added encrypted notes export (@nhoeher, #100). +- Fixed data import not importing the hidden field of labels correctly. ## v1.5.0 (2022-12-28) - Changes by @nhoeher @@ -7,15 +8,15 @@ - Added shared element transitions for all screens. - Show next event date instead of start date when editing reminder. - Only clear notification after reminder has been postponed (#86). - - Fix title in drawer menu being cut of by status bar (#74). - - Fix notes created from launcher shortcut not saved (#78). - - Fix reminder launcher shortcut not working (#80). - - Fix note list preview lines not updated when changing layout mode (#88) - - Add monochrome icon for Android 13 (#98). -- Change default focus to title when creating a new note. -- Fix animated swipe icons not working on API <23. -- Allow zero lines in note preview (#83). -- Fix auto bullet feature not working with auto-suggesting keyboards. + - Fixed title in drawer menu being cut of by status bar (#74). + - Fixed notes created from launcher shortcut not saved (#78). + - Fixed reminder launcher shortcut not working (#80). + - Fixed note list preview lines not updated when changing layout mode (#88) + - Added monochrome icon for Android 13 (#98). +- Changed default focus to title when creating a new note. +- Fixed animated swipe icons not working on API <23. +- Allowed zero lines in note preview (#83). +- Fixed auto bullet feature not working with auto-suggesting keyboards. ## v1.4.5 (2022-09-25) - Fixed cursor moving to first line when scrolling (#60, thanks to @nhoeher) diff --git a/app/build.gradle b/app/build.gradle index ecb4cc79..d5ece693 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -20,8 +20,8 @@ android { applicationId "com.maltaisn.notes" minSdkVersion 21 targetSdkVersion 33 - versionCode 10500 - versionName "1.5.0" + versionCode 10501 + versionName "1.5.1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" diff --git a/gradle.properties b/gradle.properties index b594429a..ee61ed64 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,8 +1,8 @@ # App version # Must be updated manually in app/build.gradle! # (F-Droid only supports raw literals for auto update detection) -appVersion=1.5.0 -appVersionCode=10500 +appVersion=1.5.1 +appVersionCode=10501 # Kotlin kotlinVersion=1.7.21 diff --git a/sharedTest/src/main/kotlin/com/maltaisn/notesshared/TestDateExtensions.kt b/sharedTest/src/main/kotlin/com/maltaisn/notesshared/TestDateExtensions.kt index 57aa9f72..6b16b034 100644 --- a/sharedTest/src/main/kotlin/com/maltaisn/notesshared/TestDateExtensions.kt +++ b/sharedTest/src/main/kotlin/com/maltaisn/notesshared/TestDateExtensions.kt @@ -27,7 +27,7 @@ var datePatterns = listOf( DatePattern("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'", TimeZone.getTimeZone("GMT"), 24), DatePattern("yyyy-MM-dd'T'HH:mm:ss.SSSXXX", null, null), DatePattern("yyyy-MM-dd'T'HH:mm:ss.SSS", TimeZone.getDefault(), 23), - DatePattern("yyyy-MM-dd", TimeZone.getTimeZone("GMT"), 10) + DatePattern("yyyy-MM-dd", TimeZone.getDefault(), 10) ) data class DatePattern(val pattern: String, val timeZone: TimeZone?, val length: Int?)