Merge pull request #2171 from greghaynes/clever-heron
fix(web): shorten PWA install app name
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
<!-- Web app manifest (endpoint-first with data URL fallback) -->
|
||||
<script>
|
||||
const baseUrl = location.origin;
|
||||
const defaultAppName = 'OpenChamber - AI Coding Assistant';
|
||||
const defaultAppName = 'OpenChamber';
|
||||
const defaultShortName = 'OpenChamber';
|
||||
const pwaNameStorageKey = 'openchamber.pwaName';
|
||||
const pwaOrientationStorageKey = 'openchamber.pwaOrientation';
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "OpenChamber - AI Coding Companion",
|
||||
"name": "OpenChamber",
|
||||
"short_name": "OpenChamber",
|
||||
"description": "OpenChamber desktop companion for the OpenCode AI coding agent",
|
||||
"start_url": "/",
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
const DEFAULT_PWA_APP_NAME = 'OpenChamber - AI Coding Assistant';
|
||||
const DEFAULT_PWA_APP_NAME = 'OpenChamber';
|
||||
const mapPwaOrientationToManifest = (value) => {
|
||||
if (value === 'portrait') {
|
||||
return 'portrait-primary';
|
||||
|
||||
Reference in New Issue
Block a user