Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust title/name to be in coherence with Blackbox #3934

Merged
merged 1 commit into from
May 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "betaflight-configurator",
"productName": "Betaflight Configurator",
"displayName": "Betaflight - Configurator",
"description": "Crossplatform configuration tool for Betaflight flight control system.",
"version": "11.0.0",
"main": "main.html",
Expand Down
4 changes: 2 additions & 2 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<script type="module" src="/src/js/utils/common.js"></script>
<script type="module" src="/src/js/browserMain.js"></script>

<title>Betaflight</title>
<meta name="description" content="Configurator for betaflight firmware">
<title>Betaflight - Configurator</title>
<meta name="description" content="Configurator for Betaflight firmware">
<link rel="icon" href="/images/pwa/favicon.ico">
<link rel="apple-touch-icon" href="/images/pwa/apple-touch-icon.png" sizes="128x128">
<meta name="theme-color" content="#eea600">
Expand Down
2 changes: 1 addition & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default defineConfig({
},
includeAssets: ['favicon.ico', 'apple-touch-icon.png'],
manifest: {
name: pkg.productName,
name: pkg.displayName,
short_name: pkg.productName,
description: pkg.description,
theme_color: '#ffffff',
Expand Down