Skip to content

Commit

Permalink
Deploying to gh-pages from @ 7b64793 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
russkyc committed Jan 11, 2025
1 parent ab9f6d5 commit daa7546
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 18 deletions.
Binary file modified _framework/Russkyc.Timely.pdb.gz
Binary file not shown.
Binary file modified _framework/Russkyc.Timely.wasm
Binary file not shown.
Binary file modified _framework/Russkyc.Timely.wasm.br
Binary file not shown.
Binary file modified _framework/Russkyc.Timely.wasm.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions _framework/blazor.boot.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"mainAssemblyName": "Russkyc.Timely",
"resources": {
"hash": "sha256-4X+XBfpmTNoZgW/c2t/fNrE/faJFPveCK6ja1GUnBCs=",
"hash": "sha256-pBsZbaPkRjvK/XQbgXrJDj6ZSRxMos7/B9/uPvkLSfc=",
"jsModuleNative": {
"dotnet.native.8.0.11.lq03ule585.js": "sha256-buYo/TdXk2ijadaSl+nCjirCZbWC0JJlbH92ehEluXI="
},
Expand Down Expand Up @@ -45,7 +45,7 @@
"Microsoft.JSInterop.WebAssembly.wasm": "sha256-ur7J0BJO8q8biUAmXz6mdDZgjinWeH7Jp5cQEXoicj8=",
"MudBlazor.wasm": "sha256-4qQbcVuibqIlcIjaH4AFFEmlhOnglpOY0to9ZfnDwc0=",
"netstandard.wasm": "sha256-gnkOqGdLQZHUD17NjM6RzjAC8Dlh72oQYbSMOeknGWI=",
"Russkyc.Timely.wasm": "sha256-oWheUL+AHLhW5WNy4HJxq1z5GgRQw4PRLez/vAK8xDA=",
"Russkyc.Timely.wasm": "sha256-wmW8QfTniGipR/jup0e8TvxSroi5j/LlnGIzlMSR4Cw=",
"SQLitePCLRaw.batteries_v2.wasm": "sha256-r5pUQvWwdp1MxZ7qFfD4+L+mh0WmE7DrApFw8tLgXLA=",
"SQLitePCLRaw.core.wasm": "sha256-aT9iJxIXrYsk8FoIIsd6aHViCVRd9BN56E6BlayaAI4=",
"SQLitePCLRaw.provider.e_sqlite3.wasm": "sha256-IqWf9GZE+hQv57kMpvhKmc8Uuo5cD4NOnTGLYFaOhL0=",
Expand Down
Binary file modified _framework/blazor.boot.json.br
Binary file not shown.
Binary file modified _framework/blazor.boot.json.gz
Binary file not shown.
6 changes: 3 additions & 3 deletions service-worker-assets.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"url": "_framework\/icudt_no_CJK.dat.br"
},
{
"hash": "sha256-uqaxkL+CsPrbn9J5DWDh1YLmdAREb3NWA107EXJ+5QM=",
"hash": "sha256-9nX9GZ\/sv\/tNblf77lwXzaBFuKohudfvd\/ABr2TABlM=",
"url": "_framework\/blazor.boot.json.br"
},
{
Expand Down Expand Up @@ -197,7 +197,7 @@
"url": "_framework\/netstandard.wasm.br"
},
{
"hash": "sha256-A0fdG0bS+mUM3CErZGjAfd+yJaSjXOaBz4mPRLe+mVc=",
"hash": "sha256-TvwmYt2g\/TFT9bsGZJb1bYQ2k1ZLzxY+wG++\/Zt5ebQ=",
"url": "_framework\/Russkyc.Timely.wasm.br"
},
{
Expand Down Expand Up @@ -401,5 +401,5 @@
"url": "brotliloader.min.js"
}
],
"version": "8\/j9dOYy"
"version": "zlzPBKr+"
};
18 changes: 5 additions & 13 deletions service-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,24 +43,16 @@ async function onActivate(event) {
async function onFetch(event) {
let cachedResponse = null;
if (event.request.method === 'GET') {
// For all navigation requests, try to serve index.html from cache
// For all navigation requests, try to serve index.html from cache,
// unless that request is for an offline resource.
// If you need some URLs to be server-rendered, edit the following check to exclude those URLs
const shouldServeIndexHtml = event.request.mode === 'navigate';
const shouldServeIndexHtml = event.request.mode === 'navigate'
&& !manifestUrlList.some(url => url === event.request.url);

const request = shouldServeIndexHtml ? 'index.html' : event.request;
const cache = await caches.open(cacheName);
cachedResponse = await cache.match(request);

if (cachedResponse && cachedResponse.redirected) {
cachedResponse = new Response(cachedResponse.body,
{
headers: cachedResponse.headers,
status: cachedResponse.status,
statusText: cachedResponse.statusText
});
}
}

return cachedResponse || fetch(event.request);
}
/* Manifest version: 8/j9dOYy */
}/* Manifest version: zlzPBKr+ */

0 comments on commit daa7546

Please sign in to comment.