chore: release v0.23.11

This commit is contained in:
Ulas Kalayci
2026-04-22 11:51:20 +02:00
parent ed2d47eae1
commit 420391286c
5 changed files with 15 additions and 15 deletions
+5
View File
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.23.11] - 2026-04-22
### Fixed
- iOS PWA: bottom navigation bar now extends into the home indicator safe area via `padding-bottom: env(safe-area-inset-bottom)`, reliably eliminating the gap at the screen bottom
## [0.23.10] - 2026-04-22 ## [0.23.10] - 2026-04-22
### Fixed ### Fixed
+2 -2
View File
@@ -1,12 +1,12 @@
{ {
"name": "oikos", "name": "oikos",
"version": "0.23.10", "version": "0.23.11",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "oikos", "name": "oikos",
"version": "0.23.10", "version": "0.23.11",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"bcrypt": "^6.0.0", "bcrypt": "^6.0.0",
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "oikos", "name": "oikos",
"version": "0.23.10", "version": "0.23.11",
"description": "Self-hosted family planner - calendar, tasks, shopping, meal planning, budget and more. Private, open-source, no subscription.", "description": "Self-hosted family planner - calendar, tasks, shopping, meal planning, budget and more. Private, open-source, no subscription.",
"main": "server/index.js", "main": "server/index.js",
"type": "module", "type": "module",
+4
View File
@@ -144,6 +144,10 @@
z-index: var(--z-nav); z-index: var(--z-nav);
backdrop-filter: blur(16px) saturate(180%); backdrop-filter: blur(16px) saturate(180%);
-webkit-backdrop-filter: blur(16px) saturate(180%); -webkit-backdrop-filter: blur(16px) saturate(180%);
/* Füllt den iOS Home-Indicator-Bereich mit dem Nav-Hintergrund.
* Das padding erstreckt den Hintergrund der Nav bis zum physischen Bildschirmrand,
* ohne das Flex-Layout der App-Shell zu beeinflussen (nav-bottom hat kein flex-grow). */
padding-bottom: env(safe-area-inset-bottom, 0px);
} }
/* ── Items-Reihe ── */ /* ── Items-Reihe ── */
+3 -12
View File
@@ -84,16 +84,7 @@ nav,
* Im Überlappungsbereich (Nav-Padding = Safe-Area) liegt die Nav darüber; * Im Überlappungsbereich (Nav-Padding = Safe-Area) liegt die Nav darüber;
* in einem eventuellen Spalt zwischen Nav-Unterkante und Displayrand liegt * in einem eventuellen Spalt zwischen Nav-Unterkante und Displayrand liegt
* body::after sichtbar - optisch identisch mit der Nav. */ * body::after sichtbar - optisch identisch mit der Nav. */
body::after { /* body::after-Ansatz entfernt: layout.css setzt padding-bottom auf .nav-bottom
content: ''; * direkt via env(safe-area-inset-bottom), was zuverlässiger ist als ein
position: fixed; * Fixed-Pseudo-Element (kann bei overflow:hidden auf html/body geclipt werden). */
bottom: 0;
left: 0;
right: 0;
height: env(safe-area-inset-bottom, 0px);
background-color: color-mix(in srgb, var(--color-surface) 85%, transparent);
backdrop-filter: var(--blur-md) saturate(180%);
-webkit-backdrop-filter: var(--blur-md) saturate(180%);
z-index: calc(var(--z-nav) - 1);
}
} }