mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-31 04:23:40 +00:00
prog bar buff
This commit is contained in:
committed by
Aiden McClelland
parent
f8f64e8d6e
commit
7178e82ff5
@@ -140,18 +140,21 @@
|
|||||||
<ion-progress-bar
|
<ion-progress-bar
|
||||||
[color]="pkg['install-progress']['download-complete'] ? 'success' : 'secondary'"
|
[color]="pkg['install-progress']['download-complete'] ? 'success' : 'secondary'"
|
||||||
[value]="installProgress.downloadProgress / 100"
|
[value]="installProgress.downloadProgress / 100"
|
||||||
|
[buffer]="!installProgress.downloadProgress ? 0 : 1"
|
||||||
></ion-progress-bar>
|
></ion-progress-bar>
|
||||||
|
|
||||||
<p>Validating: {{ installProgress.validateProgress }}%</p>
|
<p>Validating: {{ installProgress.validateProgress }}%</p>
|
||||||
<ion-progress-bar
|
<ion-progress-bar
|
||||||
[color]="pkg['install-progress']['validation-complete'] ? 'success' : 'secondary'"
|
[color]="pkg['install-progress']['validation-complete'] ? 'success' : 'secondary'"
|
||||||
[value]="installProgress.validateProgress / 100"
|
[value]="installProgress.validateProgress / 100"
|
||||||
|
[buffer]="installProgress.downloadProgress === 100 && !installProgress.validateProgress ? 0 : 1"
|
||||||
></ion-progress-bar>
|
></ion-progress-bar>
|
||||||
|
|
||||||
<p>Unpacking: {{ installProgress.unpackProgress }}%</p>
|
<p>Unpacking: {{ installProgress.unpackProgress }}%</p>
|
||||||
<ion-progress-bar
|
<ion-progress-bar
|
||||||
[color]="pkg['install-progress']['unpack-complete'] ? 'success' : 'secondary'"
|
[color]="pkg['install-progress']['unpack-complete'] ? 'success' : 'secondary'"
|
||||||
[value]="installProgress.unpackProgress / 100"
|
[value]="installProgress.unpackProgress / 100"
|
||||||
|
[buffer]="installProgress.validateProgress === 100 && !installProgress.unpackProgress ? 0 : 1"
|
||||||
></ion-progress-bar>
|
></ion-progress-bar>
|
||||||
</div>
|
</div>
|
||||||
</ion-content>
|
</ion-content>
|
||||||
|
|||||||
Reference in New Issue
Block a user