Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
maltaisn committed Dec 28, 2023
1 parent ccaf42b commit 9b4a13b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
## v1.5.4 (TBD)
## v1.5.4 (2023-12-28)
- Ask for notification permission on Android 13 when importing data with reminders.
- Fix link URL not saved across process death in EditFragment.
- Fixed link URL not saved across process death in EditFragment.
- Fixed alarm permission causing crash on Android 14 (#125, @GitGitro)

## v1.5.3 (2023-08-29)
- Add Chinese translation.
- Added Chinese translation.

## v1.5.2 (2023-08-27)
- Allow creating note from shared file.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,9 @@ class ReminderDialog : DialogFragment(), RecurrenceListCallback, RecurrencePicke
deniedListener = { dismiss() }
request()
}
reminderPermission = getContext()?.let {
ReminderPermission(this, it).apply {
deniedListener = { dismiss() }
request()
}
reminderPermission = ReminderPermission(this, requireContext()).apply {
deniedListener = { dismiss() }
request()
}
}

Expand Down

0 comments on commit 9b4a13b

Please sign in to comment.