mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 01:14:15 +02:00
[arch] fix: not displaying ignored updates (regression)
This commit is contained in:
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
|
## [0.10.1]
|
||||||
|
### Fixes
|
||||||
|
- Arch
|
||||||
|
- regression: not displaying ignored updates
|
||||||
|
|
||||||
## [0.10.0] 2022-03-14
|
## [0.10.0] 2022-03-14
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
__version__ = '0.10.0'
|
__version__ = '0.10.1'
|
||||||
__app_name__ = 'bauh'
|
__app_name__ = 'bauh'
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
|||||||
@@ -635,7 +635,7 @@ class ArchManager(SoftwareManager):
|
|||||||
if ignored:
|
if ignored:
|
||||||
for p in pkgs:
|
for p in pkgs:
|
||||||
if p.name in ignored:
|
if p.name in ignored:
|
||||||
p.updates_ignored = True
|
p.update_ignored = True
|
||||||
|
|
||||||
return SearchResult(pkgs, None, len(pkgs))
|
return SearchResult(pkgs, None, len(pkgs))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user