v3: localization fixes, char counters & limits on all text fields, ux fixes

This commit is contained in:
khannurien
2026-04-03 19:47:37 +00:00
parent 0ce80398a4
commit a69788c15b
48 changed files with 1133 additions and 305 deletions

View File

@@ -0,0 +1,24 @@
{
"name": "gerbeur",
"short_name": "gerbeur",
"start_url": "/",
"display": "standalone",
"background_color": "#111827",
"theme_color": "#111827",
"icons": [
{
"src": "/favicon.svg",
"type": "image/svg+xml",
"sizes": "any"
}
],
"share_target": {
"action": "/",
"method": "GET",
"params": {
"url": "share_url",
"title": "share_title",
"text": "share_text"
}
}
}

2
public/sw.js Normal file
View File

@@ -0,0 +1,2 @@
self.addEventListener('install', () => self.skipWaiting());
self.addEventListener('activate', () => self.clients.claim());