mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 02:24:16 +02:00
[arch] fix -> some operations are keeping the wrong substatus during specific scenarios
This commit is contained in:
@@ -18,7 +18,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||||||
### Fixes
|
### Fixes
|
||||||
- AppImage
|
- AppImage
|
||||||
- some installed applications cannot be launched by their desktop entries (regression from **0.9.10**) [#155](https://github.com/vinifmor/bauh/issues/155). If any of your installed AppImages are affected by this issue, just reinstall them.
|
- some installed applications cannot be launched by their desktop entries (regression from **0.9.10**) [#155](https://github.com/vinifmor/bauh/issues/155). If any of your installed AppImages are affected by this issue, just reinstall them.
|
||||||
|
- Arch
|
||||||
|
- some operations are keeping the wrong substatus during specific scenarios
|
||||||
- Flatpak
|
- Flatpak
|
||||||
- crashing for Flatpak 1.6.5 when there are updates [#145](https://github.com/vinifmor/bauh/issues/145)
|
- crashing for Flatpak 1.6.5 when there are updates [#145](https://github.com/vinifmor/bauh/issues/145)
|
||||||
|
|
||||||
|
|||||||
@@ -101,11 +101,11 @@ class TransactionStatusHandler(Thread):
|
|||||||
else:
|
else:
|
||||||
performed = self.get_performed()
|
performed = self.get_performed()
|
||||||
|
|
||||||
if performed == 0 and self.downloading > 0:
|
if performed == self.pkgs_to_sync:
|
||||||
self.watcher.change_substatus('')
|
|
||||||
elif performed == self.pkgs_to_sync:
|
|
||||||
self.watcher.change_substatus(self.i18n['finishing'].capitalize())
|
self.watcher.change_substatus(self.i18n['finishing'].capitalize())
|
||||||
return False
|
return False
|
||||||
|
else:
|
||||||
|
self.watcher.change_substatus('')
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user