Skip to content

Commit

Permalink
fixed: PackageManager doesn't always install packages after firmware …
Browse files Browse the repository at this point in the history
…update
  • Loading branch information
kwindrem committed Apr 5, 2024
1 parent cc767f1 commit 75f31b9
Show file tree
Hide file tree
Showing 7 changed files with 62 additions and 140 deletions.
3 changes: 1 addition & 2 deletions FileSets/VersionIndependent/PageSettingsPackageEdit.qml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,13 @@ MbPage {
property string incompatibleDetails: incompatibleDetailsItem.valid ? incompatibleDetailsItem.value : ""
property bool incompatible: incompatibleReason != ""
property VBusItem platform: VBusItem { bind: Utils.path(servicePrefix, "/Platform") }
property VBusItem installOkItem: VBusItem { bind: getServiceBind ( "InstallOk" ) }
property VBusItem incompatibleResolvableItem: VBusItem { bind: getServiceBind ( "IncompatibleResolvable") }

property bool gitHubValid: gitHubVersion.item.valid && gitHubVersion.item.value.substring (0,1) === "v"
property bool packageValid: packageVersion.item.valid && packageVersion.item.value.substring (0,1) === "v"
property bool installedValid: installedVersion.item.valid && installedVersion.item.value.substring (0,1) === "v"
property bool downloadOk: gitHubValid && gitHubVersion.item.value != ""
property bool installOk: (! incompatible && (installOkItem.valid && installOkItem.value == 1)) ? true : false
property bool installOk: ! incompatible
property string requestedAction: ''
property bool actionPending: requestedAction != ''
property bool waitForAction: editAction.value != '' && ! editError
Expand Down
Loading

0 comments on commit 75f31b9

Please sign in to comment.