fix(web): shorten PWA install app name
This commit is contained in:
@@ -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,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';
|
||||||
|
|||||||
Reference in New Issue
Block a user