Skip to content

Commit

Permalink
Give a more clear name under Mobile to the PWA app (#739)
Browse files Browse the repository at this point in the history
  • Loading branch information
McGiverGim authored May 3, 2024
1 parent c416ebd commit 1374564
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "betaflight-blackbox-explorer",
"productName": "Blackbox Explorer",
"displayName": "Betaflight - Blackbox Explorer",
"description": "Crossplatform blackbox analitics tool for Betaflight flight control system.",
"version": "4.0.0",
Expand Down
8 changes: 4 additions & 4 deletions vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ export default {
},
includeAssets: ['favicon.ico', 'robots.txt', 'apple-touch-icon.png'],
manifest: {
name: pkg.name,
short_name: 'BBE',
name: pkg.displayName,
short_name: pkg.productName,
description: pkg.description,
theme_color: '#ffffff',
icons: [
Expand All @@ -37,7 +37,7 @@ export default {
type: 'image/png',
},
],
}
})
},
}),
],
}

0 comments on commit 1374564

Please sign in to comment.