release: cut v1.2.0 — event creation
Version bumped to 1.2.0 / 9. No code changes beyond the version — 1.2.0 is the create slice: event form, "+" FAB on every view, last-used-calendar preselect, provider-correct all-day storage. CHANGELOG [1.2.0] carries the details; ROADMAP/STATE mark slice v1.2 shipped. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
@@ -62,7 +62,7 @@ guide here, not a contract — scope per slice is decided as we go.
|
|||||||
| Version | Milestone | Status |
|
| Version | Milestone | Status |
|
||||||
|---|---|---|
|
|---|---|---|
|
||||||
| v1.1 | Write foundation — `WRITE_CALENDAR`, read-only-calendar detection, delete (series + single occurrence) | complete (shipped 2026-06-11) |
|
| v1.1 | Write foundation — `WRITE_CALENDAR`, read-only-calendar detection, delete (series + single occurrence) | complete (shipped 2026-06-11) |
|
||||||
| v1.2 | Create event — form, FAB, default-calendar pref | planned |
|
| v1.2 | Create event — form, FAB, last-used-calendar preselect | complete (shipped 2026-06-11) |
|
||||||
| v1.3 | Edit event — shared form, series edit, reminders, simple recurrence picker | planned |
|
| v1.3 | Edit event — shared form, series edit, reminders, simple recurrence picker | planned |
|
||||||
| v2.0 | Quick-add, occurrence edit, conflict dialog, polish, release | planned |
|
| v2.0 | Quick-add, occurrence edit, conflict dialog, polish, release | planned |
|
||||||
|
|
||||||
|
|||||||
@@ -5,9 +5,10 @@
|
|||||||
## Status
|
## Status
|
||||||
|
|
||||||
**Milestone:** v2.0 — Write support (milestone 2, in progress)
|
**Milestone:** v2.0 — Write support (milestone 2, in progress)
|
||||||
**Phase:** v1.1.0 shipped 2026-06-11 (write foundation + delete). Milestone 2
|
**Phase:** v1.2.0 shipped 2026-06-11 (create event), after v1.1.0 the same
|
||||||
runs in four slices (`docs/superpowers/plans/2026-06-11-03-write-support.md`);
|
day (write foundation + delete). Milestone 2 runs in four slices
|
||||||
next up is v1.2 (create event).
|
(`docs/superpowers/plans/2026-06-11-03-write-support.md`); next up is v1.3
|
||||||
|
(edit event).
|
||||||
|
|
||||||
## Progress
|
## Progress
|
||||||
|
|
||||||
@@ -35,7 +36,15 @@ next up is v1.2 (create event).
|
|||||||
"only this event" via cancelled exception / "all events in the series"),
|
"only this event" via cancelled exception / "all events in the series"),
|
||||||
repository + mapper tests
|
repository + mapper tests
|
||||||
|
|
||||||
|
- [x] v1.2 create event — full-screen `EventEditScreen` (title, all-day,
|
||||||
|
M3 date/time pickers with duration-preserving start moves, writable-only
|
||||||
|
calendar picker preselecting the last-used calendar, location, description),
|
||||||
|
"+" FAB on all three views prefilled with the visible day, `insertEvent`
|
||||||
|
with provider-correct all-day normalisation (UTC midnights, exclusive end),
|
||||||
|
domain/mapper/repository tests
|
||||||
|
|
||||||
## Next
|
## Next
|
||||||
|
|
||||||
1. v1.2 — create event: form screen, FAB, default-calendar pref, `insertEvent`
|
1. v1.3 — edit event: reuse the form, series edit, reminder edit, simple
|
||||||
2. Monitor the F-Droid build/publish for v1.1.0
|
recurrence picker
|
||||||
|
2. Monitor the F-Droid build/publish for v1.1.0 / v1.2.0
|
||||||
|
|||||||
22
CHANGELOG.md
22
CHANGELOG.md
@@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [1.2.0] — 2026-06-11
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Create events (milestone 2, slice 2):
|
||||||
|
- A "+" FAB on the month, week, and day views opens a new full-screen event
|
||||||
|
form, prefilled with the visible day (today at the next full hour, or
|
||||||
|
09:00 on other days)
|
||||||
|
- The form covers title, all-day toggle, start/end with Material 3 date and
|
||||||
|
time pickers (moving the start drags the end along, preserving duration),
|
||||||
|
target calendar, location, and description
|
||||||
|
- The calendar picker offers only writable calendars and preselects the one
|
||||||
|
you last created an event in
|
||||||
|
- Validation on save ("ends before it starts", no writable calendar), with
|
||||||
|
the same contextual write-permission upgrade as delete
|
||||||
|
- All-day events are stored provider-correctly (UTC midnights, exclusive
|
||||||
|
end), timed events in the device time zone
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- The jump-to-today pill now stacks above the new "+" FAB instead of being
|
||||||
|
the only floating action
|
||||||
|
- `versionName`/`versionCode` bumped to 1.2.0 / 9
|
||||||
|
|
||||||
## [1.1.0] — 2026-06-11
|
## [1.1.0] — 2026-06-11
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
@@ -23,8 +23,8 @@ android {
|
|||||||
applicationId = "de.jeanlucmakiola.calendula"
|
applicationId = "de.jeanlucmakiola.calendula"
|
||||||
minSdk = 29
|
minSdk = 29
|
||||||
targetSdk = 36
|
targetSdk = 36
|
||||||
versionCode = 8
|
versionCode = 9
|
||||||
versionName = "1.1.0"
|
versionName = "1.2.0"
|
||||||
|
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user