chore: release v0.23.9
This commit is contained in:
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.23.9] - 2026-04-22
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- iOS PWA: a `body::after` pseudo-element now fills the home indicator safe area with the same glass background as the bottom navigation, eliminating the gap between the nav bar and the screen edge
|
||||||
|
|
||||||
## [0.23.8] - 2026-04-22
|
## [0.23.8] - 2026-04-22
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|||||||
Generated
+2
-2
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "oikos",
|
"name": "oikos",
|
||||||
"version": "0.23.8",
|
"version": "0.23.9",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "oikos",
|
"name": "oikos",
|
||||||
"version": "0.23.8",
|
"version": "0.23.9",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bcrypt": "^6.0.0",
|
"bcrypt": "^6.0.0",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "oikos",
|
"name": "oikos",
|
||||||
"version": "0.23.8",
|
"version": "0.23.9",
|
||||||
"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",
|
||||||
|
|||||||
@@ -144,7 +144,6 @@
|
|||||||
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%);
|
||||||
padding-bottom: var(--safe-area-inset-bottom);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ── Items-Reihe ── */
|
/* ── Items-Reihe ── */
|
||||||
|
|||||||
@@ -84,7 +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 {
|
||||||
content: '';
|
content: '';
|
||||||
position: fixed;
|
position: fixed;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
@@ -95,5 +95,5 @@ nav,
|
|||||||
backdrop-filter: var(--blur-md) saturate(180%);
|
backdrop-filter: var(--blur-md) saturate(180%);
|
||||||
-webkit-backdrop-filter: var(--blur-md) saturate(180%);
|
-webkit-backdrop-filter: var(--blur-md) saturate(180%);
|
||||||
z-index: calc(var(--z-nav) - 1);
|
z-index: calc(var(--z-nav) - 1);
|
||||||
}*/
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user