2 Commits

Author SHA1 Message Date
Frank Schwenk 3327f6e19e chore(release): 2.1.1
Refs #30

Made-with: Cursor
2026-04-16 13:20:48 +02:00
Frank Schwenk a288405ca8 fix(pwa): allow rotation and request fullscreen
Remove forced portrait orientation and request fullscreen display mode.

Made-with: Cursor
2026-04-16 13:19:27 +02:00
4 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -1,12 +1,12 @@
{ {
"name": "growing-galaxy", "name": "growing-galaxy",
"version": "2.1.0", "version": "2.1.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "growing-galaxy", "name": "growing-galaxy",
"version": "2.1.0", "version": "2.1.1",
"dependencies": { "dependencies": {
"@astrojs/preact": "^4.1.3", "@astrojs/preact": "^4.1.3",
"astro": "^5.15.5", "astro": "^5.15.5",
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "growing-galaxy", "name": "growing-galaxy",
"type": "module", "type": "module",
"version": "2.1.0", "version": "2.1.1",
"scripts": { "scripts": {
"dev": "astro dev --host", "dev": "astro dev --host",
"build": "astro build", "build": "astro build",
+2 -2
View File
@@ -4,8 +4,8 @@
"description": "Professional pool and billiards scoring application", "description": "Professional pool and billiards scoring application",
"start_url": "/", "start_url": "/",
"scope": "/", "scope": "/",
"display": "standalone", "display": "fullscreen",
"orientation": "portrait", "display_override": ["fullscreen", "standalone"],
"background_color": "#1a1a1a", "background_color": "#1a1a1a",
"theme_color": "#1a1a1a", "theme_color": "#1a1a1a",
"lang": "de", "lang": "de",
+1 -1
View File
@@ -1,4 +1,4 @@
const CACHE_NAME = 'bscscore-v2.1.0'; const CACHE_NAME = 'bscscore-v2.1.1';
const APP_SHELL = [ const APP_SHELL = [
'/', '/',
'/index.html', '/index.html',