Skip to content

Commit

Permalink
img fixes and updates for PWA
Browse files Browse the repository at this point in the history
  • Loading branch information
mistermatt1337 committed Apr 15, 2024
1 parent 87bb28d commit d8f3106
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Binary file modified img/favicon-256x256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/favicon-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions manifest.webmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"name": "Waves2Epochs by SC-Open.dev",
"short_name": "Waves2Epochs",
"description": "An SC-Open.dev project Waves2Epochs is a simple JavaScript tool to convert RSI Waves Schedules into Discord compatible epochs.",
"start_url": "/RSI-Waves2Epochs/",
"start_url": "/",
"background_color": "#000000",
"theme_color": "#2f3d58",
"orientation": "any",
"display": "standalone",
"scope": "/RSI-Waves2Epochs/",
"scope": "/",
"icons": [
{
"src": "/RSI-Waves2Epochs/img/favicon-16x16.png",
Expand Down
12 changes: 6 additions & 6 deletions sw.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ self.addEventListener('install', event => {
event.waitUntil((async () => {
const cache = await caches.open(CACHE_NAME);
cache.addAll([
'/',
'/index.html',
'/offline.html',
'/js/content.js',
'/css/styles.css',
'/css/footer.css',
'/RSI-Waves2Epochs/',
'/RSI-Waves2Epochs/index.html',
'/RSI-Waves2Epochs/offline.html',
'/RSI-Waves2Epochs/js/content.js',
'/RSI-Waves2Epochs/css/styles.css',
'/RSI-Waves2Epochs/css/footer.css',
OFFLINE_URL
]);
})());
Expand Down

0 comments on commit d8f3106

Please sign in to comment.