
* Added the skeleton code for layout, hooked up Age Rating, Publication Status, and Tags * Tweaked message of Scan service to Finished scan of to better indicate the total scan time * Hooked in foundation for person typeaheads * Fixed people not populating typeaheads on load * For manga/comics, when parsing, set the SeriesSort from ComicInfo if it exists. * Implemented the ability to override and create new genre tags. Code is ready to flush out the rest. * Ability to update metadata from the UI is hooked up. Next is locking. * Updated typeahead to allow for non-multiple usage. Implemented ability to update Language tag in Series Metadata. * Fixed a bug in GetContinuePoint for a case where we have Volumes, Loose Leaf chapters and no read progress. * Added ETag headers on Images to allow for better caching (bookmarks and images in manga reader) * Built out UI code to show locked indication to user * Implemented Series locking and refactored a lot of styles in typeahead to make the lock setting work, plus misc cleanup. * Added locked properties to dtos. Updated typeahead loading indicator to not interfere with close button if present * Hooked up locking flags in UI * Integrated regular field locking/unlocking * Removed some old code * Prevent input group from wrapping * Implemented some basic layout for metadata on volume/chapter card modal. Refactored out all metadata from Chapter object in terms of UI and put into a separate call to ensure speedy delivery and simplicity of code. * Refactored code to hide covers section if not an admin * Implemented ability to modify a chapter/volume cover from the detail modal * Removed a few variables and change cover image modal * Added bookmark to single chapter view * Put a temp fix in for a ngb v12 z-index bug (reported). Bumped ngb to 12.0 stable and fixed some small rendering bugs * loading buttons ftw * Lots of cleanup, looks like the story is finished * Changed action name from Info to Details * Style tweaks * Fixed an issue where Summary would assume it's locked due to a subscription firing on setting the model * Fixed some misc bugs * Code smells Co-authored-by: Robbie Davis <robbie@therobbiedavis.com>
80 lines
2.2 KiB
JSON
80 lines
2.2 KiB
JSON
{
|
|
"name": "kavita-webui",
|
|
"version": "0.4.2",
|
|
"scripts": {
|
|
"ng": "ng",
|
|
"start": "ng serve",
|
|
"build": "ng build",
|
|
"prod": "ng build --configuration production",
|
|
"explore": "ng build --stats-json && webpack-bundle-analyzer dist/stats.json",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage",
|
|
"lint": "ng lint",
|
|
"e2e": "ng e2e"
|
|
},
|
|
"private": true,
|
|
"dependencies": {
|
|
"@angular-slider/ngx-slider": "^2.0.3",
|
|
"@angular/animations": "~13.2.2",
|
|
"@angular/cdk": "^13.2.2",
|
|
"@angular/common": "~13.2.2",
|
|
"@angular/compiler": "~13.2.2",
|
|
"@angular/core": "~13.2.2",
|
|
"@angular/forms": "~13.2.2",
|
|
"@angular/localize": "~13.2.2",
|
|
"@angular/platform-browser": "~13.2.2",
|
|
"@angular/platform-browser-dynamic": "~13.2.2",
|
|
"@angular/router": "~13.2.2",
|
|
"@fortawesome/fontawesome-free": "^6.0.0",
|
|
"@microsoft/signalr": "^6.0.2",
|
|
"@ng-bootstrap/ng-bootstrap": "^12.0.0",
|
|
"@ngx-lite/nav-drawer": "^0.4.7",
|
|
"@ngx-lite/util": "0.0.1",
|
|
"@popperjs/core": "^2.11.2",
|
|
"@types/file-saver": "^2.0.5",
|
|
"bootstrap": "^5.1.2",
|
|
"bowser": "^2.11.0",
|
|
"file-saver": "^2.0.5",
|
|
"lazysizes": "^5.3.2",
|
|
"ng-circle-progress": "^1.6.0",
|
|
"ngx-file-drop": "^13.0.0",
|
|
"ngx-toastr": "^14.2.1",
|
|
"rxjs": "~7.5.4",
|
|
"swiper": "^8.0.6",
|
|
"tslib": "^2.3.1",
|
|
"webpack-bundle-analyzer": "^4.5.0",
|
|
"zone.js": "~0.11.4"
|
|
},
|
|
"devDependencies": {
|
|
"@angular-devkit/build-angular": "~13.2.3",
|
|
"@angular/cli": "^13.2.3",
|
|
"@angular/compiler-cli": "~13.2.2",
|
|
"@types/jest": "^27.4.0",
|
|
"@types/node": "^17.0.17",
|
|
"codelyzer": "^6.0.2",
|
|
"jest": "^27.5.1",
|
|
"jest-preset-angular": "^11.1.0",
|
|
"karma-coverage": "~2.2.0",
|
|
"protractor": "~7.0.0",
|
|
"ts-node": "~10.5.0",
|
|
"tslint": "^6.1.3",
|
|
"typescript": "~4.5.5"
|
|
},
|
|
"jest": {
|
|
"preset": "jest-preset-angular",
|
|
"setupFilesAfterEnv": [
|
|
"<rootDir>/setupJest.ts"
|
|
],
|
|
"testPathIgnorePatterns": [
|
|
"<rootDir>/node_modules/",
|
|
"<rootDir>/dist/"
|
|
],
|
|
"globals": {
|
|
"ts-jest": {
|
|
"tsConfig": "<rootDir>/tsconfig.spec.json",
|
|
"stringifyContentPathRegex": "\\.html$"
|
|
}
|
|
}
|
|
}
|
|
}
|