Skip to content

Commit

Permalink
Adding the id to the manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosrafaelgn committed Jun 24, 2022
1 parent d9a660b commit 417a404
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Android/app/src/main/assets/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
--playlist-item-size: 56px;
}
</style>
<link rel="stylesheet" type="text/css" href="assets/css/graphicalFilterEditor.css?20220522a" />
<link rel="stylesheet" type="text/css" href="assets/css/style.css?20220522a" />
<link rel="stylesheet" type="text/css" href="assets/css/graphicalFilterEditor.css?20220624" />
<link rel="stylesheet" type="text/css" href="assets/css/style.css?20220624" />
</head>
<body>
<div id="ruler" style="position: absolute; z-index: -1; left: 0; top: 0; height: 8rem; visibility: hidden; pointer-events: none;"></div>
Expand Down Expand Up @@ -161,7 +161,7 @@
//<![CDATA[
"use strict";

var CACHE_VERSION = "20220522a";
var CACHE_VERSION = "20220624";

(function () {
if (location.href.startsWith("file://")) {
Expand Down
1 change: 1 addition & 0 deletions docs/assets/images/favicons/manifest.webmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "FPlay",
"short_name": "FPlay",
"start_url": "/",
"id": "/",
"dir": "ltr",
"lang": "en-US",
"orientation": "any",
Expand Down
6 changes: 3 additions & 3 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@
--playlist-item-size: 56px;
}
</style>
<link rel="stylesheet" type="text/css" href="assets/css/graphicalFilterEditor.css?20220522a" />
<link rel="stylesheet" type="text/css" href="assets/css/style.css?20220522a" />
<link rel="stylesheet" type="text/css" href="assets/css/graphicalFilterEditor.css?20220624" />
<link rel="stylesheet" type="text/css" href="assets/css/style.css?20220624" />
</head>
<body>
<div id="ruler" style="position: absolute; z-index: -1; left: 0; top: 0; height: 8rem; visibility: hidden; pointer-events: none;"></div>
Expand Down Expand Up @@ -184,7 +184,7 @@
//<![CDATA[
"use strict";

var CACHE_VERSION = "20220522a";
var CACHE_VERSION = "20220624";

(function () {
if (location.href.startsWith("file://")) {
Expand Down
2 changes: 1 addition & 1 deletion docs/sw.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
// whenever it detects a change in the source code of the
// service worker).
const CACHE_PREFIX = "fplay-static-cache-";
const CACHE_VERSION = "20220522a";
const CACHE_VERSION = "20220624";
const CACHE_NAME = CACHE_PREFIX + CACHE_VERSION;

self.addEventListener("install", (event) => {
Expand Down

0 comments on commit 417a404

Please sign in to comment.