try to add the icons
Browse files- app/main.py +1 -1
- assets/{site.webmanifest → manifest.json} +7 -5
app/main.py
CHANGED
|
@@ -152,7 +152,7 @@ if bot:
|
|
| 152 |
threading.Thread(target=start_bot_thread, daemon=True).start()
|
| 153 |
|
| 154 |
def main(page: ft.Page):
|
| 155 |
-
page.title = "
|
| 156 |
# Solicitar permiso para notificaciones de navegador/sistema (vía JS)
|
| 157 |
# Solicitar permiso para notificaciones de navegador/sistema (vía JS seguro)
|
| 158 |
def pedir_permiso_notif(e=None):
|
|
|
|
| 152 |
threading.Thread(target=start_bot_thread, daemon=True).start()
|
| 153 |
|
| 154 |
def main(page: ft.Page):
|
| 155 |
+
page.title = "makerspacepage"
|
| 156 |
# Solicitar permiso para notificaciones de navegador/sistema (vía JS)
|
| 157 |
# Solicitar permiso para notificaciones de navegador/sistema (vía JS seguro)
|
| 158 |
def pedir_permiso_notif(e=None):
|
assets/{site.webmanifest → manifest.json}
RENAMED
|
@@ -1,19 +1,21 @@
|
|
| 1 |
{
|
| 2 |
-
"name": "
|
| 3 |
-
"short_name": "
|
| 4 |
"icons": [
|
| 5 |
{
|
| 6 |
-
"src": "
|
| 7 |
"sizes": "192x192",
|
| 8 |
"type": "image/png"
|
| 9 |
},
|
| 10 |
{
|
| 11 |
-
"src": "
|
| 12 |
"sizes": "512x512",
|
| 13 |
"type": "image/png"
|
| 14 |
}
|
| 15 |
],
|
| 16 |
"theme_color": "#1a1c1e",
|
| 17 |
"background_color": "#1a1c1e",
|
| 18 |
-
"display": "standalone"
|
|
|
|
|
|
|
| 19 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"name": "makerspacepage",
|
| 3 |
+
"short_name": "makerspace",
|
| 4 |
"icons": [
|
| 5 |
{
|
| 6 |
+
"src": "icon192x192.png",
|
| 7 |
"sizes": "192x192",
|
| 8 |
"type": "image/png"
|
| 9 |
},
|
| 10 |
{
|
| 11 |
+
"src": "icon-512x512.png",
|
| 12 |
"sizes": "512x512",
|
| 13 |
"type": "image/png"
|
| 14 |
}
|
| 15 |
],
|
| 16 |
"theme_color": "#1a1c1e",
|
| 17 |
"background_color": "#1a1c1e",
|
| 18 |
+
"display": "standalone",
|
| 19 |
+
"start_url": ".",
|
| 20 |
+
"id": "/"
|
| 21 |
}
|