chore: release v0.26.3

This commit is contained in:
Ulas Kalayci
2026-04-27 12:45:53 +02:00
parent 3747db1096
commit d1e48857b6
5 changed files with 16 additions and 4 deletions
+6
View File
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.26.3] - 2026-04-27
### Fixed
- Birthdays: "Discard changes?" dialog appeared immediately after successfully saving a birthday because `closeModal()` was called without `force: true`, triggering the dirty-form check on a programmatic close
- Dashboard (PWA): widget items (tasks, events, meals, notes, birthdays, shopping lists) occasionally blocked vertical swipe-to-scroll; added `touch-action: pan-y` so the browser passes vertical pan gestures through to the scroll container
## [0.26.2] - 2026-04-27
### Fixed
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "oikos",
"version": "0.26.2",
"version": "0.26.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "oikos",
"version": "0.26.2",
"version": "0.26.3",
"license": "MIT",
"dependencies": {
"bcrypt": "^6.0.0",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "oikos",
"version": "0.26.2",
"version": "0.26.3",
"description": "Self-hosted family planner - calendar, tasks, shopping, meal planning, budget and more. Private, open-source, no subscription.",
"main": "server/index.js",
"type": "module",
+1 -1
View File
@@ -366,7 +366,7 @@ function openBirthdayModal({ mode, birthday = null }) {
renderUpcoming();
renderSuggestions();
renderList();
closeModal();
closeModal({ force: true });
} catch (err) {
window.oikos?.showToast(err.message, 'danger');
saveBtn.disabled = false;
+6
View File
@@ -427,6 +427,7 @@
padding: var(--space-2) 0;
border-bottom: 1px solid var(--color-border-subtle);
cursor: pointer;
touch-action: pan-y;
transition: opacity var(--transition-fast);
}
@@ -507,6 +508,7 @@
padding: var(--space-2) 0;
border-bottom: 1px solid var(--color-border-subtle);
cursor: pointer;
touch-action: pan-y;
transition: opacity var(--transition-fast);
}
@@ -594,6 +596,7 @@
padding: var(--space-2) var(--space-1);
background-color: var(--color-surface);
cursor: pointer;
touch-action: pan-y;
transition: background-color var(--transition-fast);
text-align: center;
min-height: 72px;
@@ -683,6 +686,7 @@
* -------------------------------------------------------- */
.shopping-widget-list {
cursor: pointer;
touch-action: pan-y;
transition: background-color var(--transition-fast);
border-radius: var(--radius-sm);
padding: var(--space-2) 0;
@@ -794,6 +798,7 @@
border-radius: var(--radius-sm);
padding: var(--space-3);
cursor: pointer;
touch-action: pan-y;
transition: opacity var(--transition-fast), transform var(--transition-fast);
border-left: 3px solid var(--note-color, var(--color-accent));
background-color: color-mix(in srgb, var(--note-color, var(--color-accent)) 6%, var(--color-surface-2));
@@ -2262,6 +2267,7 @@
border: 1px solid color-mix(in srgb, var(--color-border) 72%, transparent);
background: var(--color-surface-2);
cursor: pointer;
touch-action: pan-y;
}
.birthday-widget-item + .birthday-widget-item {