no message
This commit is contained in:
parent
5bdf224e1b
commit
75875af36a
7 changed files with 2752 additions and 4428 deletions
|
|
@ -22,10 +22,15 @@
|
|||
"main": "src/main.ts",
|
||||
"polyfills": "src/polyfills.ts",
|
||||
"tsConfig": "tsconfig.app.json",
|
||||
"aot": true,
|
||||
"assets": ["src/favicon.ico", "src/assets"],
|
||||
"styles": ["src/styles.scss"],
|
||||
"scripts": []
|
||||
"scripts": [],
|
||||
"vendorChunk": true,
|
||||
"extractLicenses": false,
|
||||
"buildOptimizer": false,
|
||||
"sourceMap": true,
|
||||
"optimization": false,
|
||||
"namedChunks": true
|
||||
},
|
||||
"configurations": {
|
||||
"production": {
|
||||
|
|
@ -55,7 +60,8 @@
|
|||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"defaultConfiguration": ""
|
||||
},
|
||||
"serve": {
|
||||
"builder": "@angular-devkit/build-angular:dev-server",
|
||||
|
|
|
|||
7116
client/package-lock.json
generated
7116
client/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -12,42 +12,42 @@
|
|||
},
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@angular/animations": "~11.2.11",
|
||||
"@angular/common": "~11.2.11",
|
||||
"@angular/compiler": "~11.2.11",
|
||||
"@angular/core": "~11.2.11",
|
||||
"@angular/forms": "~11.2.11",
|
||||
"@angular/platform-browser": "~11.2.11",
|
||||
"@angular/platform-browser-dynamic": "~11.2.11",
|
||||
"@angular/router": "~11.2.11",
|
||||
"@angular/animations": "~12.0.3",
|
||||
"@angular/common": "~12.0.3",
|
||||
"@angular/compiler": "~12.0.3",
|
||||
"@angular/core": "~12.0.3",
|
||||
"@angular/forms": "~12.0.3",
|
||||
"@angular/platform-browser": "~12.0.3",
|
||||
"@angular/platform-browser-dynamic": "~12.0.3",
|
||||
"@angular/router": "~12.0.3",
|
||||
"@fortawesome/fontawesome-free": "^5.15.3",
|
||||
"@microsoft/signalr": "^5.0.5",
|
||||
"@microsoft/signalr": "^5.0.6",
|
||||
"bulma": "^0.9.2",
|
||||
"curray": "^1.0.8",
|
||||
"ngx-filesize": "^2.0.16",
|
||||
"rxjs": "~6.6.7",
|
||||
"rxjs": "~7.1.0",
|
||||
"tslib": "^2.2.0",
|
||||
"zone.js": "~0.11.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular-devkit/build-angular": "~0.1102.10",
|
||||
"@angular/cli": "~11.2.10",
|
||||
"@angular/compiler-cli": "~11.2.11",
|
||||
"@angular/language-service": "~11.2.11",
|
||||
"@types/node": "^15.0.0",
|
||||
"@types/jasmine": "~3.6.10",
|
||||
"@types/jasminewd2": "~2.0.8",
|
||||
"codelyzer": "^6.0.1",
|
||||
"@angular-devkit/build-angular": "~12.0.3",
|
||||
"@angular/cli": "~12.0.3",
|
||||
"@angular/compiler-cli": "~12.0.3",
|
||||
"@angular/language-service": "~12.0.3",
|
||||
"@types/node": "^15.12.1",
|
||||
"@types/jasmine": "~3.7.7",
|
||||
"@types/jasminewd2": "~2.0.9",
|
||||
"codelyzer": "^6.0.2",
|
||||
"jasmine-core": "~3.7.1",
|
||||
"jasmine-spec-reporter": "~7.0.0",
|
||||
"karma": "~6.3.2",
|
||||
"karma": "~6.3.3",
|
||||
"karma-chrome-launcher": "~3.1.0",
|
||||
"karma-coverage-istanbul-reporter": "~3.0.3",
|
||||
"karma-jasmine": "~4.0.1",
|
||||
"karma-jasmine-html-reporter": "^1.5.4",
|
||||
"karma-jasmine-html-reporter": "^1.6.0",
|
||||
"protractor": "~7.0.0",
|
||||
"ts-node": "~9.1.1",
|
||||
"ts-node": "~10.0.0",
|
||||
"tslint": "~6.1.0",
|
||||
"typescript": "~4.1.5"
|
||||
"typescript": "~4.2.4"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,4 +13,4 @@ export const environment = {
|
|||
* This import should be commented out in production mode because it will have a negative impact
|
||||
* on performance if an error is thrown.
|
||||
*/
|
||||
// import 'zone.js/dist/zone-error'; // Included with Angular CLI.
|
||||
// import 'zone.js/plugins/zone-error'; // Included with Angular CLI.
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@
|
|||
/***************************************************************************************************
|
||||
* Zone JS is required by default for Angular itself.
|
||||
*/
|
||||
import 'zone.js/dist/zone'; // Included with Angular CLI.
|
||||
import 'zone.js'; // Included with Angular CLI.
|
||||
|
||||
/***************************************************************************************************
|
||||
* APPLICATION IMPORTS
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
// This file is required by karma.conf.js and loads recursively all the .spec and framework files
|
||||
|
||||
import 'zone.js/dist/zone-testing';
|
||||
import 'zone.js/testing';
|
||||
import { getTestBed } from '@angular/core/testing';
|
||||
import { BrowserDynamicTestingModule, platformBrowserDynamicTesting } from '@angular/platform-browser-dynamic/testing';
|
||||
|
||||
|
|
|
|||
|
|
@ -449,7 +449,7 @@ namespace RdtClient.Service.Services
|
|||
|
||||
if (!String.IsNullOrWhiteSpace(rdTorrent.OriginalFilename))
|
||||
{
|
||||
torrent.RdName = rdTorrent.Filename;
|
||||
torrent.RdName = rdTorrent.OriginalFilename;
|
||||
}
|
||||
|
||||
if (rdTorrent.Bytes > 0)
|
||||
|
|
|
|||
Loading…
Reference in a new issue