Skip to content

Commit f6761d3

Browse files
committed
Merge branch 'release/2.35.0' into main
2 parents da6a14e + 231c470 commit f6761d3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+615
-440
lines changed

package-lock.json

Lines changed: 145 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.34.0",
2+
"version": "2.35.0",
33
"name": "shieldmaiden",
44
"description": "A Dungeons and Dragons Combat Tracker",
55
"productName": "Shieldmaiden",
@@ -16,6 +16,7 @@
1616
"prepare": "husky install"
1717
},
1818
"dependencies": {
19+
"@egjs/vue-flicking": "^4.12.0",
1920
"@gtm-support/vue2-gtm": "^1.3.0",
2021
"@octokit/rest": "^19.0.5",
2122
"@quasar/extras": "^1.16.12",

public/sitemap.xml

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src-pwa/custom-service-worker.js

Lines changed: 25 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -3,33 +3,38 @@
33
* is picked up by the build system ONLY if
44
* quasar.conf > pwa > workboxPluginMode is set to "InjectManifest"
55
*/
6-
self.addEventListener('message', (event) => {
7-
if(event.origin !== "https://shieldmaiden.app" && event.origin !== "https://staging.shieldmaiden.app")
8-
return;
9-
10-
if (event.data && event.data.type === 'SKIP_WAITING') {
11-
self.skipWaiting();
12-
}
6+
self.addEventListener("message", (event) => {
7+
if (
8+
event.origin !== "https://shieldmaiden.app" &&
9+
event.origin !== "https://staging.shieldmaiden.app"
10+
)
11+
return;
12+
13+
if (event.data && event.data.type === "SKIP_WAITING") {
14+
self.skipWaiting();
15+
}
1316
});
1417

15-
workbox.core.setCacheNameDetails({prefix: "shieldmaiden"});
18+
workbox.core.setCacheNameDetails({ prefix: "shieldmaiden" });
1619

1720
// Precache array of routes (precacheManifest = this array)
1821
// https://developers.google.com/web/tools/workbox/modules/workbox-precaching
19-
self.__precacheManifest = [{ url: "/200.html", revision: Date.now() }].concat(self.__precacheManifest || []);
22+
self.__precacheManifest = [{ url: "/200.html", revision: Date.now() }].concat(
23+
self.__precacheManifest || []
24+
);
2025
workbox.precaching.precacheAndRoute(self.__precacheManifest, {});
2126

2227
// This assumes /200.html has been precached.
2328
// https://developers.google.com/web/tools/workbox/modules/workbox-routing#how_to_register_a_navigation_route
2429
workbox.routing.registerNavigationRoute(workbox.precaching.getCacheKeyForURL("200.html"), {
25-
blacklist: [
26-
/^\/compendium/,
27-
/^\/admin/,
28-
/^\/patreon/,
29-
/^\/user/,
30-
/^\/about-us/,
31-
/^\/documentation/,
32-
/^\/privacy-policy/,
33-
/^\/demo/
34-
],
35-
});
30+
blacklist: [
31+
/^\/compendium/,
32+
/^\/admin/,
33+
/^\/pricing/,
34+
/^\/user/,
35+
/^\/about-us/,
36+
/^\/documentation/,
37+
/^\/privacy-policy/,
38+
/^\/demo/,
39+
],
40+
});

src/App.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,14 @@
1414
"
1515
:small-screen="small_screen"
1616
/>
17-
<q-scroll-area
17+
<div
18+
:is="$route.name === 'home' ? 'div' : 'q-scroll-area'"
1819
class="scrollable-content"
1920
:dark="$store.getters.theme === 'dark'"
2021
:thumb-style="{ width: '5px' }"
2122
>
2223
<router-view />
23-
</q-scroll-area>
24+
</div>
2425
</div>
2526
</div>
2627
<transition
36.5 KB
Loading
32.2 KB
Loading
-15.9 KB
Loading
90.1 KB
Loading
362 KB
Loading

0 commit comments

Comments
 (0)