fix(web): shorten PWA install app name

This commit is contained in:
Greg Haynes
2026-07-12 19:54:35 -07:00
parent 3362ebbfa3
commit 128122fdd9
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -24,7 +24,7 @@
<!-- Web app manifest (endpoint-first with data URL fallback) --> <!-- Web app manifest (endpoint-first with data URL fallback) -->
<script> <script>
const baseUrl = location.origin; const baseUrl = location.origin;
const defaultAppName = 'OpenChamber - AI Coding Assistant'; const defaultAppName = 'OpenChamber';
const defaultShortName = 'OpenChamber'; const defaultShortName = 'OpenChamber';
const pwaNameStorageKey = 'openchamber.pwaName'; const pwaNameStorageKey = 'openchamber.pwaName';
const pwaOrientationStorageKey = 'openchamber.pwaOrientation'; const pwaOrientationStorageKey = 'openchamber.pwaOrientation';
+1 -1
View File
@@ -1,5 +1,5 @@
{ {
"name": "OpenChamber - AI Coding Companion", "name": "OpenChamber",
"short_name": "OpenChamber", "short_name": "OpenChamber",
"description": "OpenChamber desktop companion for the OpenCode AI coding agent", "description": "OpenChamber desktop companion for the OpenCode AI coding agent",
"start_url": "/", "start_url": "/",
@@ -1,4 +1,4 @@
const DEFAULT_PWA_APP_NAME = 'OpenChamber - AI Coding Assistant'; const DEFAULT_PWA_APP_NAME = 'OpenChamber';
const mapPwaOrientationToManifest = (value) => { const mapPwaOrientationToManifest = (value) => {
if (value === 'portrait') { if (value === 'portrait') {
return 'portrait-primary'; return 'portrait-primary';