├── .gitignore ├── FastNZB.sln ├── LICENSE ├── README.md ├── scripts └── FastNZB.Import │ ├── FastNZB.Import.csproj │ ├── Models.cs │ ├── Program.cs │ └── appsettings.sample.txt └── src ├── FastNZB.ServiceInterface ├── APIServices.cs ├── FallbackServices.cs ├── FastNZB.ServiceInterface.csproj ├── FastNZBAuthRepo.cs ├── FastNZBSession.cs ├── ImportServices.cs ├── NZBServices.cs ├── Properties │ └── AssemblyInfo.cs ├── SearchServices.cs ├── SessionServices.cs └── UserServices.cs ├── FastNZB.ServiceModel ├── APIModels.cs ├── FastNZB.ServiceModel.csproj ├── FindNZBModels.cs ├── ImportNZBModels.cs ├── Properties │ └── AssemblyInfo.cs ├── RSS │ ├── Author.cs │ ├── Feed.cs │ └── Item.cs ├── SessionModels.cs ├── Types │ ├── APIKey.cs │ ├── APIRequest.cs │ ├── Category.cs │ ├── Count.cs │ ├── Download.cs │ ├── NZB.cs │ ├── NZBResult.cs │ ├── TVEpisode.cs │ ├── Title.cs │ ├── Video.cs │ └── Vote.cs └── UserModels.cs ├── FastNZB ├── .editorconfig ├── .nvmrc ├── AppHost.cs ├── FastNZB.csproj ├── LICENSE ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.sample.txt ├── config │ ├── empty.js │ ├── github-deploy │ │ └── index.js │ ├── head-config.common.js │ ├── helpers.js │ ├── html-elements-plugin │ │ └── index.js │ ├── karma.conf.js │ ├── protractor.conf.js │ ├── resource-override.js │ ├── spec-bundle.js │ ├── webpack.common.js │ ├── webpack.dev.js │ ├── webpack.github-deploy.js │ ├── webpack.prod.js │ └── webpack.test.js ├── firebase.json ├── karma.conf.js ├── netlify.toml ├── package-lock.json ├── package.json ├── protractor.conf.js ├── src │ ├── app │ │ ├── +detail │ │ │ ├── +child-detail │ │ │ │ ├── child-detail.component.ts │ │ │ │ ├── child-detail.module.ts │ │ │ │ ├── child-detail.routes.ts │ │ │ │ └── index.ts │ │ │ ├── detail.component.html │ │ │ ├── detail.component.ts │ │ │ ├── detail.module.ts │ │ │ ├── detail.routes.ts │ │ │ └── index.ts │ │ ├── +reset │ │ │ ├── index.ts │ │ │ ├── reset.component.html │ │ │ ├── reset.component.ts │ │ │ ├── reset.module.ts │ │ │ └── reset.routes.ts │ │ ├── app.component.css │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.e2e.ts │ │ ├── app.module.ts │ │ ├── app.resolver.ts │ │ ├── app.routes.ts │ │ ├── app.service.ts │ │ ├── app.spec.ts │ │ ├── app.style.css │ │ ├── bytes.pipe.ts │ │ ├── environment.ts │ │ ├── home │ │ │ ├── home.component.css │ │ │ ├── home.component.html │ │ │ ├── home.component.spec.ts │ │ │ ├── home.component.ts │ │ │ ├── home.e2e.ts │ │ │ ├── index.ts │ │ │ ├── title │ │ │ │ ├── index.ts │ │ │ │ ├── title.service.spec.ts │ │ │ │ └── title.service.ts │ │ │ └── x-large │ │ │ │ ├── index.ts │ │ │ │ ├── x-large.directive.spec.ts │ │ │ │ └── x-large.directive.ts │ │ ├── index.ts │ │ ├── no-content │ │ │ ├── index.ts │ │ │ └── no-content.component.ts │ │ ├── nzb.component.ts │ │ ├── release-result.component.ts │ │ ├── release-search.component.html │ │ ├── release-search.component.ts │ │ ├── release-search.service.ts │ │ ├── release.component.ts │ │ ├── release.service.ts │ │ ├── search │ │ │ ├── index.ts │ │ │ ├── search.component.html │ │ │ ├── search.component.spec.ts │ │ │ └── search.component.ts │ │ ├── user.component.ts │ │ └── user.service.ts │ ├── assets │ │ ├── css │ │ │ └── .gitkeep │ │ ├── data.json │ │ ├── humans.txt │ │ ├── icon │ │ │ ├── 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 │ │ │ ├── ms-icon-144x144.png │ │ │ ├── ms-icon-150x150.png │ │ │ ├── ms-icon-310x310.png │ │ │ └── ms-icon-70x70.png │ │ ├── img │ │ │ ├── angular-logo.png │ │ │ ├── angularclass-avatar.png │ │ │ ├── angularclass-logo.png │ │ │ ├── btc.png │ │ │ └── nzb.png │ │ ├── manifest.json │ │ ├── mock-data │ │ │ └── mock-data.json │ │ ├── robots.txt │ │ └── service-worker.js │ ├── custom-typings.d.ts │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── index.html │ ├── main.browser.aot.ts │ ├── main.browser.ts │ ├── meta │ │ ├── humans.txt │ │ └── robots.txt │ ├── polyfills.browser.ts │ ├── styles │ │ ├── _variables.scss │ │ ├── headings.css │ │ └── styles.scss │ └── vendor.browser.ts ├── tsconfig.json ├── tsconfig.webpack.json ├── tslint.json ├── typedoc.json ├── typings.json ├── typings │ ├── globals │ │ └── jquery │ │ │ ├── index.d.ts │ │ │ └── typings.json │ └── index.d.ts ├── web.config ├── webpack.config.js ├── wwwroot │ ├── 0.fb795abddb64fb794e68.chunk.js │ ├── 1.a85d2a7f3e86deb8bacf.chunk.js │ ├── 2.ab3d001619a899ed5bb8.chunk.js │ ├── assets │ │ ├── css │ │ │ └── .gitkeep │ │ ├── data.json │ │ ├── humans.txt │ │ ├── icon │ │ │ ├── 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 │ │ │ ├── ms-icon-144x144.png │ │ │ ├── ms-icon-150x150.png │ │ │ ├── ms-icon-310x310.png │ │ │ └── ms-icon-70x70.png │ │ ├── img │ │ │ ├── angular-logo.png │ │ │ ├── angularclass-avatar.png │ │ │ ├── angularclass-logo.png │ │ │ ├── btc.png │ │ │ └── nzb.png │ │ ├── manifest.json │ │ ├── robots.txt │ │ └── service-worker.js │ ├── humans.txt │ ├── index.html │ ├── main.903320ae724f7b4fce31fd535d77a96d.css │ ├── main.903320ae724f7b4fce31fd535d77a96d.css.map │ ├── main.c07ecfd6a0c523a13a39.bundle.js │ ├── polyfills.9902f753799924f02fc6.bundle.js │ └── robots.txt └── yarn.lock └── lib ├── ServiceStack.Admin.deps.json ├── ServiceStack.Admin.dll ├── ServiceStack.Admin.xml ├── ServiceStack.Aws.deps.json ├── ServiceStack.Aws.dll ├── ServiceStack.Aws.xml ├── ServiceStack.Client.deps.json ├── ServiceStack.Client.dll ├── ServiceStack.Client.xml ├── ServiceStack.Common.deps.json ├── ServiceStack.Common.dll ├── ServiceStack.Common.xml ├── ServiceStack.Interfaces.deps.json ├── ServiceStack.Interfaces.dll ├── ServiceStack.Interfaces.xml ├── ServiceStack.Mvc.dll ├── ServiceStack.OrmLite.MySql.deps.json ├── ServiceStack.OrmLite.MySql.dll ├── ServiceStack.OrmLite.MySql.dll.config ├── ServiceStack.OrmLite.MySql.xml ├── ServiceStack.OrmLite.PostgreSQL.deps.json ├── ServiceStack.OrmLite.PostgreSQL.dll ├── ServiceStack.OrmLite.PostgreSQL.xml ├── ServiceStack.OrmLite.SqlServer.deps.json ├── ServiceStack.OrmLite.SqlServer.dll ├── ServiceStack.OrmLite.SqlServer.xml ├── ServiceStack.OrmLite.Sqlite.deps.json ├── ServiceStack.OrmLite.Sqlite.dll ├── ServiceStack.OrmLite.Sqlite.xml ├── ServiceStack.OrmLite.deps.json ├── ServiceStack.OrmLite.dll ├── ServiceStack.OrmLite.xml ├── ServiceStack.Redis.deps.json ├── ServiceStack.Redis.dll ├── ServiceStack.Redis.xml ├── ServiceStack.Server.deps.json ├── ServiceStack.Server.dll ├── ServiceStack.Server.xml ├── ServiceStack.Text.deps.json ├── ServiceStack.Text.dll ├── ServiceStack.Text.xml ├── ServiceStack.dll └── ServiceStack.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/.gitignore -------------------------------------------------------------------------------- /FastNZB.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/FastNZB.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/README.md -------------------------------------------------------------------------------- /scripts/FastNZB.Import/FastNZB.Import.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/scripts/FastNZB.Import/FastNZB.Import.csproj -------------------------------------------------------------------------------- /scripts/FastNZB.Import/Models.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/scripts/FastNZB.Import/Models.cs -------------------------------------------------------------------------------- /scripts/FastNZB.Import/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/scripts/FastNZB.Import/Program.cs -------------------------------------------------------------------------------- /scripts/FastNZB.Import/appsettings.sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/scripts/FastNZB.Import/appsettings.sample.txt -------------------------------------------------------------------------------- /src/FastNZB.ServiceInterface/APIServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceInterface/APIServices.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceInterface/FallbackServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceInterface/FallbackServices.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceInterface/FastNZB.ServiceInterface.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceInterface/FastNZB.ServiceInterface.csproj -------------------------------------------------------------------------------- /src/FastNZB.ServiceInterface/FastNZBAuthRepo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceInterface/FastNZBAuthRepo.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceInterface/FastNZBSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceInterface/FastNZBSession.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceInterface/ImportServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceInterface/ImportServices.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceInterface/NZBServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceInterface/NZBServices.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceInterface/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceInterface/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceInterface/SearchServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceInterface/SearchServices.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceInterface/SessionServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceInterface/SessionServices.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceInterface/UserServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceInterface/UserServices.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceModel/APIModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceModel/APIModels.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceModel/FastNZB.ServiceModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceModel/FastNZB.ServiceModel.csproj -------------------------------------------------------------------------------- /src/FastNZB.ServiceModel/FindNZBModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceModel/FindNZBModels.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceModel/ImportNZBModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceModel/ImportNZBModels.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceModel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceModel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceModel/RSS/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceModel/RSS/Author.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceModel/RSS/Feed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceModel/RSS/Feed.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceModel/RSS/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceModel/RSS/Item.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceModel/SessionModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceModel/SessionModels.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceModel/Types/APIKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceModel/Types/APIKey.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceModel/Types/APIRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceModel/Types/APIRequest.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceModel/Types/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceModel/Types/Category.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceModel/Types/Count.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceModel/Types/Count.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceModel/Types/Download.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceModel/Types/Download.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceModel/Types/NZB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceModel/Types/NZB.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceModel/Types/NZBResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceModel/Types/NZBResult.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceModel/Types/TVEpisode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceModel/Types/TVEpisode.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceModel/Types/Title.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceModel/Types/Title.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceModel/Types/Video.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceModel/Types/Video.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceModel/Types/Vote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceModel/Types/Vote.cs -------------------------------------------------------------------------------- /src/FastNZB.ServiceModel/UserModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB.ServiceModel/UserModels.cs -------------------------------------------------------------------------------- /src/FastNZB/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/.editorconfig -------------------------------------------------------------------------------- /src/FastNZB/.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* 2 | -------------------------------------------------------------------------------- /src/FastNZB/AppHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/AppHost.cs -------------------------------------------------------------------------------- /src/FastNZB/FastNZB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/FastNZB.csproj -------------------------------------------------------------------------------- /src/FastNZB/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/LICENSE -------------------------------------------------------------------------------- /src/FastNZB/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/Program.cs -------------------------------------------------------------------------------- /src/FastNZB/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/FastNZB/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/Startup.cs -------------------------------------------------------------------------------- /src/FastNZB/appsettings.sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/appsettings.sample.txt -------------------------------------------------------------------------------- /src/FastNZB/config/empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/config/empty.js -------------------------------------------------------------------------------- /src/FastNZB/config/github-deploy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/config/github-deploy/index.js -------------------------------------------------------------------------------- /src/FastNZB/config/head-config.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/config/head-config.common.js -------------------------------------------------------------------------------- /src/FastNZB/config/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/config/helpers.js -------------------------------------------------------------------------------- /src/FastNZB/config/html-elements-plugin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/config/html-elements-plugin/index.js -------------------------------------------------------------------------------- /src/FastNZB/config/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/config/karma.conf.js -------------------------------------------------------------------------------- /src/FastNZB/config/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/config/protractor.conf.js -------------------------------------------------------------------------------- /src/FastNZB/config/resource-override.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/FastNZB/config/spec-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/config/spec-bundle.js -------------------------------------------------------------------------------- /src/FastNZB/config/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/config/webpack.common.js -------------------------------------------------------------------------------- /src/FastNZB/config/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/config/webpack.dev.js -------------------------------------------------------------------------------- /src/FastNZB/config/webpack.github-deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/config/webpack.github-deploy.js -------------------------------------------------------------------------------- /src/FastNZB/config/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/config/webpack.prod.js -------------------------------------------------------------------------------- /src/FastNZB/config/webpack.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/config/webpack.test.js -------------------------------------------------------------------------------- /src/FastNZB/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/firebase.json -------------------------------------------------------------------------------- /src/FastNZB/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/karma.conf.js -------------------------------------------------------------------------------- /src/FastNZB/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/netlify.toml -------------------------------------------------------------------------------- /src/FastNZB/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/package-lock.json -------------------------------------------------------------------------------- /src/FastNZB/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/package.json -------------------------------------------------------------------------------- /src/FastNZB/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/protractor.conf.js -------------------------------------------------------------------------------- /src/FastNZB/src/app/+detail/+child-detail/child-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/+detail/+child-detail/child-detail.component.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/+detail/+child-detail/child-detail.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/+detail/+child-detail/child-detail.module.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/+detail/+child-detail/child-detail.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/+detail/+child-detail/child-detail.routes.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/+detail/+child-detail/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/+detail/+child-detail/index.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/+detail/detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/+detail/detail.component.html -------------------------------------------------------------------------------- /src/FastNZB/src/app/+detail/detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/+detail/detail.component.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/+detail/detail.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/+detail/detail.module.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/+detail/detail.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/+detail/detail.routes.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/+detail/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/+detail/index.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/+reset/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/+reset/index.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/+reset/reset.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/+reset/reset.component.html -------------------------------------------------------------------------------- /src/FastNZB/src/app/+reset/reset.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/+reset/reset.component.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/+reset/reset.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/+reset/reset.module.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/+reset/reset.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/+reset/reset.routes.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/app.component.css -------------------------------------------------------------------------------- /src/FastNZB/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/app.component.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/app.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/app.e2e.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/app.module.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/app.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/app.resolver.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/app.routes.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/app.service.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/app.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/app.spec.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/app.style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/app.style.css -------------------------------------------------------------------------------- /src/FastNZB/src/app/bytes.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/bytes.pipe.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/environment.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | /*styles for home content only*/ -------------------------------------------------------------------------------- /src/FastNZB/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/home/home.component.html -------------------------------------------------------------------------------- /src/FastNZB/src/app/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/home/home.component.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/home/home.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/home/home.e2e.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/home/index.ts: -------------------------------------------------------------------------------- 1 | export * from './home.component'; 2 | -------------------------------------------------------------------------------- /src/FastNZB/src/app/home/title/index.ts: -------------------------------------------------------------------------------- 1 | export * from './title.service'; 2 | -------------------------------------------------------------------------------- /src/FastNZB/src/app/home/title/title.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/home/title/title.service.spec.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/home/title/title.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/home/title/title.service.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/home/x-large/index.ts: -------------------------------------------------------------------------------- 1 | export * from './x-large.directive'; 2 | -------------------------------------------------------------------------------- /src/FastNZB/src/app/home/x-large/x-large.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/home/x-large/x-large.directive.spec.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/home/x-large/x-large.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/home/x-large/x-large.directive.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/index.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/no-content/index.ts: -------------------------------------------------------------------------------- 1 | export * from './no-content.component'; 2 | -------------------------------------------------------------------------------- /src/FastNZB/src/app/no-content/no-content.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/no-content/no-content.component.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/nzb.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/nzb.component.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/release-result.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/release-result.component.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/release-search.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/release-search.component.html -------------------------------------------------------------------------------- /src/FastNZB/src/app/release-search.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/release-search.component.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/release-search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/release-search.service.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/release.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/release.component.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/release.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/release.service.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/search/index.ts: -------------------------------------------------------------------------------- 1 | export * from './search.component'; 2 | -------------------------------------------------------------------------------- /src/FastNZB/src/app/search/search.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/search/search.component.html -------------------------------------------------------------------------------- /src/FastNZB/src/app/search/search.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/search/search.component.spec.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/search/search.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/search/search.component.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/user.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/user.component.ts -------------------------------------------------------------------------------- /src/FastNZB/src/app/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/app/user.service.ts -------------------------------------------------------------------------------- /src/FastNZB/src/assets/css/.gitkeep: -------------------------------------------------------------------------------- 1 | @AngularClass 2 | -------------------------------------------------------------------------------- /src/FastNZB/src/assets/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "value": "AngularClass" 3 | } 4 | -------------------------------------------------------------------------------- /src/FastNZB/src/assets/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/humans.txt -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/android-icon-144x144.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/android-icon-192x192.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/android-icon-36x36.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/android-icon-48x48.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/android-icon-72x72.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/android-icon-96x96.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/apple-icon-114x114.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/apple-icon-120x120.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/apple-icon-144x144.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/apple-icon-152x152.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/apple-icon-180x180.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/apple-icon-57x57.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/apple-icon-60x60.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/apple-icon-72x72.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/apple-icon-76x76.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/apple-icon-precomposed.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/apple-icon.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/browserconfig.xml -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/favicon-16x16.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/favicon-32x32.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/favicon-96x96.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/favicon.ico -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/ms-icon-144x144.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/ms-icon-150x150.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/ms-icon-310x310.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/icon/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/icon/ms-icon-70x70.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/img/angular-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/img/angular-logo.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/img/angularclass-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/img/angularclass-avatar.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/img/angularclass-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/img/angularclass-logo.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/img/btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/img/btc.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/img/nzb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/img/nzb.png -------------------------------------------------------------------------------- /src/FastNZB/src/assets/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/assets/manifest.json -------------------------------------------------------------------------------- /src/FastNZB/src/assets/mock-data/mock-data.json: -------------------------------------------------------------------------------- 1 | [ 2 | {"res": "data"} 3 | ] 4 | -------------------------------------------------------------------------------- /src/FastNZB/src/assets/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /src/FastNZB/src/assets/service-worker.js: -------------------------------------------------------------------------------- 1 | // This file is intentionally without code. 2 | -------------------------------------------------------------------------------- /src/FastNZB/src/custom-typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/custom-typings.d.ts -------------------------------------------------------------------------------- /src/FastNZB/src/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/FastNZB/src/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/FastNZB/src/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /src/FastNZB/src/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/FastNZB/src/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/FastNZB/src/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/FastNZB/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/index.html -------------------------------------------------------------------------------- /src/FastNZB/src/main.browser.aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/main.browser.aot.ts -------------------------------------------------------------------------------- /src/FastNZB/src/main.browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/main.browser.ts -------------------------------------------------------------------------------- /src/FastNZB/src/meta/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/meta/humans.txt -------------------------------------------------------------------------------- /src/FastNZB/src/meta/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /src/FastNZB/src/polyfills.browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/polyfills.browser.ts -------------------------------------------------------------------------------- /src/FastNZB/src/styles/_variables.scss: -------------------------------------------------------------------------------- 1 | $nav-button-color: #00838F; -------------------------------------------------------------------------------- /src/FastNZB/src/styles/headings.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: #00BCD4; 3 | } -------------------------------------------------------------------------------- /src/FastNZB/src/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/styles/styles.scss -------------------------------------------------------------------------------- /src/FastNZB/src/vendor.browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/src/vendor.browser.ts -------------------------------------------------------------------------------- /src/FastNZB/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/tsconfig.json -------------------------------------------------------------------------------- /src/FastNZB/tsconfig.webpack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/tsconfig.webpack.json -------------------------------------------------------------------------------- /src/FastNZB/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/tslint.json -------------------------------------------------------------------------------- /src/FastNZB/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/typedoc.json -------------------------------------------------------------------------------- /src/FastNZB/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/typings.json -------------------------------------------------------------------------------- /src/FastNZB/typings/globals/jquery/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/typings/globals/jquery/index.d.ts -------------------------------------------------------------------------------- /src/FastNZB/typings/globals/jquery/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/typings/globals/jquery/typings.json -------------------------------------------------------------------------------- /src/FastNZB/typings/index.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/FastNZB/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/web.config -------------------------------------------------------------------------------- /src/FastNZB/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/webpack.config.js -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/0.fb795abddb64fb794e68.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/0.fb795abddb64fb794e68.chunk.js -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/1.a85d2a7f3e86deb8bacf.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/1.a85d2a7f3e86deb8bacf.chunk.js -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/2.ab3d001619a899ed5bb8.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/2.ab3d001619a899ed5bb8.chunk.js -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/css/.gitkeep: -------------------------------------------------------------------------------- 1 | @AngularClass 2 | -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "value": "AngularClass" 3 | } 4 | -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/humans.txt -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/android-icon-144x144.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/android-icon-192x192.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/android-icon-36x36.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/android-icon-48x48.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/android-icon-72x72.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/android-icon-96x96.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/apple-icon-114x114.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/apple-icon-120x120.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/apple-icon-144x144.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/apple-icon-152x152.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/apple-icon-180x180.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/apple-icon-57x57.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/apple-icon-60x60.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/apple-icon-72x72.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/apple-icon-76x76.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/apple-icon-precomposed.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/apple-icon.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/browserconfig.xml -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/favicon-16x16.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/favicon-32x32.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/favicon-96x96.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/favicon.ico -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/ms-icon-144x144.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/ms-icon-150x150.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/ms-icon-310x310.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/icon/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/icon/ms-icon-70x70.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/img/angular-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/img/angular-logo.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/img/angularclass-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/img/angularclass-avatar.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/img/angularclass-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/img/angularclass-logo.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/img/btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/img/btc.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/img/nzb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/img/nzb.png -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/assets/manifest.json -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/assets/service-worker.js: -------------------------------------------------------------------------------- 1 | // This file is intentionally without code. 2 | -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/humans.txt -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/index.html -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/main.903320ae724f7b4fce31fd535d77a96d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/main.903320ae724f7b4fce31fd535d77a96d.css -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/main.903320ae724f7b4fce31fd535d77a96d.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/main.903320ae724f7b4fce31fd535d77a96d.css.map -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/main.c07ecfd6a0c523a13a39.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/main.c07ecfd6a0c523a13a39.bundle.js -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/polyfills.9902f753799924f02fc6.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/wwwroot/polyfills.9902f753799924f02fc6.bundle.js -------------------------------------------------------------------------------- /src/FastNZB/wwwroot/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /src/FastNZB/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/FastNZB/yarn.lock -------------------------------------------------------------------------------- /src/lib/ServiceStack.Admin.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.Admin.deps.json -------------------------------------------------------------------------------- /src/lib/ServiceStack.Admin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.Admin.dll -------------------------------------------------------------------------------- /src/lib/ServiceStack.Admin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.Admin.xml -------------------------------------------------------------------------------- /src/lib/ServiceStack.Aws.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.Aws.deps.json -------------------------------------------------------------------------------- /src/lib/ServiceStack.Aws.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.Aws.dll -------------------------------------------------------------------------------- /src/lib/ServiceStack.Aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.Aws.xml -------------------------------------------------------------------------------- /src/lib/ServiceStack.Client.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.Client.deps.json -------------------------------------------------------------------------------- /src/lib/ServiceStack.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.Client.dll -------------------------------------------------------------------------------- /src/lib/ServiceStack.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.Client.xml -------------------------------------------------------------------------------- /src/lib/ServiceStack.Common.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.Common.deps.json -------------------------------------------------------------------------------- /src/lib/ServiceStack.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.Common.dll -------------------------------------------------------------------------------- /src/lib/ServiceStack.Common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.Common.xml -------------------------------------------------------------------------------- /src/lib/ServiceStack.Interfaces.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.Interfaces.deps.json -------------------------------------------------------------------------------- /src/lib/ServiceStack.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.Interfaces.dll -------------------------------------------------------------------------------- /src/lib/ServiceStack.Interfaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.Interfaces.xml -------------------------------------------------------------------------------- /src/lib/ServiceStack.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.Mvc.dll -------------------------------------------------------------------------------- /src/lib/ServiceStack.OrmLite.MySql.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.OrmLite.MySql.deps.json -------------------------------------------------------------------------------- /src/lib/ServiceStack.OrmLite.MySql.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.OrmLite.MySql.dll -------------------------------------------------------------------------------- /src/lib/ServiceStack.OrmLite.MySql.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.OrmLite.MySql.dll.config -------------------------------------------------------------------------------- /src/lib/ServiceStack.OrmLite.MySql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.OrmLite.MySql.xml -------------------------------------------------------------------------------- /src/lib/ServiceStack.OrmLite.PostgreSQL.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.OrmLite.PostgreSQL.deps.json -------------------------------------------------------------------------------- /src/lib/ServiceStack.OrmLite.PostgreSQL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.OrmLite.PostgreSQL.dll -------------------------------------------------------------------------------- /src/lib/ServiceStack.OrmLite.PostgreSQL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.OrmLite.PostgreSQL.xml -------------------------------------------------------------------------------- /src/lib/ServiceStack.OrmLite.SqlServer.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.OrmLite.SqlServer.deps.json -------------------------------------------------------------------------------- /src/lib/ServiceStack.OrmLite.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.OrmLite.SqlServer.dll -------------------------------------------------------------------------------- /src/lib/ServiceStack.OrmLite.SqlServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.OrmLite.SqlServer.xml -------------------------------------------------------------------------------- /src/lib/ServiceStack.OrmLite.Sqlite.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.OrmLite.Sqlite.deps.json -------------------------------------------------------------------------------- /src/lib/ServiceStack.OrmLite.Sqlite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.OrmLite.Sqlite.dll -------------------------------------------------------------------------------- /src/lib/ServiceStack.OrmLite.Sqlite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.OrmLite.Sqlite.xml -------------------------------------------------------------------------------- /src/lib/ServiceStack.OrmLite.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.OrmLite.deps.json -------------------------------------------------------------------------------- /src/lib/ServiceStack.OrmLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.OrmLite.dll -------------------------------------------------------------------------------- /src/lib/ServiceStack.OrmLite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.OrmLite.xml -------------------------------------------------------------------------------- /src/lib/ServiceStack.Redis.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.Redis.deps.json -------------------------------------------------------------------------------- /src/lib/ServiceStack.Redis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.Redis.dll -------------------------------------------------------------------------------- /src/lib/ServiceStack.Redis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.Redis.xml -------------------------------------------------------------------------------- /src/lib/ServiceStack.Server.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.Server.deps.json -------------------------------------------------------------------------------- /src/lib/ServiceStack.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.Server.dll -------------------------------------------------------------------------------- /src/lib/ServiceStack.Server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.Server.xml -------------------------------------------------------------------------------- /src/lib/ServiceStack.Text.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.Text.deps.json -------------------------------------------------------------------------------- /src/lib/ServiceStack.Text.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.Text.dll -------------------------------------------------------------------------------- /src/lib/ServiceStack.Text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.Text.xml -------------------------------------------------------------------------------- /src/lib/ServiceStack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.dll -------------------------------------------------------------------------------- /src/lib/ServiceStack.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnzb/fastNZB/HEAD/src/lib/ServiceStack.xml --------------------------------------------------------------------------------