Skip to content

Commit

Permalink
feat: replace manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
thraizz committed Jul 23, 2024
1 parent 10202aa commit 8656793
Show file tree
Hide file tree
Showing 12 changed files with 43 additions and 18 deletions.
3 changes: 1 addition & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<!-- Set canonical to app.r10progress.com -->
<link rel="canonical" href="https://app.r10progress.com" />
<link rel="manifest" href="manifest.json" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
Expand Down Expand Up @@ -30,7 +31,6 @@
property="og:description"
content="Upload data from Garmin Approach R10 Radar, analyze your golf shots over time and sessions with R10Progress."
/>
<meta property="og:image" content="URL_TO_YOUR_SOCIAL_SHARE_IMAGE" />

<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
Expand All @@ -42,7 +42,6 @@
property="twitter:description"
content="Upload data from Garmin Approach R10 Radar, analyze your golf shots over time and sessions with R10Progress."
/>
<meta property="twitter:image" content="URL_TO_YOUR_SOCIAL_SHARE_IMAGE" />

<link rel="icon" type="image/svg+xml" href="/vite.svg" />

Expand Down
Binary file removed public/icon512_maskable.png
Binary file not shown.
Binary file removed public/icon512_rounded.png
Binary file not shown.
Binary file added public/images/icons/icon-128x128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/icons/icon-144x144.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/icons/icon-152x152.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/icons/icon-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/icons/icon-384x384.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/icons/icon-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/icons/icon-72x72.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/icons/icon-96x96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
58 changes: 42 additions & 16 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,52 @@
{
"theme_color": "#8936FF",
"background_color": "#2EC6FE",
"name": "R10Progress - Golf Analytics",
"short_name": "R10Progress",
"theme_color": "#0c79bc",
"background_color": "#fff",
"display": "browser",
"orientation": "portrait",
"scope": "/",
"start_url": "/",
"icons": [
{
"purpose": "maskable",
"sizes": "512x512",
"src": "icon512_maskable.png",
"src": "images/icons/icon-72x72.png",
"sizes": "72x72",
"type": "image/png"
},
{
"src": "images/icons/icon-96x96.png",
"sizes": "96x96",
"type": "image/png"
},
{
"src": "images/icons/icon-128x128.png",
"sizes": "128x128",
"type": "image/png"
},
{
"src": "images/icons/icon-144x144.png",
"sizes": "144x144",
"type": "image/png"
},
{
"purpose": "any",
"src": "images/icons/icon-152x152.png",
"sizes": "152x152",
"type": "image/png"
},
{
"src": "images/icons/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "images/icons/icon-384x384.png",
"sizes": "384x384",
"type": "image/png"
},
{
"src": "images/icons/icon-512x512.png",
"sizes": "512x512",
"src": "icon512_rounded.png",
"type": "image/png"
}
],
"orientation": "portrait",
"display": "standalone",
"dir": "left",
"lang": "en-EN",
"name": "R10Progress - Golf Analytics",
"short_name": "R10Progress",
"description": "Transform your golfing experience with R10Progress, the ultimate companion for your Garmin Approach R10 Golf Radar. This intuitive app is designed to effortlessly track your progress and help you achieve your golfing goals. With R10Progress, you can easily monitor your performance, analyze your data, and make informed adjustments to your game. Say goodbye to guesswork and hello to a smarter way of improving your golf skills.",
"id": "https://r10progress.com"
]
}

0 comments on commit 8656793

Please sign in to comment.