mirror of
https://github.com/ellite/Wallos.git
synced 2025-12-23 23:18:07 -05:00
feat: add calendar to pwa shortcuts
feat: change apple touch icon
This commit is contained in:
BIN
images/icon/apple-touch-icon-152.png
Normal file
BIN
images/icon/apple-touch-icon-152.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.2 KiB |
BIN
images/icon/apple-touch-icon-180.png
Normal file
BIN
images/icon/apple-touch-icon-180.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.9 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 9.6 KiB After Width: | Height: | Size: 3.9 KiB |
BIN
images/siteicons/pwa/calendar.png
Normal file
BIN
images/siteicons/pwa/calendar.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.5 KiB |
@@ -61,9 +61,12 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||
<title>Wallos - Subscription Tracker</title>
|
||||
<meta name="apple-mobile-web-app-title" content="Wallos">
|
||||
<meta name="theme-color" content="<?= $theme == "light" ? "#FFFFFF" : "#222222" ?>" id="theme-color"/>
|
||||
<link rel="icon" type="image/png" href="images/icon/favicon.ico" sizes="16x16">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="images/icon/apple-touch-icon.png">
|
||||
<link rel="apple-touch-icon" href="images/icon/apple-touch-icon.png">
|
||||
<link rel="apple-touch-icon" sizes="152x152" href="images/icon/apple-touch-icon-152.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="images/icon/apple-touch-icon-180.png">
|
||||
<link rel="manifest" href="manifest.json" crossorigin="use-credentials">
|
||||
<link rel="stylesheet" href="styles/theme.css?<?= $version ?>">
|
||||
<link rel="stylesheet" href="styles/styles.css?<?= $version ?>">
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
<?php
|
||||
$version = "v2.15.0";
|
||||
$version = "v2.16.0";
|
||||
?>
|
||||
@@ -183,9 +183,12 @@ if ($adminRow['smtp_address'] != "" && $adminRow['server_url'] != "") {
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||
<meta name="theme-color" content="<?= $theme == "light" ? "#FFFFFF" : "#222222" ?>" id="theme-color" />
|
||||
<meta name="apple-mobile-web-app-title" content="Wallos">
|
||||
<title>Wallos - Subscription Tracker</title>
|
||||
<link rel="icon" type="image/png" href="images/icon/favicon.ico" sizes="16x16">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="images/icon/apple-touch-icon.png">
|
||||
<link rel="apple-touch-icon" href="images/icon/apple-touch-icon.png">
|
||||
<link rel="apple-touch-icon" sizes="152x152" href="images/icon/apple-touch-icon-152.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="images/icon/apple-touch-icon-180.png">
|
||||
<link rel="manifest" href="manifest.json">
|
||||
<link rel="stylesheet" href="styles/theme.css?<?= $version ?>">
|
||||
<link rel="stylesheet" href="styles/login.css?<?= $version ?>">
|
||||
|
||||
@@ -35,6 +35,13 @@
|
||||
"url": "index.php",
|
||||
"icons": [{ "src": "images/siteicons/pwa/subscriptions.png", "sizes": "96x96" }]
|
||||
},
|
||||
{
|
||||
"name": "Calendar",
|
||||
"short_name": "Calendar",
|
||||
"description": "View your calendar",
|
||||
"url": "calendar.php",
|
||||
"icons": [{ "src": "images/siteicons/pwa/calendar.png", "sizes": "96x96" }]
|
||||
},
|
||||
{
|
||||
"name": "Stats",
|
||||
"short_name": "Stats",
|
||||
|
||||
@@ -109,9 +109,12 @@ if (isset($_POST['password']) && $_POST['password'] != "" && isset($_POST['confi
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||
<meta name="theme-color" content="<?= $theme == "light" ? "#FFFFFF" : "#222222" ?>" />
|
||||
<meta name="apple-mobile-web-app-title" content="Wallos">
|
||||
<title>Wallos - Subscription Tracker</title>
|
||||
<link rel="icon" type="image/png" href="images/icon/favicon.ico" sizes="16x16">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="images/icon/apple-touch-icon.png">
|
||||
<link rel="apple-touch-icon" href="images/icon/apple-touch-icon.png">
|
||||
<link rel="apple-touch-icon" sizes="152x152" href="images/icon/apple-touch-icon-152.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="images/icon/apple-touch-icon-180.png">
|
||||
<link rel="manifest" href="manifest.json">
|
||||
<link rel="stylesheet" href="styles/theme.css?<?= $version ?>">
|
||||
<link rel="stylesheet" href="styles/login.css?<?= $version ?>">
|
||||
|
||||
@@ -303,9 +303,12 @@ if (isset($_POST['username'])) {
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||
<meta name="theme-color" content="<?= $theme == "light" ? "#FFFFFF" : "#222222" ?>" id="theme-color" />
|
||||
<meta name="apple-mobile-web-app-title" content="Wallos">
|
||||
<title>Wallos - Subscription Tracker</title>
|
||||
<link rel="icon" type="image/png" href="images/icon/favicon.ico" sizes="16x16">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="images/icon/apple-touch-icon.png">
|
||||
<link rel="apple-touch-icon" href="images/icon/apple-touch-icon.png">
|
||||
<link rel="apple-touch-icon" sizes="152x152" href="images/icon/apple-touch-icon-152.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="images/icon/apple-touch-icon-180.png">
|
||||
<link rel="manifest" href="manifest.json">
|
||||
<link rel="stylesheet" href="styles/theme.css?<?= $version ?>">
|
||||
<link rel="stylesheet" href="styles/login.css?<?= $version ?>">
|
||||
|
||||
@@ -60,6 +60,9 @@ self.addEventListener('install', function (event) {
|
||||
'scripts/libs/sortable.min.js',
|
||||
'images/icon/favicon.ico',
|
||||
'images/icon/android-chrome-192x192.png',
|
||||
'images/icon/apple-touch-icon-180',
|
||||
'images/icon/apple-touch-icon-152',
|
||||
'images/icon/apple-touch-icon',
|
||||
'images/screenshots/desktop.png',
|
||||
'images/siteicons/wallos.png',
|
||||
'images/siteicons/walloswhite.png',
|
||||
|
||||
@@ -77,9 +77,12 @@ if (isset($_GET['email']) && isset($_GET['token'])) {
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||
<meta name="theme-color" content="<?= $theme == "light" ? "#FFFFFF" : "#222222" ?>" />
|
||||
<meta name="apple-mobile-web-app-title" content="Wallos">
|
||||
<title>Wallos - Subscription Tracker</title>
|
||||
<link rel="icon" type="image/png" href="images/icon/favicon.ico" sizes="16x16">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="images/icon/apple-touch-icon.png">
|
||||
<link rel="apple-touch-icon" href="images/icon/apple-touch-icon.png">
|
||||
<link rel="apple-touch-icon" sizes="152x152" href="images/icon/apple-touch-icon-152.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="images/icon/apple-touch-icon-180.png">
|
||||
<link rel="manifest" href="manifest.json">
|
||||
<link rel="stylesheet" href="styles/theme.css?<?= $version ?>">
|
||||
<link rel="stylesheet" href="styles/login.css?<?= $version ?>">
|
||||
|
||||
Reference in New Issue
Block a user