mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-20 06:32:11 +00:00
deploy: 70da083ad5dd198154c891eb7458d8d19f70dfde
This commit is contained in:
parent
ba8a78d763
commit
a5e7446a23
15 changed files with 167 additions and 62 deletions
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1527,8 +1527,7 @@
|
|||
}
|
||||
.main-nav-bars-container-wNjS5 .nav-content-container-zl9hQ {
|
||||
position: absolute;
|
||||
padding-top: calc(var(--horizontal-nav-bar-size) + var(--safe-area-inset-top));
|
||||
top: 0;
|
||||
top: calc(var(--horizontal-nav-bar-size) + var(--safe-area-inset-top));
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: var(--vertical-nav-bar-size);
|
||||
|
|
@ -1538,7 +1537,7 @@
|
|||
@media only screen and (max-width: 640px) {
|
||||
.main-nav-bars-container-wNjS5 .nav-content-container-zl9hQ {
|
||||
left: 0;
|
||||
padding-bottom: var(--vertical-nav-bar-size);
|
||||
bottom: var(--vertical-nav-bar-size);
|
||||
}
|
||||
.main-nav-bars-container-wNjS5 .vertical-nav-bar-qGRze {
|
||||
top: initial;
|
||||
|
|
@ -3871,6 +3870,112 @@ html.active-slider-within-NcgYf body {
|
|||
color: hsla(222.8, 100%, 78%, 0.9);
|
||||
}
|
||||
|
||||
.placeholder-XbuMS {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 100%;
|
||||
width: 100%;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.placeholder-XbuMS .title-eBwtZ {
|
||||
font-size: 1.75rem;
|
||||
font-weight: 400;
|
||||
text-align: center;
|
||||
color: var(--primary-foreground-color);
|
||||
margin-bottom: 1rem;
|
||||
opacity: 0.5;
|
||||
}
|
||||
.placeholder-XbuMS .image-container-YnqQ_ {
|
||||
padding: 1.5rem 0;
|
||||
}
|
||||
.placeholder-XbuMS .image-container-YnqQ_ .image-yTheT {
|
||||
height: 100%;
|
||||
max-height: 14rem;
|
||||
object-fit: contain;
|
||||
}
|
||||
.placeholder-XbuMS .overview-nYi3n {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
gap: 4rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
.placeholder-XbuMS .overview-nYi3n .point-vQhRj {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
gap: 1.5rem;
|
||||
width: 18rem;
|
||||
}
|
||||
.placeholder-XbuMS .overview-nYi3n .point-vQhRj .icon-RD7Oa {
|
||||
flex: none;
|
||||
height: 3.25rem;
|
||||
width: 3.25rem;
|
||||
color: var(--primary-foreground-color);
|
||||
opacity: 0.3;
|
||||
}
|
||||
.placeholder-XbuMS .overview-nYi3n .point-vQhRj .text-NNOtt {
|
||||
flex: auto;
|
||||
font-size: 1.1rem;
|
||||
font-size: 500;
|
||||
color: var(--primary-foreground-color);
|
||||
opacity: 0.9;
|
||||
}
|
||||
.placeholder-XbuMS .button-container-HU08c {
|
||||
margin: 1rem 0;
|
||||
}
|
||||
.placeholder-XbuMS .button-container-HU08c .button-GHZkA {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
height: 4rem;
|
||||
line-height: 4rem;
|
||||
padding: 0 5rem;
|
||||
font-size: 1.1rem;
|
||||
color: var(--primary-foreground-color);
|
||||
text-align: center;
|
||||
border-radius: 3.5rem;
|
||||
background-color: var(--overlay-color);
|
||||
}
|
||||
.placeholder-XbuMS .button-container-HU08c .button-GHZkA:hover {
|
||||
outline: var(--focus-outline-size) solid var(--primary-foreground-color);
|
||||
background-color: transparent;
|
||||
}
|
||||
@media only screen and (max-width: 1000px) {
|
||||
.placeholder-XbuMS {
|
||||
padding: 1rem 2rem;
|
||||
}
|
||||
.placeholder-XbuMS .title-eBwtZ {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.placeholder-XbuMS .image-container-YnqQ_ {
|
||||
padding: 1rem;
|
||||
}
|
||||
.placeholder-XbuMS .image-container-YnqQ_ .image-yTheT {
|
||||
max-height: 10rem;
|
||||
}
|
||||
.placeholder-XbuMS .button-container-HU08c {
|
||||
margin: 1rem 0 0;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 640px) {
|
||||
.placeholder-XbuMS {
|
||||
padding: 1rem 2rem;
|
||||
}
|
||||
.placeholder-XbuMS .overview-nYi3n {
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
}
|
||||
.placeholder-XbuMS .overview-nYi3n .point-vQhRj .text-NNOtt {
|
||||
font-size: 1rem;
|
||||
}
|
||||
.placeholder-XbuMS .button-container-HU08c .button-GHZkA {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.library-container-zM_bj {
|
||||
height: calc(100% - var(--safe-area-inset-bottom));
|
||||
background-color: transparent;
|
||||
|
|
@ -3919,33 +4024,6 @@ html.active-slider-within-NcgYf body {
|
|||
.library-container-zM_bj .library-content-PgX4O .message-container-MhY5t:first-child {
|
||||
padding: 4rem;
|
||||
}
|
||||
.library-container-zM_bj .library-content-PgX4O .message-container-MhY5t.no-user-message-container-KMLpE .login-button-container-RoEh7 {
|
||||
flex: none;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 20rem;
|
||||
height: 3.5rem;
|
||||
border-radius: 3.5rem;
|
||||
padding: 0.5rem 1rem;
|
||||
margin-bottom: 1rem;
|
||||
background-color: var(--secondary-accent-color);
|
||||
}
|
||||
.library-container-zM_bj .library-content-PgX4O .message-container-MhY5t.no-user-message-container-KMLpE .login-button-container-RoEh7:hover {
|
||||
outline: var(--focus-outline-size) solid var(--secondary-accent-color);
|
||||
background-color: transparent;
|
||||
}
|
||||
.library-container-zM_bj .library-content-PgX4O .message-container-MhY5t.no-user-message-container-KMLpE .login-button-container-RoEh7 .label-QqYmf {
|
||||
flex-grow: 0;
|
||||
flex-shrink: 1;
|
||||
flex-basis: auto;
|
||||
max-height: 4.8em;
|
||||
font-size: 1.2rem;
|
||||
font-weight: 700;
|
||||
color: var(--primary-foreground-color);
|
||||
text-align: center;
|
||||
}
|
||||
.library-container-zM_bj .library-content-PgX4O .message-container-MhY5t .image-csRHm {
|
||||
flex: none;
|
||||
width: 12rem;
|
||||
|
|
@ -4491,12 +4569,11 @@ html.active-slider-within-NcgYf body {
|
|||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 100%;
|
||||
min-height: 100%;
|
||||
width: 100%;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.placeholder-pCQTz .title-bE4zd {
|
||||
flex: none;
|
||||
font-size: 1.75rem;
|
||||
font-weight: 400;
|
||||
text-align: center;
|
||||
|
|
@ -4504,18 +4581,20 @@ html.active-slider-within-NcgYf body {
|
|||
margin-bottom: 1rem;
|
||||
opacity: 0.5;
|
||||
}
|
||||
.placeholder-pCQTz .image-qgtvg {
|
||||
flex: none;
|
||||
height: 14rem;
|
||||
margin: 1.5rem 0;
|
||||
.placeholder-pCQTz .image-container-DOkaE {
|
||||
padding: 1.5rem 0;
|
||||
}
|
||||
.placeholder-pCQTz .image-container-DOkaE .image-qgtvg {
|
||||
height: 100%;
|
||||
max-height: 14rem;
|
||||
object-fit: contain;
|
||||
}
|
||||
.placeholder-pCQTz .overview-RGglv {
|
||||
flex: none;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
gap: 4rem;
|
||||
margin-bottom: 3rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
.placeholder-pCQTz .overview-RGglv .point-iTc1_ {
|
||||
display: flex;
|
||||
|
|
@ -4538,8 +4617,11 @@ html.active-slider-within-NcgYf body {
|
|||
color: var(--primary-foreground-color);
|
||||
opacity: 0.9;
|
||||
}
|
||||
.placeholder-pCQTz .button-DsyS9 {
|
||||
flex: none;
|
||||
.placeholder-pCQTz .button-container-fBjqZ {
|
||||
margin: 1rem 0;
|
||||
}
|
||||
.placeholder-pCQTz .button-container-fBjqZ .button-DsyS9 {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
height: 4rem;
|
||||
line-height: 4rem;
|
||||
|
|
@ -4550,21 +4632,39 @@ html.active-slider-within-NcgYf body {
|
|||
border-radius: 3.5rem;
|
||||
background-color: var(--overlay-color);
|
||||
}
|
||||
.placeholder-pCQTz .button-DsyS9:hover {
|
||||
.placeholder-pCQTz .button-container-fBjqZ .button-DsyS9:hover {
|
||||
outline: var(--focus-outline-size) solid var(--primary-foreground-color);
|
||||
background-color: transparent;
|
||||
}
|
||||
@media only screen and (max-width: 1000px) {
|
||||
.placeholder-pCQTz {
|
||||
padding: 1rem 2rem;
|
||||
}
|
||||
.placeholder-pCQTz .title-bE4zd {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.placeholder-pCQTz .image-container-DOkaE {
|
||||
padding: 1rem;
|
||||
}
|
||||
.placeholder-pCQTz .image-container-DOkaE .image-qgtvg {
|
||||
max-height: 10rem;
|
||||
}
|
||||
.placeholder-pCQTz .button-container-fBjqZ {
|
||||
margin: 1rem 0 0;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 640px) {
|
||||
.placeholder-pCQTz {
|
||||
padding: 1rem 2rem;
|
||||
}
|
||||
.placeholder-pCQTz .image-qgtvg {
|
||||
height: 10rem;
|
||||
}
|
||||
.placeholder-pCQTz .overview-RGglv {
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
}
|
||||
.placeholder-pCQTz .button-DsyS9 {
|
||||
.placeholder-pCQTz .overview-RGglv .point-iTc1_ .text-Pa9GN {
|
||||
font-size: 1rem;
|
||||
}
|
||||
.placeholder-pCQTz .button-container-fBjqZ .button-DsyS9 {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
|
@ -4580,7 +4680,7 @@ html.active-slider-within-NcgYf body {
|
|||
gap: 0.5rem;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 0 0 calc(1.5rem + var(--safe-area-inset-bottom)) 2rem;
|
||||
padding: 0 0 1.5rem 1.5rem;
|
||||
}
|
||||
.calendar-cH2jw .content-wBwrQ .main-vWt7d {
|
||||
flex: auto;
|
||||
|
|
@ -4594,11 +4694,6 @@ html.active-slider-within-NcgYf body {
|
|||
padding: 0;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 1300px) and (orientation: landscape) {
|
||||
.calendar-cH2jw .content-wBwrQ {
|
||||
padding: 0 0 calc(1.5rem + var(--safe-area-inset-bottom)) 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
.background-Xro_t {
|
||||
fill: hsl(0, 0%, 100%);
|
||||
|
|
@ -7504,7 +7599,7 @@ html:not(.active-slider-within-NcgYf) .player-container-wIELK.overlayHidden-gyjI
|
|||
color: var(--secondary-foreground-color);
|
||||
background-color: var(--primary-foreground-color);
|
||||
}
|
||||
@media only screen and (max-width: 640px) {
|
||||
@media only screen and (max-width: 1000px) {
|
||||
.intro-container-tkNS6 {
|
||||
justify-content: initial;
|
||||
padding: 3rem 1.5rem;
|
||||
|
|
@ -7525,6 +7620,16 @@ html:not(.active-slider-within-NcgYf) .player-container-wIELK.overlayHidden-gyjI
|
|||
.intro-container-tkNS6 .content-container-A1Drn {
|
||||
flex-direction: column-reverse;
|
||||
}
|
||||
.intro-container-tkNS6 .content-container-A1Drn .form-container-HMlEh,
|
||||
.intro-container-tkNS6 .content-container-A1Drn .options-container-qxboQ {
|
||||
width: 50%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.intro-container-tkNS6 .content-container-A1Drn .options-container-qxboQ {
|
||||
margin-bottom: 4rem;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 640px) {
|
||||
.intro-container-tkNS6 .content-container-A1Drn .form-container-HMlEh,
|
||||
.intro-container-tkNS6 .content-container-A1Drn .options-container-qxboQ {
|
||||
width: 100%;
|
||||
|
|
@ -7650,7 +7755,7 @@ html:not(.active-slider-within-NcgYf) .player-container-wIELK.overlayHidden-gyjI
|
|||
|
||||
@font-face {
|
||||
font-family: 'PlusJakartaSans';
|
||||
src: url(../../c5bd87aeab59a07da0fb3bf49dee1843c8923772/fonts/PlusJakartaSans.ttf) format('truetype');
|
||||
src: url(../../70da083ad5dd198154c891eb7458d8d19f70dfde/fonts/PlusJakartaSans.ttf) format('truetype');
|
||||
}
|
||||
{
|
||||
/* Copyright (C) 2017-2023 Smart code 203358507 */
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
|
After Width: | Height: | Size: 202 KiB |
|
|
@ -1 +1 @@
|
|||
<!doctype html><html><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=0,user-scalable=no,viewport-fit=cover"><meta name="apple-mobile-web-app-capable" content="yes"><meta name="apple-mobile-web-app-title" content="Stremio"><link rel="icon" type="image/x-icon" href="favicons/favicon.ico"><title>Stremio - Freedom to Stream</title><link href="c5bd87aeab59a07da0fb3bf49dee1843c8923772/styles/main.css" rel="stylesheet"><meta name="apple-mobile-web-app-title" content="Stremio Web" /><meta name="apple-mobile-web-app-capable" content="yes" /><meta name="apple-mobile-web-app-status-bar-style" content="default" /><meta name="theme-color" content="#2a2843" /><link rel="apple-touch-icon" sizes="512x512" href="./maskable_icons/icon_512x512.png" /><link rel="apple-touch-icon" sizes="196x196" href="./maskable_icons/icon_196x196.png" /><link rel="manifest" href="./manifest.json" /></head><body><div id="app"></div><script src="c5bd87aeab59a07da0fb3bf49dee1843c8923772/scripts/main.js"></script><script src="c5bd87aeab59a07da0fb3bf49dee1843c8923772/scripts/worker.js"></script><script src="//www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1"></script></body></html>
|
||||
<!doctype html><html><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=0,user-scalable=no,viewport-fit=cover"><meta name="apple-mobile-web-app-capable" content="yes"><meta name="apple-mobile-web-app-title" content="Stremio"><link rel="icon" type="image/x-icon" href="favicons/favicon.ico"><title>Stremio - Freedom to Stream</title><link href="70da083ad5dd198154c891eb7458d8d19f70dfde/styles/main.css" rel="stylesheet"><meta name="apple-mobile-web-app-title" content="Stremio Web" /><meta name="apple-mobile-web-app-capable" content="yes" /><meta name="apple-mobile-web-app-status-bar-style" content="default" /><meta name="theme-color" content="#2a2843" /><link rel="apple-touch-icon" sizes="512x512" href="./maskable_icons/icon_512x512.png" /><link rel="apple-touch-icon" sizes="196x196" href="./maskable_icons/icon_196x196.png" /><link rel="manifest" href="./manifest.json" /></head><body><div id="app"></div><script src="70da083ad5dd198154c891eb7458d8d19f70dfde/scripts/main.js"></script><script src="70da083ad5dd198154c891eb7458d8d19f70dfde/scripts/worker.js"></script><script src="//www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1"></script></body></html>
|
||||
|
|
@ -1,2 +1,2 @@
|
|||
if(!self.define){let e,a={};const i=(i,d)=>(i=new URL(i+".js",d).href,a[i]||new Promise((a=>{if("document"in self){const e=document.createElement("script");e.src=i,e.onload=a,document.head.appendChild(e)}else e=i,importScripts(i),a()})).then((()=>{let e=a[i];if(!e)throw new Error(`Module ${i} didn’t register its module`);return e})));self.define=(d,r)=>{const s=e||("document"in self?document.currentScript.src:"")||location.href;if(a[s])return;let b={};const c=e=>i(e,s),n={module:{uri:s},exports:b,require:c};a[s]=Promise.all(d.map((e=>n[e]||c(e)))).then((e=>(r(...e),b)))}}define(["./workbox-1f84e78b"],(function(e){"use strict";self.skipWaiting(),e.clientsClaim(),e.precacheAndRoute([{url:"c5bd87aeab59a07da0fb3bf49dee1843c8923772/binaries/stremio_core_web_bg.wasm",revision:"b4b3921bda2dcacaee91336a4f496697"},{url:"c5bd87aeab59a07da0fb3bf49dee1843c8923772/fonts/PlusJakartaSans.ttf",revision:"d42d5252438e0617f4fafe9c9b1eaa36"},{url:"c5bd87aeab59a07da0fb3bf49dee1843c8923772/scripts/main.js",revision:"3f4bd369043db4a805f71277e7d68da9"},{url:"c5bd87aeab59a07da0fb3bf49dee1843c8923772/scripts/worker.js",revision:"634cd1e1dd09efe87c169e76e775e08f"},{url:"c5bd87aeab59a07da0fb3bf49dee1843c8923772/styles/main.css",revision:"e5395b66f18d1e3324cf6a8a90cb9ee0"},{url:"favicons/favicon.ico",revision:"4c07b4cdba0741908240aaf0f0996231"},{url:"images/anonymous.png",revision:"14a3d1f35520016dfa7d524bc6fe00a3"},{url:"images/background_1.svg",revision:"e13e8149bc3a081ae4b19a94339d0929"},{url:"images/background_2.svg",revision:"7400a2bd6bd3a5b6ddf4d4cd12e6e1c8"},{url:"images/calendar_placeholder.png",revision:"420d4c30fb60f24bfc0b292e0ec6f8db"},{url:"images/default_avatar.png",revision:"71b1172926723433c6e5f94a1e570993"},{url:"images/empty.png",revision:"3508ea0d8cd8dd84906ff960a356b6c9"},{url:"images/icon.png",revision:"b23a3a2bbe761ce6029c564879702ad5"},{url:"images/logo.png",revision:"a747ada078440d543890a24ea9105e6d"},{url:"images/maskable_icon.png",revision:"941c7d6c4af30fd50d631032e31bbd42"},{url:"images/stremio_symbol.png",revision:"c64dbb21f02e31bc644512327ed6fe80"},{url:"index.html",revision:"7294c2800e0803de257eb720d3a0699b"},{url:"screenshots/board_narrow.webp",revision:"8329eb909f925e3658dbb7d7e6611bd1"},{url:"screenshots/board_wide.webp",revision:"506ccb23f4d5eced25b11331a10abacb"}],{})}));
|
||||
if(!self.define){let e,d={};const i=(i,r)=>(i=new URL(i+".js",r).href,d[i]||new Promise((d=>{if("document"in self){const e=document.createElement("script");e.src=i,e.onload=d,document.head.appendChild(e)}else e=i,importScripts(i),d()})).then((()=>{let e=d[i];if(!e)throw new Error(`Module ${i} didn’t register its module`);return e})));self.define=(r,a)=>{const s=e||("document"in self?document.currentScript.src:"")||location.href;if(d[s])return;let c={};const n=e=>i(e,s),f={module:{uri:s},exports:c,require:n};d[s]=Promise.all(r.map((e=>f[e]||n(e)))).then((e=>(a(...e),c)))}}define(["./workbox-1f84e78b"],(function(e){"use strict";self.skipWaiting(),e.clientsClaim(),e.precacheAndRoute([{url:"70da083ad5dd198154c891eb7458d8d19f70dfde/binaries/stremio_core_web_bg.wasm",revision:"5feea51244f925e877755e038fffaf8c"},{url:"70da083ad5dd198154c891eb7458d8d19f70dfde/fonts/PlusJakartaSans.ttf",revision:"d42d5252438e0617f4fafe9c9b1eaa36"},{url:"70da083ad5dd198154c891eb7458d8d19f70dfde/scripts/main.js",revision:"4dfe825fd5e1b559de5184f8313bbf5e"},{url:"70da083ad5dd198154c891eb7458d8d19f70dfde/scripts/worker.js",revision:"2e3410902e8034ef998596c5f6b6683c"},{url:"70da083ad5dd198154c891eb7458d8d19f70dfde/styles/main.css",revision:"ed75731d9a88521b0cf64610c2bc7907"},{url:"favicons/favicon.ico",revision:"4c07b4cdba0741908240aaf0f0996231"},{url:"images/anonymous.png",revision:"14a3d1f35520016dfa7d524bc6fe00a3"},{url:"images/background_1.svg",revision:"e13e8149bc3a081ae4b19a94339d0929"},{url:"images/background_2.svg",revision:"7400a2bd6bd3a5b6ddf4d4cd12e6e1c8"},{url:"images/calendar_placeholder.png",revision:"420d4c30fb60f24bfc0b292e0ec6f8db"},{url:"images/default_avatar.png",revision:"71b1172926723433c6e5f94a1e570993"},{url:"images/empty.png",revision:"3508ea0d8cd8dd84906ff960a356b6c9"},{url:"images/icon.png",revision:"b23a3a2bbe761ce6029c564879702ad5"},{url:"images/library_placeholder.png",revision:"47355825e2c3f3e5bcc80d204f0156c8"},{url:"images/logo.png",revision:"a747ada078440d543890a24ea9105e6d"},{url:"images/maskable_icon.png",revision:"941c7d6c4af30fd50d631032e31bbd42"},{url:"images/stremio_symbol.png",revision:"c64dbb21f02e31bc644512327ed6fe80"},{url:"index.html",revision:"a0e20108766f82277a9786f9c325df50"},{url:"screenshots/board_narrow.webp",revision:"8329eb909f925e3658dbb7d7e6611bd1"},{url:"screenshots/board_wide.webp",revision:"506ccb23f4d5eced25b11331a10abacb"}],{})}));
|
||||
//# sourceMappingURL=service-worker.js.map
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"version":3,"file":"service-worker.js","sources":["../../../../../tmp/0a188882a6d6967e6690ff772c6e9901/service-worker.js"],"sourcesContent":["import {clientsClaim as workbox_core_clientsClaim} from '/home/runner/work/stremio-web/stremio-web/node_modules/workbox-core/clientsClaim.mjs';\nimport {precacheAndRoute as workbox_precaching_precacheAndRoute} from '/home/runner/work/stremio-web/stremio-web/node_modules/workbox-precaching/precacheAndRoute.mjs';/**\n * Welcome to your Workbox-powered service worker!\n *\n * You'll need to register this file in your web app.\n * See https://goo.gl/nhQhGp\n *\n * The rest of the code is auto-generated. Please don't update this file\n * directly; instead, make changes to your Workbox build configuration\n * and re-run your build process.\n * See https://goo.gl/2aRDsh\n */\n\n\n\n\n\n\n\n\nself.skipWaiting();\n\nworkbox_core_clientsClaim();\n\n\n/**\n * The precacheAndRoute() method efficiently caches and responds to\n * requests for URLs in the manifest.\n * See https://goo.gl/S9QRab\n */\nworkbox_precaching_precacheAndRoute([\n {\n \"url\": \"c5bd87aeab59a07da0fb3bf49dee1843c8923772/binaries/stremio_core_web_bg.wasm\",\n \"revision\": \"b4b3921bda2dcacaee91336a4f496697\"\n },\n {\n \"url\": \"c5bd87aeab59a07da0fb3bf49dee1843c8923772/fonts/PlusJakartaSans.ttf\",\n \"revision\": \"d42d5252438e0617f4fafe9c9b1eaa36\"\n },\n {\n \"url\": \"c5bd87aeab59a07da0fb3bf49dee1843c8923772/scripts/main.js\",\n \"revision\": \"3f4bd369043db4a805f71277e7d68da9\"\n },\n {\n \"url\": \"c5bd87aeab59a07da0fb3bf49dee1843c8923772/scripts/worker.js\",\n \"revision\": \"634cd1e1dd09efe87c169e76e775e08f\"\n },\n {\n \"url\": \"c5bd87aeab59a07da0fb3bf49dee1843c8923772/styles/main.css\",\n \"revision\": \"e5395b66f18d1e3324cf6a8a90cb9ee0\"\n },\n {\n \"url\": \"favicons/favicon.ico\",\n \"revision\": \"4c07b4cdba0741908240aaf0f0996231\"\n },\n {\n \"url\": \"images/anonymous.png\",\n \"revision\": \"14a3d1f35520016dfa7d524bc6fe00a3\"\n },\n {\n \"url\": \"images/background_1.svg\",\n \"revision\": \"e13e8149bc3a081ae4b19a94339d0929\"\n },\n {\n \"url\": \"images/background_2.svg\",\n \"revision\": \"7400a2bd6bd3a5b6ddf4d4cd12e6e1c8\"\n },\n {\n \"url\": \"images/calendar_placeholder.png\",\n \"revision\": \"420d4c30fb60f24bfc0b292e0ec6f8db\"\n },\n {\n \"url\": \"images/default_avatar.png\",\n \"revision\": \"71b1172926723433c6e5f94a1e570993\"\n },\n {\n \"url\": \"images/empty.png\",\n \"revision\": \"3508ea0d8cd8dd84906ff960a356b6c9\"\n },\n {\n \"url\": \"images/icon.png\",\n \"revision\": \"b23a3a2bbe761ce6029c564879702ad5\"\n },\n {\n \"url\": \"images/logo.png\",\n \"revision\": \"a747ada078440d543890a24ea9105e6d\"\n },\n {\n \"url\": \"images/maskable_icon.png\",\n \"revision\": \"941c7d6c4af30fd50d631032e31bbd42\"\n },\n {\n \"url\": \"images/stremio_symbol.png\",\n \"revision\": \"c64dbb21f02e31bc644512327ed6fe80\"\n },\n {\n \"url\": \"index.html\",\n \"revision\": \"7294c2800e0803de257eb720d3a0699b\"\n },\n {\n \"url\": \"screenshots/board_narrow.webp\",\n \"revision\": \"8329eb909f925e3658dbb7d7e6611bd1\"\n },\n {\n \"url\": \"screenshots/board_wide.webp\",\n \"revision\": \"506ccb23f4d5eced25b11331a10abacb\"\n }\n], {});\n\n\n\n\n\n\n\n\n"],"names":["self","skipWaiting","workbox_core_clientsClaim","workbox_precaching_precacheAndRoute","url","revision"],"mappings":"0nBAoBAA,KAAKC,cAELC,EAAAA,eAQAC,EAAAA,iBAAoC,CAClC,CACEC,IAAO,6EACPC,SAAY,oCAEd,CACED,IAAO,qEACPC,SAAY,oCAEd,CACED,IAAO,2DACPC,SAAY,oCAEd,CACED,IAAO,6DACPC,SAAY,oCAEd,CACED,IAAO,2DACPC,SAAY,oCAEd,CACED,IAAO,uBACPC,SAAY,oCAEd,CACED,IAAO,uBACPC,SAAY,oCAEd,CACED,IAAO,0BACPC,SAAY,oCAEd,CACED,IAAO,0BACPC,SAAY,oCAEd,CACED,IAAO,kCACPC,SAAY,oCAEd,CACED,IAAO,4BACPC,SAAY,oCAEd,CACED,IAAO,mBACPC,SAAY,oCAEd,CACED,IAAO,kBACPC,SAAY,oCAEd,CACED,IAAO,kBACPC,SAAY,oCAEd,CACED,IAAO,2BACPC,SAAY,oCAEd,CACED,IAAO,4BACPC,SAAY,oCAEd,CACED,IAAO,aACPC,SAAY,oCAEd,CACED,IAAO,gCACPC,SAAY,oCAEd,CACED,IAAO,8BACPC,SAAY,qCAEb,CAAA"}
|
||||
{"version":3,"file":"service-worker.js","sources":["../../../../../tmp/f5256ebf2e07fe6de6b40de3bbf482a8/service-worker.js"],"sourcesContent":["import {clientsClaim as workbox_core_clientsClaim} from '/home/runner/work/stremio-web/stremio-web/node_modules/workbox-core/clientsClaim.mjs';\nimport {precacheAndRoute as workbox_precaching_precacheAndRoute} from '/home/runner/work/stremio-web/stremio-web/node_modules/workbox-precaching/precacheAndRoute.mjs';/**\n * Welcome to your Workbox-powered service worker!\n *\n * You'll need to register this file in your web app.\n * See https://goo.gl/nhQhGp\n *\n * The rest of the code is auto-generated. Please don't update this file\n * directly; instead, make changes to your Workbox build configuration\n * and re-run your build process.\n * See https://goo.gl/2aRDsh\n */\n\n\n\n\n\n\n\n\nself.skipWaiting();\n\nworkbox_core_clientsClaim();\n\n\n/**\n * The precacheAndRoute() method efficiently caches and responds to\n * requests for URLs in the manifest.\n * See https://goo.gl/S9QRab\n */\nworkbox_precaching_precacheAndRoute([\n {\n \"url\": \"70da083ad5dd198154c891eb7458d8d19f70dfde/binaries/stremio_core_web_bg.wasm\",\n \"revision\": \"5feea51244f925e877755e038fffaf8c\"\n },\n {\n \"url\": \"70da083ad5dd198154c891eb7458d8d19f70dfde/fonts/PlusJakartaSans.ttf\",\n \"revision\": \"d42d5252438e0617f4fafe9c9b1eaa36\"\n },\n {\n \"url\": \"70da083ad5dd198154c891eb7458d8d19f70dfde/scripts/main.js\",\n \"revision\": \"4dfe825fd5e1b559de5184f8313bbf5e\"\n },\n {\n \"url\": \"70da083ad5dd198154c891eb7458d8d19f70dfde/scripts/worker.js\",\n \"revision\": \"2e3410902e8034ef998596c5f6b6683c\"\n },\n {\n \"url\": \"70da083ad5dd198154c891eb7458d8d19f70dfde/styles/main.css\",\n \"revision\": \"ed75731d9a88521b0cf64610c2bc7907\"\n },\n {\n \"url\": \"favicons/favicon.ico\",\n \"revision\": \"4c07b4cdba0741908240aaf0f0996231\"\n },\n {\n \"url\": \"images/anonymous.png\",\n \"revision\": \"14a3d1f35520016dfa7d524bc6fe00a3\"\n },\n {\n \"url\": \"images/background_1.svg\",\n \"revision\": \"e13e8149bc3a081ae4b19a94339d0929\"\n },\n {\n \"url\": \"images/background_2.svg\",\n \"revision\": \"7400a2bd6bd3a5b6ddf4d4cd12e6e1c8\"\n },\n {\n \"url\": \"images/calendar_placeholder.png\",\n \"revision\": \"420d4c30fb60f24bfc0b292e0ec6f8db\"\n },\n {\n \"url\": \"images/default_avatar.png\",\n \"revision\": \"71b1172926723433c6e5f94a1e570993\"\n },\n {\n \"url\": \"images/empty.png\",\n \"revision\": \"3508ea0d8cd8dd84906ff960a356b6c9\"\n },\n {\n \"url\": \"images/icon.png\",\n \"revision\": \"b23a3a2bbe761ce6029c564879702ad5\"\n },\n {\n \"url\": \"images/library_placeholder.png\",\n \"revision\": \"47355825e2c3f3e5bcc80d204f0156c8\"\n },\n {\n \"url\": \"images/logo.png\",\n \"revision\": \"a747ada078440d543890a24ea9105e6d\"\n },\n {\n \"url\": \"images/maskable_icon.png\",\n \"revision\": \"941c7d6c4af30fd50d631032e31bbd42\"\n },\n {\n \"url\": \"images/stremio_symbol.png\",\n \"revision\": \"c64dbb21f02e31bc644512327ed6fe80\"\n },\n {\n \"url\": \"index.html\",\n \"revision\": \"a0e20108766f82277a9786f9c325df50\"\n },\n {\n \"url\": \"screenshots/board_narrow.webp\",\n \"revision\": \"8329eb909f925e3658dbb7d7e6611bd1\"\n },\n {\n \"url\": \"screenshots/board_wide.webp\",\n \"revision\": \"506ccb23f4d5eced25b11331a10abacb\"\n }\n], {});\n\n\n\n\n\n\n\n\n"],"names":["self","skipWaiting","workbox_core_clientsClaim","workbox_precaching_precacheAndRoute","url","revision"],"mappings":"0nBAoBAA,KAAKC,cAELC,EAAAA,eAQAC,EAAAA,iBAAoC,CAClC,CACEC,IAAO,6EACPC,SAAY,oCAEd,CACED,IAAO,qEACPC,SAAY,oCAEd,CACED,IAAO,2DACPC,SAAY,oCAEd,CACED,IAAO,6DACPC,SAAY,oCAEd,CACED,IAAO,2DACPC,SAAY,oCAEd,CACED,IAAO,uBACPC,SAAY,oCAEd,CACED,IAAO,uBACPC,SAAY,oCAEd,CACED,IAAO,0BACPC,SAAY,oCAEd,CACED,IAAO,0BACPC,SAAY,oCAEd,CACED,IAAO,kCACPC,SAAY,oCAEd,CACED,IAAO,4BACPC,SAAY,oCAEd,CACED,IAAO,mBACPC,SAAY,oCAEd,CACED,IAAO,kBACPC,SAAY,oCAEd,CACED,IAAO,iCACPC,SAAY,oCAEd,CACED,IAAO,kBACPC,SAAY,oCAEd,CACED,IAAO,2BACPC,SAAY,oCAEd,CACED,IAAO,4BACPC,SAAY,oCAEd,CACED,IAAO,aACPC,SAAY,oCAEd,CACED,IAAO,gCACPC,SAAY,oCAEd,CACED,IAAO,8BACPC,SAAY,qCAEb,CAAA"}
|
||||
Loading…
Reference in a new issue