diff --git a/CHANGELOG.md b/CHANGELOG.md index 54f80f9..24ccec0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.30.2] - 2026-04-28 + +### Fixed +- Calendar: date inputs in the event modal reverted from `type="text"` to `type="date"`, restoring the native date picker on iOS and other mobile browsers + ## [0.30.1] - 2026-04-28 ### Fixed diff --git a/package-lock.json b/package-lock.json index 363604f..87fdda9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "oikos", - "version": "0.30.1", + "version": "0.30.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "oikos", - "version": "0.30.1", + "version": "0.30.2", "license": "MIT", "dependencies": { "bcrypt": "^6.0.0", diff --git a/package.json b/package.json index b21ce35..c7d4466 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "oikos", - "version": "0.30.1", + "version": "0.30.2", "description": "Self-hosted family planner - calendar, tasks, shopping, meal planning, budget and more. Private, open-source, no subscription.", "main": "server/index.js", "type": "module", diff --git a/public/pages/calendar.js b/public/pages/calendar.js index 12d1fb3..14e772c 100644 --- a/public/pages/calendar.js +++ b/public/pages/calendar.js @@ -1206,7 +1206,7 @@ function buildEventModalContent({ mode, event, date, reminder = null }) {