Skip to content

Commit

Permalink
fix(manifest): Add back missing manifest link, fix screenshot sizes (#…
Browse files Browse the repository at this point in the history
…382)

* fix(manifest): Add missing manifest

* fix(manifest): Fix wrong screenshot sizes
  • Loading branch information
Hanziness authored Sep 16, 2024
1 parent a52b463 commit 7fe70e3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion layouts/timer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ useHead(() => {
htmlAttrs: { lang: locale },
bodyAttrs: {
class: computed(() => settingsStore.visuals.darkMode ? 'dark' : '')
}
},
link: [{
rel: "manifest",
href: "/app_manifest.json"
}]
}
})
</script>
Expand Down
10 changes: 5 additions & 5 deletions public/app_manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,35 +14,35 @@
"screenshots": [
{
"src": "/assets/img/screenshots/stores/mobile_0.jpg",
"sizes": "1520x3040",
"sizes": "1140x2280",
"type": "image/jpg",
"platform": "narrow",
"label": "A pomodoro timer running in the app"
},
{
"src": "/assets/img/screenshots/stores/mobile_1.jpg",
"sizes": "1520x3040",
"sizes": "1140x2280",
"type": "image/jpg",
"platform": "narrow",
"label": "AnotherPomdoro comes with a built-in to-do manager"
},
{
"src": "/assets/img/screenshots/stores/mobile_2.jpg",
"sizes": "1520x3040",
"sizes": "1140x2280",
"type": "image/jpg",
"platform": "narrow",
"label": "The timer is fully customizable: the timer\"s looks, the schedules and there\"s also a dark mode."
},
{
"src": "/assets/img/screenshots/stores/mobile_3.jpg",
"sizes": "1520x3040",
"sizes": "1140x2280",
"type": "image/jpg",
"platform": "narrow",
"label": "Every feature is optional in FocusTide. If all you need is a simple timer, it can do that, too."
},
{
"src": "/assets/img/screenshots/stores/mobile_4.jpg",
"sizes": "1520x3040",
"sizes": "1140x2280",
"type": "image/jpg",
"platform": "narrow",
"label": "Two screenshots showing the 'approximate' and 'percentage' timer styles."
Expand Down

0 comments on commit 7fe70e3

Please sign in to comment.