├── .erb ├── configs │ ├── .eslintrc │ ├── webpack.config.base.ts │ ├── webpack.config.eslint.ts │ ├── webpack.config.main.prod.ts │ ├── webpack.config.preload.dev.ts │ ├── webpack.config.renderer.dev.dll.ts │ ├── webpack.config.renderer.dev.ts │ ├── webpack.config.renderer.prod.ts │ └── webpack.paths.ts ├── img │ ├── erb-banner.svg │ ├── erb-logo.png │ └── palette-sponsor-banner.svg ├── mocks │ └── fileMock.js └── scripts │ ├── .eslintrc │ ├── check-build-exists.ts │ ├── check-native-dep.js │ ├── check-node-env.js │ ├── check-port-in-use.js │ ├── clean.js │ ├── delete-source-maps.js │ ├── electron-rebuild.js │ └── link-modules.ts ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── 1-Bug_report.md │ ├── 2-Question.md │ └── 3-Feature_request.md ├── config.yml ├── stale.yml └── workflows │ ├── codeql-analysis.yml │ └── publish.yml ├── .gitignore ├── .npmrc ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets ├── assets.d.ts ├── entitlements.mac.plist ├── icon.icns ├── icon.ico ├── icon.png └── icons │ ├── 1024x1024.png │ ├── 128x128.png │ ├── 16x16.png │ ├── 24x24.png │ ├── 256x256.png │ ├── 32x32.png │ ├── 48x48.png │ ├── 512x512.png │ └── 64x64.png ├── components.json ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── release └── app │ ├── package.json │ └── pnpm-lock.yaml ├── src ├── main │ ├── api │ │ ├── app.router.ts │ │ ├── index.ts │ │ ├── live.router.ts │ │ ├── opensubtitles │ │ │ ├── api.error.ts │ │ │ ├── api.router.ts │ │ │ ├── download.types.ts │ │ │ ├── languages.ts │ │ │ ├── login.types.ts │ │ │ ├── logout.types.ts │ │ │ ├── search.types.ts │ │ │ └── user-information.types.ts │ │ ├── proxy.router.ts │ │ ├── tmdb │ │ │ ├── api.error.ts │ │ │ ├── api.router.ts │ │ │ ├── details.types.ts │ │ │ ├── discover.types.ts │ │ │ ├── genres.ts │ │ │ ├── movie-details.types.ts │ │ │ ├── search.types.ts │ │ │ ├── sort-by.ts │ │ │ └── tvshow-details.types.ts │ │ ├── trpc-client.ts │ │ ├── updater.router.ts │ │ ├── vidsrc.router.ts │ │ └── vlc.router.ts │ ├── extractors │ │ ├── 2embed.ts │ │ ├── closeload.ts │ │ ├── embedsito.ts │ │ ├── filemoon.ts │ │ ├── gomovies.ts │ │ ├── live │ │ │ └── cricfoot2.ts │ │ ├── moviesapi.ts │ │ ├── multimovies.ts │ │ ├── myfilestorage.ts │ │ ├── rabbitstream.ts │ │ ├── remotestream.ts │ │ ├── ridomovies.ts │ │ ├── showbox.ts │ │ ├── smashystream │ │ │ ├── cf.ts │ │ │ ├── dudmovie.ts │ │ │ ├── dued.ts │ │ │ ├── ee.ts │ │ │ ├── ems.ts │ │ │ ├── ffix.ts │ │ │ ├── fizzzz.ts │ │ │ ├── fm22.ts │ │ │ ├── fx.ts │ │ │ ├── im.ts │ │ │ ├── nflim.ts │ │ │ ├── segu.ts │ │ │ ├── smashystream.ts │ │ │ ├── video1.ts │ │ │ ├── video3m.ts │ │ │ └── watchx.ts │ │ ├── streamlare.ts │ │ ├── streamwish.ts │ │ ├── superstream │ │ │ ├── LICENSE │ │ │ ├── superstream.ts │ │ │ └── types.ts │ │ ├── types.ts │ │ ├── uhdmovies.ts │ │ ├── utils.ts │ │ ├── vegamovies │ │ │ ├── aiotechnical.ts │ │ │ ├── gofile.ts │ │ │ └── vegamovies.ts │ │ ├── vidplay.ts │ │ ├── vidsrc.ts │ │ ├── vidsrcto.ts │ │ └── vidstream.ts │ ├── lib │ │ ├── m3u8-proxy.ts │ │ ├── mp4-proxy │ │ │ ├── command.ts │ │ │ └── proxy.js │ │ └── vlc.ts │ ├── main.ts │ ├── preload.ts │ ├── util.ts │ └── utils │ │ ├── axios.ts │ │ ├── crypto.ts │ │ └── vmContext.ts ├── renderer │ ├── App.tsx │ ├── api │ │ └── trpc.ts │ ├── assets │ │ └── undraw_page_not_found.svg │ ├── components │ │ ├── contexts │ │ │ └── theme-provider.tsx │ │ ├── episode-list.tsx │ │ ├── layout │ │ │ ├── color-theme.tsx │ │ │ ├── header.tsx │ │ │ ├── loaders │ │ │ │ └── skeleton-grid.tsx │ │ │ └── theme-toggle.tsx │ │ ├── pagination.tsx │ │ ├── player │ │ │ ├── player.tsx │ │ │ ├── source-selector.tsx │ │ │ ├── subtitle-selector.tsx │ │ │ ├── sync-subtitles.tsx │ │ │ └── utils.tsx │ │ ├── settings │ │ │ ├── opensubtitles.tsx │ │ │ └── sources-check.tsx │ │ ├── show-filters.tsx │ │ ├── show-information.tsx │ │ ├── ui │ │ │ ├── aspect-ratio.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── command.tsx │ │ │ ├── dialog.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── form.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── multi-select.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── spacer.tsx │ │ │ ├── spinner-button.tsx │ │ │ ├── toast.tsx │ │ │ ├── toaster.tsx │ │ │ ├── tooltip.tsx │ │ │ └── use-toast.ts │ │ └── update-modal.tsx │ ├── constants.ts │ ├── global.d.ts │ ├── hooks │ │ ├── useLocalStorage.ts │ │ ├── useQuery.ts │ │ └── useRequiredParams.ts │ ├── index.ejs │ ├── index.tsx │ ├── lib │ │ ├── proxy.ts │ │ └── utils.ts │ ├── pages │ │ ├── index.tsx │ │ ├── live │ │ │ ├── list.tsx │ │ │ └── view.tsx │ │ ├── settings.tsx │ │ └── shows │ │ │ ├── discover.tsx │ │ │ ├── search.tsx │ │ │ └── view.tsx │ ├── preload.d.ts │ ├── styles │ │ └── globals.css │ └── utils │ │ └── string.ts └── types │ ├── localstorage.ts │ ├── sources.ts │ └── tmbd.ts ├── tailwind.config.js └── tsconfig.json /.erb/configs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.erb/configs/.eslintrc -------------------------------------------------------------------------------- /.erb/configs/webpack.config.base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.erb/configs/webpack.config.base.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.eslint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.erb/configs/webpack.config.eslint.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.main.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.erb/configs/webpack.config.main.prod.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.preload.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.erb/configs/webpack.config.preload.dev.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.renderer.dev.dll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.erb/configs/webpack.config.renderer.dev.dll.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.renderer.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.erb/configs/webpack.config.renderer.dev.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.renderer.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.erb/configs/webpack.config.renderer.prod.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.erb/configs/webpack.paths.ts -------------------------------------------------------------------------------- /.erb/img/erb-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.erb/img/erb-banner.svg -------------------------------------------------------------------------------- /.erb/img/erb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.erb/img/erb-logo.png -------------------------------------------------------------------------------- /.erb/img/palette-sponsor-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.erb/img/palette-sponsor-banner.svg -------------------------------------------------------------------------------- /.erb/mocks/fileMock.js: -------------------------------------------------------------------------------- 1 | export default "test-file-stub"; 2 | -------------------------------------------------------------------------------- /.erb/scripts/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.erb/scripts/.eslintrc -------------------------------------------------------------------------------- /.erb/scripts/check-build-exists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.erb/scripts/check-build-exists.ts -------------------------------------------------------------------------------- /.erb/scripts/check-native-dep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.erb/scripts/check-native-dep.js -------------------------------------------------------------------------------- /.erb/scripts/check-node-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.erb/scripts/check-node-env.js -------------------------------------------------------------------------------- /.erb/scripts/check-port-in-use.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.erb/scripts/check-port-in-use.js -------------------------------------------------------------------------------- /.erb/scripts/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.erb/scripts/clean.js -------------------------------------------------------------------------------- /.erb/scripts/delete-source-maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.erb/scripts/delete-source-maps.js -------------------------------------------------------------------------------- /.erb/scripts/electron-rebuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.erb/scripts/electron-rebuild.js -------------------------------------------------------------------------------- /.erb/scripts/link-modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.erb/scripts/link-modules.ts -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.github/ISSUE_TEMPLATE/1-Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-Question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.github/ISSUE_TEMPLATE/2-Question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3-Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.github/ISSUE_TEMPLATE/3-Feature_request.md -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | auto-install-peers = true 2 | node-linker=hoisted 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 0.1.0 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/README.md -------------------------------------------------------------------------------- /assets/assets.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/assets/assets.d.ts -------------------------------------------------------------------------------- /assets/entitlements.mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/assets/entitlements.mac.plist -------------------------------------------------------------------------------- /assets/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/assets/icon.icns -------------------------------------------------------------------------------- /assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/assets/icon.ico -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/icons/1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/assets/icons/1024x1024.png -------------------------------------------------------------------------------- /assets/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/assets/icons/128x128.png -------------------------------------------------------------------------------- /assets/icons/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/assets/icons/16x16.png -------------------------------------------------------------------------------- /assets/icons/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/assets/icons/24x24.png -------------------------------------------------------------------------------- /assets/icons/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/assets/icons/256x256.png -------------------------------------------------------------------------------- /assets/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/assets/icons/32x32.png -------------------------------------------------------------------------------- /assets/icons/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/assets/icons/48x48.png -------------------------------------------------------------------------------- /assets/icons/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/assets/icons/512x512.png -------------------------------------------------------------------------------- /assets/icons/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/assets/icons/64x64.png -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/components.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/postcss.config.js -------------------------------------------------------------------------------- /release/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/release/app/package.json -------------------------------------------------------------------------------- /release/app/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/release/app/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/main/api/app.router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/api/app.router.ts -------------------------------------------------------------------------------- /src/main/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/api/index.ts -------------------------------------------------------------------------------- /src/main/api/live.router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/api/live.router.ts -------------------------------------------------------------------------------- /src/main/api/opensubtitles/api.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/api/opensubtitles/api.error.ts -------------------------------------------------------------------------------- /src/main/api/opensubtitles/api.router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/api/opensubtitles/api.router.ts -------------------------------------------------------------------------------- /src/main/api/opensubtitles/download.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/api/opensubtitles/download.types.ts -------------------------------------------------------------------------------- /src/main/api/opensubtitles/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/api/opensubtitles/languages.ts -------------------------------------------------------------------------------- /src/main/api/opensubtitles/login.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/api/opensubtitles/login.types.ts -------------------------------------------------------------------------------- /src/main/api/opensubtitles/logout.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/api/opensubtitles/logout.types.ts -------------------------------------------------------------------------------- /src/main/api/opensubtitles/search.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/api/opensubtitles/search.types.ts -------------------------------------------------------------------------------- /src/main/api/opensubtitles/user-information.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/api/opensubtitles/user-information.types.ts -------------------------------------------------------------------------------- /src/main/api/proxy.router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/api/proxy.router.ts -------------------------------------------------------------------------------- /src/main/api/tmdb/api.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/api/tmdb/api.error.ts -------------------------------------------------------------------------------- /src/main/api/tmdb/api.router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/api/tmdb/api.router.ts -------------------------------------------------------------------------------- /src/main/api/tmdb/details.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/api/tmdb/details.types.ts -------------------------------------------------------------------------------- /src/main/api/tmdb/discover.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/api/tmdb/discover.types.ts -------------------------------------------------------------------------------- /src/main/api/tmdb/genres.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/api/tmdb/genres.ts -------------------------------------------------------------------------------- /src/main/api/tmdb/movie-details.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/api/tmdb/movie-details.types.ts -------------------------------------------------------------------------------- /src/main/api/tmdb/search.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/api/tmdb/search.types.ts -------------------------------------------------------------------------------- /src/main/api/tmdb/sort-by.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/api/tmdb/sort-by.ts -------------------------------------------------------------------------------- /src/main/api/tmdb/tvshow-details.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/api/tmdb/tvshow-details.types.ts -------------------------------------------------------------------------------- /src/main/api/trpc-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/api/trpc-client.ts -------------------------------------------------------------------------------- /src/main/api/updater.router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/api/updater.router.ts -------------------------------------------------------------------------------- /src/main/api/vidsrc.router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/api/vidsrc.router.ts -------------------------------------------------------------------------------- /src/main/api/vlc.router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/api/vlc.router.ts -------------------------------------------------------------------------------- /src/main/extractors/2embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/2embed.ts -------------------------------------------------------------------------------- /src/main/extractors/closeload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/closeload.ts -------------------------------------------------------------------------------- /src/main/extractors/embedsito.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/embedsito.ts -------------------------------------------------------------------------------- /src/main/extractors/filemoon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/filemoon.ts -------------------------------------------------------------------------------- /src/main/extractors/gomovies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/gomovies.ts -------------------------------------------------------------------------------- /src/main/extractors/live/cricfoot2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/live/cricfoot2.ts -------------------------------------------------------------------------------- /src/main/extractors/moviesapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/moviesapi.ts -------------------------------------------------------------------------------- /src/main/extractors/multimovies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/multimovies.ts -------------------------------------------------------------------------------- /src/main/extractors/myfilestorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/myfilestorage.ts -------------------------------------------------------------------------------- /src/main/extractors/rabbitstream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/rabbitstream.ts -------------------------------------------------------------------------------- /src/main/extractors/remotestream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/remotestream.ts -------------------------------------------------------------------------------- /src/main/extractors/ridomovies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/ridomovies.ts -------------------------------------------------------------------------------- /src/main/extractors/showbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/showbox.ts -------------------------------------------------------------------------------- /src/main/extractors/smashystream/cf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/smashystream/cf.ts -------------------------------------------------------------------------------- /src/main/extractors/smashystream/dudmovie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/smashystream/dudmovie.ts -------------------------------------------------------------------------------- /src/main/extractors/smashystream/dued.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/smashystream/dued.ts -------------------------------------------------------------------------------- /src/main/extractors/smashystream/ee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/smashystream/ee.ts -------------------------------------------------------------------------------- /src/main/extractors/smashystream/ems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/smashystream/ems.ts -------------------------------------------------------------------------------- /src/main/extractors/smashystream/ffix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/smashystream/ffix.ts -------------------------------------------------------------------------------- /src/main/extractors/smashystream/fizzzz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/smashystream/fizzzz.ts -------------------------------------------------------------------------------- /src/main/extractors/smashystream/fm22.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/smashystream/fm22.ts -------------------------------------------------------------------------------- /src/main/extractors/smashystream/fx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/smashystream/fx.ts -------------------------------------------------------------------------------- /src/main/extractors/smashystream/im.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/smashystream/im.ts -------------------------------------------------------------------------------- /src/main/extractors/smashystream/nflim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/smashystream/nflim.ts -------------------------------------------------------------------------------- /src/main/extractors/smashystream/segu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/smashystream/segu.ts -------------------------------------------------------------------------------- /src/main/extractors/smashystream/smashystream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/smashystream/smashystream.ts -------------------------------------------------------------------------------- /src/main/extractors/smashystream/video1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/smashystream/video1.ts -------------------------------------------------------------------------------- /src/main/extractors/smashystream/video3m.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/smashystream/video3m.ts -------------------------------------------------------------------------------- /src/main/extractors/smashystream/watchx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/smashystream/watchx.ts -------------------------------------------------------------------------------- /src/main/extractors/streamlare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/streamlare.ts -------------------------------------------------------------------------------- /src/main/extractors/streamwish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/streamwish.ts -------------------------------------------------------------------------------- /src/main/extractors/superstream/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/superstream/LICENSE -------------------------------------------------------------------------------- /src/main/extractors/superstream/superstream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/superstream/superstream.ts -------------------------------------------------------------------------------- /src/main/extractors/superstream/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/superstream/types.ts -------------------------------------------------------------------------------- /src/main/extractors/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/types.ts -------------------------------------------------------------------------------- /src/main/extractors/uhdmovies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/uhdmovies.ts -------------------------------------------------------------------------------- /src/main/extractors/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/utils.ts -------------------------------------------------------------------------------- /src/main/extractors/vegamovies/aiotechnical.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/vegamovies/aiotechnical.ts -------------------------------------------------------------------------------- /src/main/extractors/vegamovies/gofile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/vegamovies/gofile.ts -------------------------------------------------------------------------------- /src/main/extractors/vegamovies/vegamovies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/vegamovies/vegamovies.ts -------------------------------------------------------------------------------- /src/main/extractors/vidplay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/vidplay.ts -------------------------------------------------------------------------------- /src/main/extractors/vidsrc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/vidsrc.ts -------------------------------------------------------------------------------- /src/main/extractors/vidsrcto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/vidsrcto.ts -------------------------------------------------------------------------------- /src/main/extractors/vidstream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/extractors/vidstream.ts -------------------------------------------------------------------------------- /src/main/lib/m3u8-proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/lib/m3u8-proxy.ts -------------------------------------------------------------------------------- /src/main/lib/mp4-proxy/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/lib/mp4-proxy/command.ts -------------------------------------------------------------------------------- /src/main/lib/mp4-proxy/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/lib/mp4-proxy/proxy.js -------------------------------------------------------------------------------- /src/main/lib/vlc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/lib/vlc.ts -------------------------------------------------------------------------------- /src/main/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/main.ts -------------------------------------------------------------------------------- /src/main/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/preload.ts -------------------------------------------------------------------------------- /src/main/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/util.ts -------------------------------------------------------------------------------- /src/main/utils/axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/utils/axios.ts -------------------------------------------------------------------------------- /src/main/utils/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/utils/crypto.ts -------------------------------------------------------------------------------- /src/main/utils/vmContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/main/utils/vmContext.ts -------------------------------------------------------------------------------- /src/renderer/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/App.tsx -------------------------------------------------------------------------------- /src/renderer/api/trpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/api/trpc.ts -------------------------------------------------------------------------------- /src/renderer/assets/undraw_page_not_found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/assets/undraw_page_not_found.svg -------------------------------------------------------------------------------- /src/renderer/components/contexts/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/contexts/theme-provider.tsx -------------------------------------------------------------------------------- /src/renderer/components/episode-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/episode-list.tsx -------------------------------------------------------------------------------- /src/renderer/components/layout/color-theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/layout/color-theme.tsx -------------------------------------------------------------------------------- /src/renderer/components/layout/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/layout/header.tsx -------------------------------------------------------------------------------- /src/renderer/components/layout/loaders/skeleton-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/layout/loaders/skeleton-grid.tsx -------------------------------------------------------------------------------- /src/renderer/components/layout/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/layout/theme-toggle.tsx -------------------------------------------------------------------------------- /src/renderer/components/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/pagination.tsx -------------------------------------------------------------------------------- /src/renderer/components/player/player.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/player/player.tsx -------------------------------------------------------------------------------- /src/renderer/components/player/source-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/player/source-selector.tsx -------------------------------------------------------------------------------- /src/renderer/components/player/subtitle-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/player/subtitle-selector.tsx -------------------------------------------------------------------------------- /src/renderer/components/player/sync-subtitles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/player/sync-subtitles.tsx -------------------------------------------------------------------------------- /src/renderer/components/player/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/player/utils.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/opensubtitles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/settings/opensubtitles.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/sources-check.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/settings/sources-check.tsx -------------------------------------------------------------------------------- /src/renderer/components/show-filters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/show-filters.tsx -------------------------------------------------------------------------------- /src/renderer/components/show-information.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/show-information.tsx -------------------------------------------------------------------------------- /src/renderer/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /src/renderer/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/renderer/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/ui/button.tsx -------------------------------------------------------------------------------- /src/renderer/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/ui/card.tsx -------------------------------------------------------------------------------- /src/renderer/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/ui/command.tsx -------------------------------------------------------------------------------- /src/renderer/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/renderer/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/renderer/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/ui/form.tsx -------------------------------------------------------------------------------- /src/renderer/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/ui/input.tsx -------------------------------------------------------------------------------- /src/renderer/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/ui/label.tsx -------------------------------------------------------------------------------- /src/renderer/components/ui/multi-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/ui/multi-select.tsx -------------------------------------------------------------------------------- /src/renderer/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/renderer/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/renderer/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/renderer/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/ui/select.tsx -------------------------------------------------------------------------------- /src/renderer/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/renderer/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/renderer/components/ui/spacer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/ui/spacer.tsx -------------------------------------------------------------------------------- /src/renderer/components/ui/spinner-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/ui/spinner-button.tsx -------------------------------------------------------------------------------- /src/renderer/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/renderer/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/renderer/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/renderer/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/ui/use-toast.ts -------------------------------------------------------------------------------- /src/renderer/components/update-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/components/update-modal.tsx -------------------------------------------------------------------------------- /src/renderer/constants.ts: -------------------------------------------------------------------------------- 1 | export const TMDB_IMAGE_BASE_URL = "https://image.tmdb.org/t/p/w500"; 2 | -------------------------------------------------------------------------------- /src/renderer/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/global.d.ts -------------------------------------------------------------------------------- /src/renderer/hooks/useLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/hooks/useLocalStorage.ts -------------------------------------------------------------------------------- /src/renderer/hooks/useQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/hooks/useQuery.ts -------------------------------------------------------------------------------- /src/renderer/hooks/useRequiredParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/hooks/useRequiredParams.ts -------------------------------------------------------------------------------- /src/renderer/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/index.ejs -------------------------------------------------------------------------------- /src/renderer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/index.tsx -------------------------------------------------------------------------------- /src/renderer/lib/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/lib/proxy.ts -------------------------------------------------------------------------------- /src/renderer/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/lib/utils.ts -------------------------------------------------------------------------------- /src/renderer/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/pages/index.tsx -------------------------------------------------------------------------------- /src/renderer/pages/live/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/pages/live/list.tsx -------------------------------------------------------------------------------- /src/renderer/pages/live/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/pages/live/view.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/pages/settings.tsx -------------------------------------------------------------------------------- /src/renderer/pages/shows/discover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/pages/shows/discover.tsx -------------------------------------------------------------------------------- /src/renderer/pages/shows/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/pages/shows/search.tsx -------------------------------------------------------------------------------- /src/renderer/pages/shows/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/pages/shows/view.tsx -------------------------------------------------------------------------------- /src/renderer/preload.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/preload.d.ts -------------------------------------------------------------------------------- /src/renderer/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/styles/globals.css -------------------------------------------------------------------------------- /src/renderer/utils/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/renderer/utils/string.ts -------------------------------------------------------------------------------- /src/types/localstorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/types/localstorage.ts -------------------------------------------------------------------------------- /src/types/sources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/types/sources.ts -------------------------------------------------------------------------------- /src/types/tmbd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/src/types/tmbd.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorrinKievit/restreamer/HEAD/tsconfig.json --------------------------------------------------------------------------------