├── .gitignore ├── README.md ├── electron ├── index.js ├── package-lock.json ├── package.json └── src │ ├── App.css │ ├── App.js │ └── index.js ├── lib ├── index.js ├── package-lock.json └── package.json ├── package.json ├── scripts ├── storybook ├── ui └── webui ├── server ├── TabooMock.js ├── index.js ├── package-lock.json └── package.json └── webui ├── .storybook ├── main.js └── preview.js ├── package-lock.json ├── package.json ├── public ├── android-icon-144x144.png ├── android-icon-192x192.png ├── android-icon-36x36.png ├── android-icon-48x48.png ├── android-icon-72x72.png ├── android-icon-96x96.png ├── apple-icon-114x114.png ├── apple-icon-120x120.png ├── apple-icon-144x144.png ├── apple-icon-152x152.png ├── apple-icon-180x180.png ├── apple-icon-57x57.png ├── apple-icon-60x60.png ├── apple-icon-72x72.png ├── apple-icon-76x76.png ├── apple-icon-precomposed.png ├── apple-icon.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon-96x96.png ├── favicon.ico ├── index.html ├── manifest.json ├── ms-icon-144x144.png ├── ms-icon-150x150.png ├── ms-icon-310x310.png └── ms-icon-70x70.png └── src ├── App.css ├── App.js ├── FileList ├── FileList.css ├── FileList.js └── FileList.stories.js ├── Loading ├── Loading.css ├── Loading.js ├── Loading.stories.js ├── loading.svg └── loading_lib.css ├── Navbar ├── Navbar.css ├── Navbar.js ├── Navbar.stories.js └── sne.png ├── Page ├── Page.css ├── Page.js ├── Page.stories.js └── coffee.svg ├── TabooMock.js ├── TorrentEntry ├── TorrentEntry.css ├── TorrentEntry.js ├── TorrentEntry.stories.js └── download.svg ├── TorrentList ├── TorrentList.css ├── TorrentList.js └── TorrentList.stories.js └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/README.md -------------------------------------------------------------------------------- /electron/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/electron/index.js -------------------------------------------------------------------------------- /electron/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/electron/package-lock.json -------------------------------------------------------------------------------- /electron/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/electron/package.json -------------------------------------------------------------------------------- /electron/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/electron/src/App.css -------------------------------------------------------------------------------- /electron/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/electron/src/App.js -------------------------------------------------------------------------------- /electron/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/electron/src/index.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/lib/package-lock.json -------------------------------------------------------------------------------- /lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/lib/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/package.json -------------------------------------------------------------------------------- /scripts/storybook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/scripts/storybook -------------------------------------------------------------------------------- /scripts/ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/scripts/ui -------------------------------------------------------------------------------- /scripts/webui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/scripts/webui -------------------------------------------------------------------------------- /server/TabooMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/server/TabooMock.js -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/server/index.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/server/package.json -------------------------------------------------------------------------------- /webui/.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/.storybook/main.js -------------------------------------------------------------------------------- /webui/.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/.storybook/preview.js -------------------------------------------------------------------------------- /webui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/package-lock.json -------------------------------------------------------------------------------- /webui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/package.json -------------------------------------------------------------------------------- /webui/public/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/android-icon-144x144.png -------------------------------------------------------------------------------- /webui/public/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/android-icon-192x192.png -------------------------------------------------------------------------------- /webui/public/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/android-icon-36x36.png -------------------------------------------------------------------------------- /webui/public/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/android-icon-48x48.png -------------------------------------------------------------------------------- /webui/public/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/android-icon-72x72.png -------------------------------------------------------------------------------- /webui/public/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/android-icon-96x96.png -------------------------------------------------------------------------------- /webui/public/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/apple-icon-114x114.png -------------------------------------------------------------------------------- /webui/public/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/apple-icon-120x120.png -------------------------------------------------------------------------------- /webui/public/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/apple-icon-144x144.png -------------------------------------------------------------------------------- /webui/public/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/apple-icon-152x152.png -------------------------------------------------------------------------------- /webui/public/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/apple-icon-180x180.png -------------------------------------------------------------------------------- /webui/public/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/apple-icon-57x57.png -------------------------------------------------------------------------------- /webui/public/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/apple-icon-60x60.png -------------------------------------------------------------------------------- /webui/public/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/apple-icon-72x72.png -------------------------------------------------------------------------------- /webui/public/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/apple-icon-76x76.png -------------------------------------------------------------------------------- /webui/public/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/apple-icon-precomposed.png -------------------------------------------------------------------------------- /webui/public/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/apple-icon.png -------------------------------------------------------------------------------- /webui/public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/browserconfig.xml -------------------------------------------------------------------------------- /webui/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/favicon-16x16.png -------------------------------------------------------------------------------- /webui/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/favicon-32x32.png -------------------------------------------------------------------------------- /webui/public/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/favicon-96x96.png -------------------------------------------------------------------------------- /webui/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/favicon.ico -------------------------------------------------------------------------------- /webui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/index.html -------------------------------------------------------------------------------- /webui/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/manifest.json -------------------------------------------------------------------------------- /webui/public/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/ms-icon-144x144.png -------------------------------------------------------------------------------- /webui/public/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/ms-icon-150x150.png -------------------------------------------------------------------------------- /webui/public/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/ms-icon-310x310.png -------------------------------------------------------------------------------- /webui/public/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/public/ms-icon-70x70.png -------------------------------------------------------------------------------- /webui/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/src/App.css -------------------------------------------------------------------------------- /webui/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/src/App.js -------------------------------------------------------------------------------- /webui/src/FileList/FileList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/src/FileList/FileList.css -------------------------------------------------------------------------------- /webui/src/FileList/FileList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/src/FileList/FileList.js -------------------------------------------------------------------------------- /webui/src/FileList/FileList.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/src/FileList/FileList.stories.js -------------------------------------------------------------------------------- /webui/src/Loading/Loading.css: -------------------------------------------------------------------------------- 1 | .Loading { 2 | width: 100px; 3 | } 4 | -------------------------------------------------------------------------------- /webui/src/Loading/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/src/Loading/Loading.js -------------------------------------------------------------------------------- /webui/src/Loading/Loading.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/src/Loading/Loading.stories.js -------------------------------------------------------------------------------- /webui/src/Loading/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/src/Loading/loading.svg -------------------------------------------------------------------------------- /webui/src/Loading/loading_lib.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/src/Loading/loading_lib.css -------------------------------------------------------------------------------- /webui/src/Navbar/Navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/src/Navbar/Navbar.css -------------------------------------------------------------------------------- /webui/src/Navbar/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/src/Navbar/Navbar.js -------------------------------------------------------------------------------- /webui/src/Navbar/Navbar.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/src/Navbar/Navbar.stories.js -------------------------------------------------------------------------------- /webui/src/Navbar/sne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/src/Navbar/sne.png -------------------------------------------------------------------------------- /webui/src/Page/Page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/src/Page/Page.css -------------------------------------------------------------------------------- /webui/src/Page/Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/src/Page/Page.js -------------------------------------------------------------------------------- /webui/src/Page/Page.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/src/Page/Page.stories.js -------------------------------------------------------------------------------- /webui/src/Page/coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/src/Page/coffee.svg -------------------------------------------------------------------------------- /webui/src/TabooMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/src/TabooMock.js -------------------------------------------------------------------------------- /webui/src/TorrentEntry/TorrentEntry.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/src/TorrentEntry/TorrentEntry.css -------------------------------------------------------------------------------- /webui/src/TorrentEntry/TorrentEntry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/src/TorrentEntry/TorrentEntry.js -------------------------------------------------------------------------------- /webui/src/TorrentEntry/TorrentEntry.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/src/TorrentEntry/TorrentEntry.stories.js -------------------------------------------------------------------------------- /webui/src/TorrentEntry/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/src/TorrentEntry/download.svg -------------------------------------------------------------------------------- /webui/src/TorrentList/TorrentList.css: -------------------------------------------------------------------------------- 1 | .TorrentList_Entry { 2 | display: flex; 3 | } 4 | -------------------------------------------------------------------------------- /webui/src/TorrentList/TorrentList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/src/TorrentList/TorrentList.js -------------------------------------------------------------------------------- /webui/src/TorrentList/TorrentList.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/src/TorrentList/TorrentList.stories.js -------------------------------------------------------------------------------- /webui/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohacker/Taboo/HEAD/webui/src/index.js --------------------------------------------------------------------------------