Compare commits
3 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 2431dba844 | |||
| 450df8f92a | |||
| 6e2534595d |
@@ -1,3 +1,60 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu May 22 09:08:39 UTC 2025 - Edgar Aichinger <edogawa@aon.at>
|
||||
|
||||
- correct source URL and tarball name
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun May 11 08:56:29 UTC 2025 - Edgar Aichinger <edogawa@aon.at>
|
||||
|
||||
- Update to 5.0.0:
|
||||
* Add a display-language option in preferences (demo video)
|
||||
* Enable closing the application via CTRL+Q or CTRL+W
|
||||
* Make updates notifications less intrusive
|
||||
* Fix the --debug command line switch
|
||||
* Clean variants of Discord such as beta and snap
|
||||
* Fix loading of personal cleaners in portable mode
|
||||
* Improve experience on multi-user systems by ignoring other users' running processes
|
||||
* Prevent invalid entries in the custom and whitelist tabs
|
||||
* Improve stability significantly
|
||||
* Linux:
|
||||
* Clean Librewolf
|
||||
* Clean non-beta Microsoft Edge
|
||||
* Clean Bash's temporary files
|
||||
* Clean Geary, the email client
|
||||
* Improve cleaning of rotated logs
|
||||
* Improve cleaning of broken .desktop files
|
||||
* Add AppIndicator icon
|
||||
* Fix CleanerML external processes with spaces
|
||||
* Fix usage of dconf as external command
|
||||
* Add .rpm packages for Fedora 41 and 42, and CentOS 9 Stream
|
||||
* Add .deb packages for Ubuntu 24.10 and Ubuntu 25.04
|
||||
* Windows:
|
||||
* Patch DLL-related vulnerabilities (CVE-2023-47113, CVE-2025-32780)
|
||||
* Protect MMC snap-ins (e.g., Device Manager, Computer Management)
|
||||
* Upgrade to Python 3.11.10 and GTK 3.24.43
|
||||
* Update NSIS installer to 3.11
|
||||
* Add metadata such as company name to bleachbit.exe
|
||||
* Drop support for starting on Windows XP and 7
|
||||
* Update the Windows 10 theme by Christian Medel
|
||||
* Fix SSL: CERTIFICATE_VERIFY_FAILED error on update checks
|
||||
* Developers:
|
||||
* Switch Linux CI from Travis CI to GitHub Actions
|
||||
* Clean up the codebase extensively
|
||||
* Overhaul RPM and DEB build scripts
|
||||
* List of commits
|
||||
* List of closed issues
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 29 17:05:03 UTC 2024 - Michael Vetter <mvetter@suse.com>
|
||||
|
||||
- Update to 4.6.2:
|
||||
* Clean more cookies, cache, and sessions in Google Chrome.
|
||||
* Fix ValueError: Unexpected UTF-8 BOM (decode using utf-8-sig)
|
||||
when cleaning JSON files in Google Chrome
|
||||
* Fix detection of Wayland.
|
||||
* Fix error SyntaxWarning: invalid escape sequence with Python 3.12.
|
||||
* Fix missing developer name in metainfo.xml file.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 14 16:47:15 UTC 2023 - Wolfgang Frisch <wolfgang.frisch@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package bleachbit
|
||||
#
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
# Copyright (c) 8/2011 by open-slx GmbH <Sascha.Manns@open-slx.de>
|
||||
# Copyright (c) 2010 - 7/2011 by Sascha Manns <saigkill@opensuse.org>
|
||||
#
|
||||
@@ -20,7 +20,7 @@
|
||||
|
||||
%define _desktopname org.bleachbit.BleachBit
|
||||
Name: bleachbit
|
||||
Version: 4.6.0
|
||||
Version: 5.0.0
|
||||
Release: 0
|
||||
Summary: Tool for removing unnecessary files, freeing space, and maintaining privacy
|
||||
License: GPL-3.0-only
|
||||
@@ -73,14 +73,19 @@ sed -i -e 's|%{_bindir}/env python.*|%{_bindir}/python3|g' \
|
||||
sed -i 's/^import mock/import unittest.mock as mock/' tests/*.py
|
||||
|
||||
# These two use network
|
||||
sed -Ei 's/(test_download_url_to_fn|test_Chaff)/_\1/g' tests/TestChaff.py
|
||||
# These three use network
|
||||
sed -Ei 's/(test_download_url_to_fn|test_Chaff|test_have_models)/_\1/g' tests/TestChaff.py
|
||||
# These four use network
|
||||
sed -Ei 's/(test_update_url|test_update_winapp2|test_get_ip_for_url)/_\1/g' tests/TestUpdate.py
|
||||
# Test fails
|
||||
sed -Ei 's/(test_notify)/_\1/g' tests/TestGUI.py
|
||||
|
||||
# These use network
|
||||
sed -Ei 's/(test_download_url_to_fn|test_fetch_url_nonretry|test_fetch_url_retry|test_get_ip_for_url)/_\1/g' tests/TestNetwork.py
|
||||
# Tests fail / use network
|
||||
sed -Ei 's/(test_notify|test_chaff)/_\1/g' tests/TestGUI.py
|
||||
# Tests fail / use network
|
||||
sed -Ei 's/(test_get_real_uid)/_\1/g' tests/TestGeneral.py
|
||||
# Test is very slow
|
||||
sed -Ei 's/(test_wipe_path)/_\1/g' tests/TestFileUtilities.py
|
||||
# Wants to mount
|
||||
sed -Ei 's/(test_same_partition)/_\1/g' tests/TestFileUtilities.py
|
||||
|
||||
%build
|
||||
%make_build -C po local
|
||||
@@ -121,6 +126,7 @@ xvfb-run make tests
|
||||
%{_datadir}/applications/%{_desktopname}-root.desktop
|
||||
%{_datadir}/metainfo/%{_desktopname}.metainfo.xml
|
||||
%{_datadir}/pixmaps/%{name}.png
|
||||
%{_datadir}/pixmaps/%{name}-indicator.svg
|
||||
%{_datadir}/polkit-1/actions/org.%{name}.policy
|
||||
|
||||
%files lang -f %{name}.lang
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6d32db1200fd6e89f0fa822e01ce8eaac9749e84788970b0f562d77b271db629
|
||||
size 1569278
|
||||
3
v5.0.0.tar.gz
Normal file
3
v5.0.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e1cba661a80f34240e3c01a47edc8319c0e588e2b0bcfc3a0f4c84d3f979f813
|
||||
size 1592861
|
||||
Reference in New Issue
Block a user