Feat/update tab (#1865)

* implement updates tab for viewing all updates from all marketplaces in one place

* remove auto-check-updates

* feat: implement updates page (#1888)

* feat: implement updates page

* chore: comments

* better styling in update tab

* rework marketplace service (#1891)

* rework marketplace service

* remove unneeded ?

* fix: refactor marketplace to cache requests

Co-authored-by: waterplea <alexander@inkin.ru>

Co-authored-by: Alex Inkin <alexander@inkin.ru>
This commit is contained in:
Matt Hill
2022-10-27 15:48:12 -06:00
committed by Aiden McClelland
parent d380cc31fa
commit 26c37ba824
53 changed files with 723 additions and 724 deletions

View File

@@ -1,8 +1,11 @@
import { NgModule } from '@angular/core'
import { InstallProgressPipe } from './install-progress.pipe'
import {
InstallProgressDisplayPipe,
InstallProgressPipe,
} from './install-progress.pipe'
@NgModule({
declarations: [InstallProgressPipe],
exports: [InstallProgressPipe],
declarations: [InstallProgressPipe, InstallProgressDisplayPipe],
exports: [InstallProgressPipe, InstallProgressDisplayPipe],
})
export class InstallProgressPipeModule {}