├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── Dockerfile ├── README.md ├── astro.config.mjs ├── index.js ├── jampack.config.mjs ├── package.json ├── pnpm-lock.yaml ├── public ├── Blob.svg ├── Fullscreen.svg ├── Popout.svg ├── aero.js ├── font │ ├── MajorMonoDisplay-Webfont.woff2 │ ├── font.css │ ├── one.woff │ ├── three.woff │ └── two.woff ├── google.ico ├── icon.png ├── icons │ ├── edpuzzle.png │ ├── games │ │ ├── 2048.png │ │ ├── Flappy_Bird_icon.png │ │ ├── Holiday_Gift.png │ │ ├── banner.png │ │ ├── bloonstd.jpeg │ │ ├── bloonstd2.png │ │ ├── cookie1.jpeg │ │ ├── cover-start.jpeg │ │ ├── ctrTR.png │ │ ├── download.jpeg │ │ ├── download.png │ │ ├── duck.png │ │ ├── ducklife.png │ │ ├── ducklife2.png │ │ ├── emujs.png │ │ ├── gb.png │ │ ├── gba.png │ │ ├── gbc.png │ │ ├── geoscratchicon.png │ │ ├── icon-512x512.png │ │ ├── icon.jpeg │ │ ├── impossiblequiz.png │ │ ├── index.jpeg │ │ ├── jetpack.jpeg │ │ ├── learn-to-fly-2.jpeg │ │ ├── learntofly.png │ │ ├── logo.jpeg │ │ ├── logo.png │ │ ├── logo_512x512.png │ │ ├── moto-x3m-pool-party-icon.png │ │ ├── motoOG.jpeg │ │ ├── motopool.jpeg │ │ ├── n64.jpg │ │ ├── nds.jpg │ │ ├── nes.jpg │ │ ├── red.png │ │ ├── segaMD.jpg │ │ ├── slope4.jpeg │ │ ├── snes.jpg │ │ ├── splash.jpeg │ │ ├── splash.png │ │ ├── stealingthediamond.jpeg │ │ └── thumbnail.png │ ├── google.png │ ├── googleclassroom.png │ ├── googledrive.png │ └── powerschool.png ├── js │ ├── bareServer.js │ ├── encoder.js │ ├── gamebuttons.js │ ├── inject.js │ ├── loader.js │ ├── mlib │ │ ├── albuminfo.js │ │ ├── jsmediatags.min.js │ │ └── quick.js │ ├── omnibox.js │ ├── scripts │ │ ├── 3.js │ │ ├── adBlocker.js │ │ ├── bingAI.js │ │ └── darkMode.js │ ├── settings.js │ ├── sw.js │ └── ui.js ├── mlib │ ├── default.jpg │ └── icon.png ├── robots.txt ├── send-icon.png ├── send-icon.svg ├── sw.js ├── sw │ ├── aero │ │ ├── bare.js │ │ ├── client │ │ │ ├── el.js │ │ │ ├── element.js │ │ │ ├── eval.js │ │ │ ├── http.js │ │ │ └── ws.js │ │ ├── config.js │ │ ├── css.js │ │ ├── headers.js │ │ ├── url.js │ │ └── worker.js │ ├── dynamic │ │ ├── dynamic.client.js │ │ ├── dynamic.config.js │ │ ├── dynamic.handler.js │ │ ├── dynamic.html.js │ │ └── dynamic.worker.js │ ├── main.js │ └── uv │ │ ├── uv.bundle.js │ │ ├── uv.client.js │ │ ├── uv.config.js │ │ ├── uv.handler.js │ │ └── uv.sw.js ├── tab-filler.png └── theme.svg ├── src ├── assets │ └── img │ │ ├── Aero.png │ │ ├── Dynamic.png │ │ ├── Rammerhead.png │ │ ├── Ultraviolet.png │ │ ├── chatgpt.png │ │ ├── icons │ │ ├── edpuzzle.png │ │ ├── google.png │ │ ├── googleclassroom.png │ │ ├── googledrive.png │ │ └── powerschool.png │ │ ├── logo.png │ │ ├── tn.png │ │ └── whiskers.png ├── bare.json ├── components │ ├── Analytics.astro │ ├── Burger.astro │ ├── Consts.ts │ ├── Icons │ │ ├── Icon.astro │ │ ├── OpenExternalIcon.astro │ │ └── Star.astro │ ├── Img.astro │ ├── NebulaLogo.astro │ ├── Notification.astro │ ├── Obfuscated.astro │ ├── Preset.astro │ ├── Search.astro │ ├── Section.astro │ └── burger.css ├── emulators.json ├── env.d.ts ├── error.css ├── games.json ├── js │ ├── cookie.js │ ├── editor.js │ ├── notify.js │ ├── proxyCompletions.js │ └── router.js ├── layouts │ ├── Layout.astro │ ├── Plugins.astro │ └── Settings.astro ├── middleware.js ├── pages │ ├── 404.astro │ ├── ai.astro │ ├── album.astro │ ├── bare.json.js │ ├── changelog.astro │ ├── games.astro │ ├── games │ │ ├── [id].astro │ │ ├── emulators.astro │ │ └── emulators │ │ │ └── [id].astro │ ├── index.astro │ ├── music.astro │ ├── plugins.astro │ ├── plugins │ │ ├── scripts.astro │ │ └── themes.astro │ ├── privacy.md │ ├── settings.astro │ ├── settings │ │ ├── cloaking.astro │ │ ├── general.astro │ │ ├── privacy.astro │ │ ├── theme.astro │ │ └── unblock.astro │ └── terms.md ├── scripts │ ├── global.ts │ ├── polyfills.ts │ ├── themeRuntime.ts │ └── util.ts ├── sections │ ├── Footer.astro │ ├── Header.astro │ ├── Tabs.astro │ ├── footer.css │ ├── header.css │ ├── switch.css │ └── tabs.css ├── style │ ├── ai.css │ ├── changelog.css │ ├── global.css │ ├── index.css │ ├── mlib │ │ ├── library.css │ │ ├── style.css │ │ └── themes.css │ ├── plugins.css │ ├── settings.css │ └── style.css └── styles.css ├── tailwind.config.cjs └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | public/sw/*/ 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/index.js -------------------------------------------------------------------------------- /jampack.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/jampack.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/Blob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/Blob.svg -------------------------------------------------------------------------------- /public/Fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/Fullscreen.svg -------------------------------------------------------------------------------- /public/Popout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/Popout.svg -------------------------------------------------------------------------------- /public/aero.js: -------------------------------------------------------------------------------- 1 | importScripts("./sw/aero/worker.js"); 2 | -------------------------------------------------------------------------------- /public/font/MajorMonoDisplay-Webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/font/MajorMonoDisplay-Webfont.woff2 -------------------------------------------------------------------------------- /public/font/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/font/font.css -------------------------------------------------------------------------------- /public/font/one.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/font/one.woff -------------------------------------------------------------------------------- /public/font/three.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/font/three.woff -------------------------------------------------------------------------------- /public/font/two.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/font/two.woff -------------------------------------------------------------------------------- /public/google.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/google.ico -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/icons/edpuzzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/edpuzzle.png -------------------------------------------------------------------------------- /public/icons/games/2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/2048.png -------------------------------------------------------------------------------- /public/icons/games/Flappy_Bird_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/Flappy_Bird_icon.png -------------------------------------------------------------------------------- /public/icons/games/Holiday_Gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/Holiday_Gift.png -------------------------------------------------------------------------------- /public/icons/games/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/banner.png -------------------------------------------------------------------------------- /public/icons/games/bloonstd.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/bloonstd.jpeg -------------------------------------------------------------------------------- /public/icons/games/bloonstd2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/bloonstd2.png -------------------------------------------------------------------------------- /public/icons/games/cookie1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/cookie1.jpeg -------------------------------------------------------------------------------- /public/icons/games/cover-start.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/cover-start.jpeg -------------------------------------------------------------------------------- /public/icons/games/ctrTR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/ctrTR.png -------------------------------------------------------------------------------- /public/icons/games/download.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/download.jpeg -------------------------------------------------------------------------------- /public/icons/games/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/download.png -------------------------------------------------------------------------------- /public/icons/games/duck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/duck.png -------------------------------------------------------------------------------- /public/icons/games/ducklife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/ducklife.png -------------------------------------------------------------------------------- /public/icons/games/ducklife2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/ducklife2.png -------------------------------------------------------------------------------- /public/icons/games/emujs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/emujs.png -------------------------------------------------------------------------------- /public/icons/games/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/gb.png -------------------------------------------------------------------------------- /public/icons/games/gba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/gba.png -------------------------------------------------------------------------------- /public/icons/games/gbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/gbc.png -------------------------------------------------------------------------------- /public/icons/games/geoscratchicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/geoscratchicon.png -------------------------------------------------------------------------------- /public/icons/games/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/icon-512x512.png -------------------------------------------------------------------------------- /public/icons/games/icon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/icon.jpeg -------------------------------------------------------------------------------- /public/icons/games/impossiblequiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/impossiblequiz.png -------------------------------------------------------------------------------- /public/icons/games/index.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/index.jpeg -------------------------------------------------------------------------------- /public/icons/games/jetpack.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/jetpack.jpeg -------------------------------------------------------------------------------- /public/icons/games/learn-to-fly-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/learn-to-fly-2.jpeg -------------------------------------------------------------------------------- /public/icons/games/learntofly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/learntofly.png -------------------------------------------------------------------------------- /public/icons/games/logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/logo.jpeg -------------------------------------------------------------------------------- /public/icons/games/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/logo.png -------------------------------------------------------------------------------- /public/icons/games/logo_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/logo_512x512.png -------------------------------------------------------------------------------- /public/icons/games/moto-x3m-pool-party-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/moto-x3m-pool-party-icon.png -------------------------------------------------------------------------------- /public/icons/games/motoOG.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/motoOG.jpeg -------------------------------------------------------------------------------- /public/icons/games/motopool.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/motopool.jpeg -------------------------------------------------------------------------------- /public/icons/games/n64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/n64.jpg -------------------------------------------------------------------------------- /public/icons/games/nds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/nds.jpg -------------------------------------------------------------------------------- /public/icons/games/nes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/nes.jpg -------------------------------------------------------------------------------- /public/icons/games/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/red.png -------------------------------------------------------------------------------- /public/icons/games/segaMD.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/segaMD.jpg -------------------------------------------------------------------------------- /public/icons/games/slope4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/slope4.jpeg -------------------------------------------------------------------------------- /public/icons/games/snes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/snes.jpg -------------------------------------------------------------------------------- /public/icons/games/splash.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/splash.jpeg -------------------------------------------------------------------------------- /public/icons/games/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/splash.png -------------------------------------------------------------------------------- /public/icons/games/stealingthediamond.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/stealingthediamond.jpeg -------------------------------------------------------------------------------- /public/icons/games/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/games/thumbnail.png -------------------------------------------------------------------------------- /public/icons/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/google.png -------------------------------------------------------------------------------- /public/icons/googleclassroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/googleclassroom.png -------------------------------------------------------------------------------- /public/icons/googledrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/googledrive.png -------------------------------------------------------------------------------- /public/icons/powerschool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/icons/powerschool.png -------------------------------------------------------------------------------- /public/js/bareServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/js/bareServer.js -------------------------------------------------------------------------------- /public/js/encoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/js/encoder.js -------------------------------------------------------------------------------- /public/js/gamebuttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/js/gamebuttons.js -------------------------------------------------------------------------------- /public/js/inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/js/inject.js -------------------------------------------------------------------------------- /public/js/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/js/loader.js -------------------------------------------------------------------------------- /public/js/mlib/albuminfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/js/mlib/albuminfo.js -------------------------------------------------------------------------------- /public/js/mlib/jsmediatags.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/js/mlib/jsmediatags.min.js -------------------------------------------------------------------------------- /public/js/mlib/quick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/js/mlib/quick.js -------------------------------------------------------------------------------- /public/js/omnibox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/js/omnibox.js -------------------------------------------------------------------------------- /public/js/scripts/3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/js/scripts/3.js -------------------------------------------------------------------------------- /public/js/scripts/adBlocker.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/js/scripts/bingAI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/js/scripts/bingAI.js -------------------------------------------------------------------------------- /public/js/scripts/darkMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/js/scripts/darkMode.js -------------------------------------------------------------------------------- /public/js/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/js/settings.js -------------------------------------------------------------------------------- /public/js/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/js/sw.js -------------------------------------------------------------------------------- /public/js/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/js/ui.js -------------------------------------------------------------------------------- /public/mlib/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/mlib/default.jpg -------------------------------------------------------------------------------- /public/mlib/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/mlib/icon.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/send-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/send-icon.png -------------------------------------------------------------------------------- /public/send-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/send-icon.svg -------------------------------------------------------------------------------- /public/sw.js: -------------------------------------------------------------------------------- 1 | importScripts("/sw/main.js"); 2 | -------------------------------------------------------------------------------- /public/sw/aero/bare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/sw/aero/bare.js -------------------------------------------------------------------------------- /public/sw/aero/client/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/sw/aero/client/el.js -------------------------------------------------------------------------------- /public/sw/aero/client/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/sw/aero/client/element.js -------------------------------------------------------------------------------- /public/sw/aero/client/eval.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/sw/aero/client/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/sw/aero/client/http.js -------------------------------------------------------------------------------- /public/sw/aero/client/ws.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/sw/aero/client/ws.js -------------------------------------------------------------------------------- /public/sw/aero/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/sw/aero/config.js -------------------------------------------------------------------------------- /public/sw/aero/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/sw/aero/css.js -------------------------------------------------------------------------------- /public/sw/aero/headers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/sw/aero/headers.js -------------------------------------------------------------------------------- /public/sw/aero/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/sw/aero/url.js -------------------------------------------------------------------------------- /public/sw/aero/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/sw/aero/worker.js -------------------------------------------------------------------------------- /public/sw/dynamic/dynamic.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/sw/dynamic/dynamic.client.js -------------------------------------------------------------------------------- /public/sw/dynamic/dynamic.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/sw/dynamic/dynamic.config.js -------------------------------------------------------------------------------- /public/sw/dynamic/dynamic.handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/sw/dynamic/dynamic.handler.js -------------------------------------------------------------------------------- /public/sw/dynamic/dynamic.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/sw/dynamic/dynamic.html.js -------------------------------------------------------------------------------- /public/sw/dynamic/dynamic.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/sw/dynamic/dynamic.worker.js -------------------------------------------------------------------------------- /public/sw/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/sw/main.js -------------------------------------------------------------------------------- /public/sw/uv/uv.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/sw/uv/uv.bundle.js -------------------------------------------------------------------------------- /public/sw/uv/uv.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/sw/uv/uv.client.js -------------------------------------------------------------------------------- /public/sw/uv/uv.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/sw/uv/uv.config.js -------------------------------------------------------------------------------- /public/sw/uv/uv.handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/sw/uv/uv.handler.js -------------------------------------------------------------------------------- /public/sw/uv/uv.sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/sw/uv/uv.sw.js -------------------------------------------------------------------------------- /public/tab-filler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/tab-filler.png -------------------------------------------------------------------------------- /public/theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/public/theme.svg -------------------------------------------------------------------------------- /src/assets/img/Aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/assets/img/Aero.png -------------------------------------------------------------------------------- /src/assets/img/Dynamic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/assets/img/Dynamic.png -------------------------------------------------------------------------------- /src/assets/img/Rammerhead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/assets/img/Rammerhead.png -------------------------------------------------------------------------------- /src/assets/img/Ultraviolet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/assets/img/Ultraviolet.png -------------------------------------------------------------------------------- /src/assets/img/chatgpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/assets/img/chatgpt.png -------------------------------------------------------------------------------- /src/assets/img/icons/edpuzzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/assets/img/icons/edpuzzle.png -------------------------------------------------------------------------------- /src/assets/img/icons/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/assets/img/icons/google.png -------------------------------------------------------------------------------- /src/assets/img/icons/googleclassroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/assets/img/icons/googleclassroom.png -------------------------------------------------------------------------------- /src/assets/img/icons/googledrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/assets/img/icons/googledrive.png -------------------------------------------------------------------------------- /src/assets/img/icons/powerschool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/assets/img/icons/powerschool.png -------------------------------------------------------------------------------- /src/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/assets/img/logo.png -------------------------------------------------------------------------------- /src/assets/img/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/assets/img/tn.png -------------------------------------------------------------------------------- /src/assets/img/whiskers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/assets/img/whiskers.png -------------------------------------------------------------------------------- /src/bare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/bare.json -------------------------------------------------------------------------------- /src/components/Analytics.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/components/Analytics.astro -------------------------------------------------------------------------------- /src/components/Burger.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/components/Burger.astro -------------------------------------------------------------------------------- /src/components/Consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/components/Consts.ts -------------------------------------------------------------------------------- /src/components/Icons/Icon.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/components/Icons/Icon.astro -------------------------------------------------------------------------------- /src/components/Icons/OpenExternalIcon.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/components/Icons/OpenExternalIcon.astro -------------------------------------------------------------------------------- /src/components/Icons/Star.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/components/Icons/Star.astro -------------------------------------------------------------------------------- /src/components/Img.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/components/Img.astro -------------------------------------------------------------------------------- /src/components/NebulaLogo.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/components/NebulaLogo.astro -------------------------------------------------------------------------------- /src/components/Notification.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/components/Notification.astro -------------------------------------------------------------------------------- /src/components/Obfuscated.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/components/Obfuscated.astro -------------------------------------------------------------------------------- /src/components/Preset.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/components/Preset.astro -------------------------------------------------------------------------------- /src/components/Search.astro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Section.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/components/Section.astro -------------------------------------------------------------------------------- /src/components/burger.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/components/burger.css -------------------------------------------------------------------------------- /src/emulators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/emulators.json -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/error.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/error.css -------------------------------------------------------------------------------- /src/games.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/games.json -------------------------------------------------------------------------------- /src/js/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/js/cookie.js -------------------------------------------------------------------------------- /src/js/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/js/editor.js -------------------------------------------------------------------------------- /src/js/notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/js/notify.js -------------------------------------------------------------------------------- /src/js/proxyCompletions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/js/proxyCompletions.js -------------------------------------------------------------------------------- /src/js/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/js/router.js -------------------------------------------------------------------------------- /src/layouts/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/layouts/Layout.astro -------------------------------------------------------------------------------- /src/layouts/Plugins.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/layouts/Plugins.astro -------------------------------------------------------------------------------- /src/layouts/Settings.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/layouts/Settings.astro -------------------------------------------------------------------------------- /src/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/middleware.js -------------------------------------------------------------------------------- /src/pages/404.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/pages/404.astro -------------------------------------------------------------------------------- /src/pages/ai.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/pages/ai.astro -------------------------------------------------------------------------------- /src/pages/album.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/pages/album.astro -------------------------------------------------------------------------------- /src/pages/bare.json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/pages/bare.json.js -------------------------------------------------------------------------------- /src/pages/changelog.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/pages/changelog.astro -------------------------------------------------------------------------------- /src/pages/games.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/pages/games.astro -------------------------------------------------------------------------------- /src/pages/games/[id].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/pages/games/[id].astro -------------------------------------------------------------------------------- /src/pages/games/emulators.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/pages/games/emulators.astro -------------------------------------------------------------------------------- /src/pages/games/emulators/[id].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/pages/games/emulators/[id].astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/pages/music.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/pages/music.astro -------------------------------------------------------------------------------- /src/pages/plugins.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/pages/plugins.astro -------------------------------------------------------------------------------- /src/pages/plugins/scripts.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/pages/plugins/scripts.astro -------------------------------------------------------------------------------- /src/pages/plugins/themes.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/pages/plugins/themes.astro -------------------------------------------------------------------------------- /src/pages/privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/pages/privacy.md -------------------------------------------------------------------------------- /src/pages/settings.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/pages/settings.astro -------------------------------------------------------------------------------- /src/pages/settings/cloaking.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/pages/settings/cloaking.astro -------------------------------------------------------------------------------- /src/pages/settings/general.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/pages/settings/general.astro -------------------------------------------------------------------------------- /src/pages/settings/privacy.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/pages/settings/privacy.astro -------------------------------------------------------------------------------- /src/pages/settings/theme.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/pages/settings/theme.astro -------------------------------------------------------------------------------- /src/pages/settings/unblock.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/pages/settings/unblock.astro -------------------------------------------------------------------------------- /src/pages/terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/pages/terms.md -------------------------------------------------------------------------------- /src/scripts/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/scripts/global.ts -------------------------------------------------------------------------------- /src/scripts/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/scripts/polyfills.ts -------------------------------------------------------------------------------- /src/scripts/themeRuntime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/scripts/themeRuntime.ts -------------------------------------------------------------------------------- /src/scripts/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/scripts/util.ts -------------------------------------------------------------------------------- /src/sections/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/sections/Footer.astro -------------------------------------------------------------------------------- /src/sections/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/sections/Header.astro -------------------------------------------------------------------------------- /src/sections/Tabs.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/sections/Tabs.astro -------------------------------------------------------------------------------- /src/sections/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/sections/footer.css -------------------------------------------------------------------------------- /src/sections/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/sections/header.css -------------------------------------------------------------------------------- /src/sections/switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/sections/switch.css -------------------------------------------------------------------------------- /src/sections/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/sections/tabs.css -------------------------------------------------------------------------------- /src/style/ai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/style/ai.css -------------------------------------------------------------------------------- /src/style/changelog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/style/changelog.css -------------------------------------------------------------------------------- /src/style/global.css: -------------------------------------------------------------------------------- 1 | #monaco-editor * { 2 | font-size: 14px; 3 | } -------------------------------------------------------------------------------- /src/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/style/index.css -------------------------------------------------------------------------------- /src/style/mlib/library.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/style/mlib/library.css -------------------------------------------------------------------------------- /src/style/mlib/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/style/mlib/style.css -------------------------------------------------------------------------------- /src/style/mlib/themes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/style/mlib/themes.css -------------------------------------------------------------------------------- /src/style/plugins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/style/plugins.css -------------------------------------------------------------------------------- /src/style/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/style/settings.css -------------------------------------------------------------------------------- /src/style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/style/style.css -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/src/styles.css -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NebulaServices/Noctura/HEAD/tsconfig.json --------------------------------------------------------------------------------