New state for Update Dialog

This commit is contained in:
Fedor Indutny 2023-03-15 09:57:27 -07:00 committed by GitHub
parent 5949cc11b1
commit a1ab62f878
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 93 additions and 29 deletions

View file

@ -3,7 +3,7 @@
export enum DialogType {
None = 'None',
Update = 'Update',
AutoUpdate = 'AutoUpdate',
Cannot_Update = 'Cannot_Update',
Cannot_Update_Require_Manual = 'Cannot_Update_Require_Manual',
UnsupportedOS = 'UnsupportedOS',
@ -11,4 +11,5 @@ export enum DialogType {
DownloadReady = 'DownloadReady',
FullDownloadReady = 'FullDownloadReady',
Downloading = 'Downloading',
DownloadedUpdate = 'DownloadedUpdate',
}