Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed old reminders not being removed when moving events ([#486])
- Fixed drag and drop copying events instead of moving them ([#706])
- Fixed crash when editing events with attendees ([#34])
- Fixed event edits being silently discarded when using navigation arrow ([#803])
- Fixed event edits being silently discarded on back press ([#49])

## [1.6.1] - 2025-09-01
### Changed
Expand Down Expand Up @@ -128,6 +128,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial release

[#34]: https://github.com/FossifyOrg/Calendar/issues/34
[#49]: https://github.com/FossifyOrg/Calendar/issues/49
[#138]: https://github.com/FossifyOrg/Calendar/issues/138
[#148]: https://github.com/FossifyOrg/Calendar/issues/148
[#196]: https://github.com/FossifyOrg/Calendar/issues/196
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -649,6 +649,11 @@ class EventActivity : SimpleActivity() {
reminders != mEvent.getReminders() ||
mRepeatInterval != mEvent.repeatInterval ||
mRepeatRule != mEvent.repeatRule ||
mRepeatLimit != mEvent.repeatLimit ||
getAllAttendees(false) != mEvent.attendees ||
mAvailability != mEvent.availability ||
mAccessLevel != mEvent.accessLevel ||
mStatus != mEvent.status ||
mEventTypeId != mEvent.eventType ||
mWasCalendarChanged ||
mIsAllDayEvent != mEvent.getIsAllDay() ||
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ class TaskActivity : SimpleActivity() {
reminders != originalReminders ||
mRepeatInterval != mTask.repeatInterval ||
mRepeatRule != mTask.repeatRule ||
mRepeatLimit != mTask.repeatLimit ||
mEventTypeId != mTask.eventType ||
mEventColor != mTask.color ||
hasTimeChanged
Expand Down
Loading