Skip to content
Snippets Groups Projects
Commit f25ff445 authored by Miniontoby's avatar Miniontoby :writing_hand_tone1:
Browse files

Changed manifest.json

parent 5daceb87
No related branches found
No related tags found
No related merge requests found
Pipeline #114068 passed
...@@ -9,7 +9,12 @@ Plan2Go is an open source calender software made for the YH4F 2023. It is fully ...@@ -9,7 +9,12 @@ Plan2Go is an open source calender software made for the YH4F 2023. It is fully
Using our calander is really easy. You add an event to your personal calander and you can see it appear on there. You can also export the calender to your favorite mobile calander. Using our calander is really easy. You add an event to your personal calander and you can see it appear on there. You can also export the calender to your favorite mobile calander.
# Releases # Releases
[![Release](https://github.com/TheDutchProgrammers/Plan2Go/actions/workflows/build-and-release.yml/badge.svg?branch=DesktopApp)](https://github.com/TheDutchProgrammers/Plan2Go/actions/workflows/build-and-release.yml) [![App Release](https://github.com/TheDutchProgrammers/Plan2Go/actions/workflows/build-and-release.yml/badge.svg?branch=DesktopApp)](https://github.com/TheDutchProgrammers/Plan2Go/actions/workflows/build-and-release.yml)
[![Website Pipeline Status](https://edugit.org/thedutchprogrammers/plan2go/badges/main/pipeline.svg)](https://thedutchprogrammers.edugit.io/plan2go/)
# Quick Note
When hosting the `public/` folder as a website and you don't place it under the `/plan2go/` folder in your webserver, make sure to edit the `public/manifest.json` file to match up with YOUR webserver folder location. (This is needed for the PWA)
# Credits # Credits
Plan2Go is made by Speedy (Michiel) With assistance of Miniontoby. Plan2Go is made by Speedy (Michiel) With assistance of Miniontoby.
......
...@@ -3,43 +3,43 @@ ...@@ -3,43 +3,43 @@
"name": "Plan2Go: What do I have in my planning?", "name": "Plan2Go: What do I have in my planning?",
"icons": [ "icons": [
{ {
"src": "/images/icon.png", "src": "/plan2go/images/icon.png",
"type": "image/png", "type": "image/png",
"sizes": "115x115", "sizes": "115x115",
"purpose": "any maskable" "purpose": "any maskable"
}, },
{ {
"src": "/images/Plan2Go.png", "src": "/plan2go/images/Plan2Go.png",
"type": "image/png", "type": "image/png",
"sizes": "692x450" "sizes": "692x450"
}, },
{ {
"src": "/images/Plan2GoBanner.png", "src": "/plan2go/images/Plan2GoBanner.png",
"type": "image/png", "type": "image/png",
"sizes": "512x512" "sizes": "512x512"
} }
], ],
"id": "/?source=pwa", "id": "/plan2go/?source=pwa",
"start_url": "/demo/?source=pwa", "start_url": "/plan2go/demo/?source=pwa",
"background_color": "#264a8a", "background_color": "#264a8a",
"display": "standalone", "display": "standalone",
"scope": "/", "scope": "/plan2go/",
"theme_color": "#264a8a", "theme_color": "#264a8a",
"shortcuts": [ "shortcuts": [
{ {
"name": "How's weather today?", "name": "How's weather today?",
"short_name": "Today", "short_name": "Today",
"description": "View weather information for today", "description": "View weather information for today",
"url": "/demo/today?source=pwa", "url": "/plan2go/demo/today?source=pwa",
"icons": [{ "src": "/images/today.png", "sizes": "192x192" }] "icons": [{ "src": "/plan2go/images/today.png", "sizes": "192x192" }]
}, },
{ {
"name": "How's weather tomorrow?", "name": "How's weather tomorrow?",
"short_name": "Tomorrow", "short_name": "Tomorrow",
"description": "View weather information for tomorrow", "description": "View weather information for tomorrow",
"url": "/demo/tomorrow?source=pwa", "url": "/plan2go/demo/tomorrow?source=pwa",
"icons": [{ "src": "/images/tomorrow.png", "sizes": "192x192" }] "icons": [{ "src": "/plan2go/images/tomorrow.png", "sizes": "192x192" }]
} }
], ],
"description": "Plan2Go PWA" "description": "Plan2Go PWA"
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment