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

fix(manifest): Add back missing manifest link, fix screenshot sizes #382

Merged
merged 2 commits into from
Sep 16, 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
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
Loading