Skip to content

Commit

Permalink
Version bump, updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
maltaisn committed Jan 7, 2023
1 parent fc08ade commit 3de4200
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 15 deletions.
21 changes: 11 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
## 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
- Full Material 3 redesign, with support for dynamic colors.
- 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)
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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?)
Expand Down

0 comments on commit 3de4200

Please sign in to comment.