sinzmise-cetastories-en 2.0.0-1731064227934 → 2.0.0-1731114112886
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/archives/2023/12/index.html +3882 -1
- package/archives/2023/index.html +3882 -1
- package/archives/index.html +3847 -1
- package/assets/algolia/algoliasearch.js +7182 -3
- package/assets/algolia/algoliasearchLite.js +4445 -3
- package/atom.xml +2 -2
- package/baidu_verify_codeva-NA6uDlCuZg.html +3960 -1
- package/categories/Test/index.html +3885 -1
- package/categories/index.html +4014 -1
- package/content.json +1 -0
- package/css/custom2.css +3 -2
- package/css/first.css +1868 -2
- package/css/pace/big-counter.css +39 -2
- package/css/pace/corner-indicator.css +72 -2
- package/css/pace/flash.css +76 -2
- package/css/pace/mac-osx.css +86 -2
- package/css/pace/pace.css +50 -2
- package/css/plane.css +59 -2
- package/css/style.css +8570 -2
- package/css/tags.css +3516 -2
- package/games +57 -15
- package/google8073542809160a67.html +3960 -1
- package/index.html +3926 -1
- package/js/app.js +1341 -2
- package/js/autoload.js +62 -2
- package/js/ceta/fancybox.css +2 -2
- package/js/ceta/fancybox.umd.js +2 -2
- package/js/ceta/iconfontInkss.js +1 -2
- package/js/ceta/message.css +6 -2
- package/js/ceta/message.js +6 -2
- package/js/clock.js +1 -2
- package/js/kslink.js +38 -2
- package/js/newyear.js +76 -2
- package/js/plane.js +2200 -2
- package/js/plugins/aplayer.js +186 -2
- package/js/plugins/parallax.js +191 -2
- package/js/plugins/rightMenus.js +623 -2
- package/js/plugins/tags/contributors.js +92 -2
- package/js/plugins/tags/friends.js +93 -2
- package/js/plugins/tags/sites.js +96 -2
- package/js/search/algolia.js +239 -2
- package/js/search/hexo.js +195 -2
- package/js/search/meilisearch.js +220 -2
- package/js/txmap.js +248 -2
- package/load.html +294 -1
- package/package.json +1 -1
- package/posts/46521/index.html +4049 -1
- package/sw.js +798 -2
- package/tags/Test/index.html +3885 -1
- package/tags/index.html +3997 -1
- package/maps/assets/algolia/algoliasearch.js.map +0 -1
- package/maps/assets/algolia/algoliasearchLite.js.map +0 -1
- package/maps/css/custom2.css.map +0 -1
- package/maps/css/first.css.map +0 -1
- package/maps/css/pace/big-counter.css.map +0 -1
- package/maps/css/pace/corner-indicator.css.map +0 -1
- package/maps/css/pace/flash.css.map +0 -1
- package/maps/css/pace/mac-osx.css.map +0 -1
- package/maps/css/pace/pace.css.map +0 -1
- package/maps/css/plane.css.map +0 -1
- package/maps/css/style.css.map +0 -1
- package/maps/css/tags.css.map +0 -1
- package/maps/js/app.js.map +0 -1
- package/maps/js/autoload.js.map +0 -1
- package/maps/js/ceta/fancybox.css.map +0 -1
- package/maps/js/ceta/fancybox.umd.js.map +0 -1
- package/maps/js/ceta/iconfontInkss.js.map +0 -1
- package/maps/js/ceta/message.css.map +0 -1
- package/maps/js/ceta/message.js.map +0 -1
- package/maps/js/clock.js.map +0 -1
- package/maps/js/kslink.js.map +0 -1
- package/maps/js/newyear.js.map +0 -1
- package/maps/js/plane.js.map +0 -1
- package/maps/js/plugins/aplayer.js.map +0 -1
- package/maps/js/plugins/parallax.js.map +0 -1
- package/maps/js/plugins/rightMenus.js.map +0 -1
- package/maps/js/plugins/tags/contributors.js.map +0 -1
- package/maps/js/plugins/tags/friends.js.map +0 -1
- package/maps/js/plugins/tags/sites.js.map +0 -1
- package/maps/js/search/algolia.js.map +0 -1
- package/maps/js/search/hexo.js.map +0 -1
- package/maps/js/search/meilisearch.js.map +0 -1
- package/maps/js/txmap.js.map +0 -1
- package/maps/sw.js.map +0 -1
package/games
CHANGED
@@ -21,7 +21,44 @@
|
|
21
21
|
<!-- import head_begin begin -->
|
22
22
|
<!-- import head_begin end -->
|
23
23
|
<!-- Custom Files headBegin begin-->
|
24
|
-
|
24
|
+
<script>
|
25
|
+
/////////////////////////////// serviceWorker ///////////////////////////////////////////
|
26
|
+
function registerServiceWorker(path) {
|
27
|
+
if (window.location.hostname != "localhost") {
|
28
|
+
"serviceWorker" in navigator && navigator.serviceWorker.register(`${path}?time=${new Date().getTime()}`).then(function (n) {
|
29
|
+
n.onupdatefound = function () {
|
30
|
+
var e = n.installing;
|
31
|
+
e.onstatechange = function () {
|
32
|
+
switch (e.state) {
|
33
|
+
case "installed":
|
34
|
+
navigator.serviceWorker.controller ?
|
35
|
+
console.log("Updated Service Worker.") :
|
36
|
+
console.log("Service Worker Sucess!");
|
37
|
+
break;
|
38
|
+
case "redundant":
|
39
|
+
console.log("The installing service worker became redundant.")
|
40
|
+
}
|
41
|
+
}
|
42
|
+
}
|
43
|
+
}).catch(function (e) {
|
44
|
+
console.error("Error during service worker registration:", e)
|
45
|
+
if (typeof swinstallretry === 'undefined') {
|
46
|
+
swinstallretry = 1;
|
47
|
+
registerServiceWorker(`/sw.js`)
|
48
|
+
}
|
49
|
+
});
|
50
|
+
}
|
51
|
+
}
|
52
|
+
registerServiceWorker(`/sw.js`)
|
53
|
+
//////////////////////////////////////////////////////////////////////////
|
54
|
+
//// unregister serviceWorker
|
55
|
+
//if ('serviceWorker' in navigator) {
|
56
|
+
// navigator.serviceWorker.ready.then(registration => {
|
57
|
+
// registration.unregister();
|
58
|
+
// });
|
59
|
+
//}
|
60
|
+
//////////////////////////////////////////////////////////////////////////
|
61
|
+
</script>
|
25
62
|
<!-- Custom Files headBegin end-->
|
26
63
|
<link rel="preload" href="/css/style.css" as="style">
|
27
64
|
<link rel="preload" href="https://jsd.cdn.storisinz.site/npm/volantis-static@0.0.1660614606622/media/fonts/VarelaRound/VarelaRound-Regular.ttf" as="font" type="font/ttf" crossorigin="anonymous">
|
@@ -2418,7 +2455,7 @@ if (/*@cc_on!@*/false || (!!window.MSInputMethodContext && !!document.documentMo
|
|
2418
2455
|
root: '/',
|
2419
2456
|
debug: "env",
|
2420
2457
|
default: {"avatar":"https://jsd.cdn.storisinz.site/npm/volantis-static@0.0.1660614606622/media/placeholder/avatar/round/3442075.svg","link":"https://jsd.cdn.storisinz.site/npm/volantis-static@0.0.1660614606622/media/placeholder/link/8f277b4ee0ecd.svg","cover":"https://jsd.cdn.storisinz.site/npm/volantis-static@0.0.1660614606622/media/placeholder/cover/76b86c0226ffd.svg","image":"https://jsd.cdn.storisinz.site/npm/volantis-static@0.0.1660614606622/media/placeholder/image/2659360.svg"},
|
2421
|
-
lastupdate: new Date(
|
2458
|
+
lastupdate: new Date(1731114106095),
|
2422
2459
|
cdn: {
|
2423
2460
|
izitoast_css: 'https://cdn.bootcdn.net/ajax/libs/izitoast/1.4.0/css/iziToast.min.css',
|
2424
2461
|
izitoast_js: 'https://cdn.bootcdn.net/ajax/libs/izitoast/1.4.0/js/iziToast.min.js',
|
@@ -2427,7 +2464,7 @@ if (/*@cc_on!@*/false || (!!window.MSInputMethodContext && !!document.documentMo
|
|
2427
2464
|
},
|
2428
2465
|
sidebar: {
|
2429
2466
|
for_page: ["nextsite","nextblogger","category","tagcloud","webinfo"],
|
2430
|
-
for_post: ["nextsite","nextblogger","category","tagcloud","webinfo"],
|
2467
|
+
for_post: ["nextsite","nextblogger","category","tagcloud","toc","webinfo"],
|
2431
2468
|
webinfo: {
|
2432
2469
|
lastupd: {
|
2433
2470
|
enable: true,
|
@@ -2476,16 +2513,6 @@ if (/*@cc_on!@*/false || (!!window.MSInputMethodContext && !!document.documentMo
|
|
2476
2513
|
<!-- Axios -->
|
2477
2514
|
<script src="https://cdn.bootcdn.net/ajax/libs/axios/1.7.7/axios.min.js" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
2478
2515
|
|
2479
|
-
<script>
|
2480
|
-
"serviceWorker" in navigator ?
|
2481
|
-
navigator.serviceWorker.register('/sw.js').then(function () {
|
2482
|
-
navigator.serviceWorker.controller ?
|
2483
|
-
console.log("Assets cached by the controlling service worker.") :
|
2484
|
-
console.log("Please reload this page to allow the service worker to handle network operations.")
|
2485
|
-
}).catch(function (e) {
|
2486
|
-
console.log("ERROR: " + e)
|
2487
|
-
}) : console.log("Service workers are not supported in the current browser.")
|
2488
|
-
</script>
|
2489
2516
|
<!-- import head_end begin -->
|
2490
2517
|
<!-- import head_end end -->
|
2491
2518
|
<!-- Custom Files headEnd begin-->
|
@@ -2823,7 +2850,7 @@ if (/*@cc_on!@*/false || (!!window.MSInputMethodContext && !!document.documentMo
|
|
2823
2850
|
<div class="new-meta-item date" itemprop="dateCreated datePublished">
|
2824
2851
|
<a class='notlink'>
|
2825
2852
|
<i class="fa-solid fa-calendar-alt fa-fw" aria-hidden="true"></i>
|
2826
|
-
<p>Published:<time class="dataToShow dt-published" datetime="2024-11-
|
2853
|
+
<p>Published:<time class="dataToShow dt-published" datetime="2024-11-09T01:01:46+00:00" title="Nov 9, 2024">Nov 9, 2024</time></p>
|
2827
2854
|
</a>
|
2828
2855
|
</div>
|
2829
2856
|
|
@@ -3236,11 +3263,26 @@ const g="undefined"==typeof pagenumsPre?m[b].parentNode.siblings().length:pagenu
|
|
3236
3263
|
|
3237
3264
|
|
3238
3265
|
|
3266
|
+
|
3267
|
+
|
3268
|
+
|
3269
|
+
|
3270
|
+
|
3271
|
+
|
3272
|
+
|
3239
3273
|
|
3240
3274
|
<div class="widget-sticky pjax">
|
3241
3275
|
|
3242
3276
|
|
3243
3277
|
|
3278
|
+
|
3279
|
+
|
3280
|
+
<div class="">
|
3281
|
+
<!-- pjax占位 -->
|
3282
|
+
</div>
|
3283
|
+
|
3284
|
+
|
3285
|
+
|
3244
3286
|
<section class="widget desktop ">
|
3245
3287
|
|
3246
3288
|
<header>
|
@@ -3289,7 +3331,7 @@ const g="undefined"==typeof pagenumsPre?m[b].parentNode.siblings().length:pagenu
|
|
3289
3331
|
|
3290
3332
|
<div class="webinfo-item">
|
3291
3333
|
<div>Last updated:</div>
|
3292
|
-
<div id="last-update-show">2024-11-
|
3334
|
+
<div id="last-update-show">2024-11-09 days</div>
|
3293
3335
|
</div>
|
3294
3336
|
|
3295
3337
|
</div>
|