Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package protontricks for openSUSE:Factory checked in at 2026-04-01 19:53:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/protontricks (Old) and /work/SRC/openSUSE:Factory/.protontricks.new.21863 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "protontricks" Wed Apr 1 19:53:04 2026 rev:6 rq:1344165 version:1.14.1 Changes: -------- --- /work/SRC/openSUSE:Factory/protontricks/protontricks.changes 2024-10-18 15:55:36.719153079 +0200 +++ /work/SRC/openSUSE:Factory/.protontricks.new.21863/protontricks.changes 2026-04-01 19:55:03.152154605 +0200 @@ -1,0 +2,30 @@ +Wed Apr 1 10:26:38 UTC 2026 - Ralf Habacker <[email protected]> + +- Update to version 1.14.1: + * Fix Steam installation being prompted twice when using protontricks-launch + * Fix Steam Runtime crash if it's installed under a blacklisted root directory (eg. /run/<path> instead of /run/media/<path>) + * Fix missing filesystem permissions not being detected under Flatpak +- From update to version 1.14.0 + * Use $STEAM_COMPAT_DATA_PATH/pfx as the game's prefix path if STEAM_COMPAT_DATA_PATH environment variable is set + * Add --list-all/-L command to list all games for all found Steam installations + * Add --search-all/-S command to search for games among all found Steam installations + * Winetricks is no longer required when running non-Winetricks commands (eg. --command or --list) + * Fix detection for custom compatibility tools installed outside Steam directory + * Fix detection for custom compatibility tool placing their manifest directly under compatibilitytools.d directory + * Fix crash caused by minimal appmanifest files which can be generated by tools like NonSteamLaunchers Docky Loader Version +- From update to version 1.13.1 + * Fix Steam library folder discovery by using case-insensitive path matching + * Fix default Proton version discovery. Protontricks will now use Proton Experimental as default per Steam client's hardcoded default setting, with stable Proton as fallback. +- From update to version 1.13.0 + * Improve compatibility by setting additional Proton related environment variables when applicable + * Fixed locale is now used for SteamOS 3, not only Steam Deck +- From update to version 1.12.1 + * Fix missing app icons for games installed using newer Steam client + * Fix spurious "unknown file arch" Winetricks warnings (newer Winetricks required) + * Drop Python 3.6 support +- Fix warning: suse-update-desktop-file-deprecated +- Removed obsolete build dependency to python3-Pillow +- Rebased patches: + * 0001-Fix-using-local-vdf-module.patch + +------------------------------------------------------------------- Old: ---- protontricks-1.12.0.tar.xz New: ---- protontricks-1.14.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ protontricks.spec ++++++ --- /var/tmp/diff_new_pack.TmeFlr/_old 2026-04-01 19:55:04.132195061 +0200 +++ /var/tmp/diff_new_pack.TmeFlr/_new 2026-04-01 19:55:04.144195556 +0200 @@ -1,7 +1,7 @@ # # spec file for package protontricks # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2026 SUSE LLC and contributors # Copyright (c) 2019 Matthias Fehring <[email protected]> # # All modifications and additions to the file contributed by third parties @@ -18,7 +18,7 @@ Name: protontricks -Version: 1.12.0 +Version: 1.14.1 Release: 0 Summary: Winetricks for Proton-enabled Games License: GPL-3.0-only @@ -28,11 +28,8 @@ BuildRequires: fdupes BuildRequires: git-core BuildRequires: python-rpm-macros -BuildRequires: python3-Pillow BuildRequires: python3-setuptools_scm -BuildRequires: update-desktop-files Requires: python3-Pillow -Requires: python3-setuptools Requires: winetricks Requires: (yad or zenity) BuildArch: noarch @@ -51,7 +48,6 @@ %install %python3_install -%suse_update_desktop_file %{name} %fdupes -s %{buildroot} %files ++++++ 0001-Fix-using-local-vdf-module.patch ++++++ --- /var/tmp/diff_new_pack.TmeFlr/_old 2026-04-01 19:55:04.248199849 +0200 +++ /var/tmp/diff_new_pack.TmeFlr/_new 2026-04-01 19:55:04.260200344 +0200 @@ -1,6 +1,6 @@ -From b78c219b2441d6a9738ac56ba6aae74c177ea851 Mon Sep 17 00:00:00 2001 +From 4dbc1bd54ef9c5a2f91ca4c537df3d70a014a06c Mon Sep 17 00:00:00 2001 From: Ralf Habacker <[email protected]> -Date: Thu, 10 Oct 2024 13:46:03 +0200 +Date: Wed, 1 Apr 2026 12:26:04 +0200 Subject: [PATCH] Fix using local vdf module --- @@ -12,13 +12,13 @@ 5 files changed, 4 insertions(+), 5 deletions(-) diff --git a/setup.cfg b/setup.cfg -index 7168136..44c9d3a 100644 +index 45185c6..44d60c2 100644 --- a/setup.cfg +++ b/setup.cfg -@@ -30,7 +30,6 @@ package_dir = +@@ -29,7 +29,6 @@ package_dir = + = src include_package_data = True install_requires = - setuptools # Required for pkg_resources - vdf>=3.2 Pillow setup_requires = @@ -37,10 +37,10 @@ # Py2 & Py3 compatibility if sys.version_info[0] >= 3: diff --git a/src/protontricks/steam.py b/src/protontricks/steam.py -index 98793e3..c8307ff 100644 +index 5f13206..888f53d 100644 --- a/src/protontricks/steam.py +++ b/src/protontricks/steam.py -@@ -6,7 +6,7 @@ import zlib +@@ -8,7 +8,7 @@ import glob from collections import OrderedDict from pathlib import Path @@ -50,7 +50,7 @@ from ._vdf import binary_loads as vendored_binary_loads from .util import is_steam_deck, lower_dict diff --git a/tests/conftest.py b/tests/conftest.py -index 3553a94..c6d3706 100644 +index e604326..17fb338 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -8,7 +8,7 @@ from pathlib import Path @@ -63,7 +63,7 @@ from protontricks.cli.desktop_install import \ cli as desktop_install_cli_entrypoint diff --git a/tests/test_steam.py b/tests/test_steam.py -index 347a034..6cb255f 100644 +index 81c3dc0..4a2c5bd 100644 --- a/tests/test_steam.py +++ b/tests/test_steam.py @@ -4,7 +4,7 @@ import time @@ -76,6 +76,6 @@ from protontricks.steam import (SteamApp, _get_steamapps_subdirs, find_appid_proton_prefix, -- -2.46.0 +2.51.0 ++++++ _service ++++++ --- /var/tmp/diff_new_pack.TmeFlr/_old 2026-04-01 19:55:04.292201666 +0200 +++ /var/tmp/diff_new_pack.TmeFlr/_new 2026-04-01 19:55:04.304202160 +0200 @@ -2,7 +2,7 @@ <service name="tar_scm" mode="manual"> <param name="scm">git</param> <param name="url">https://github.com/Matoking/protontricks.git</param> - <param name="revision">1.12.0</param> + <param name="revision">1.14.1</param> <param name="versionformat">@PARENT_TAG@</param> <param name="package-meta">yes</param> </service> ++++++ protontricks-1.12.0.tar.xz -> protontricks-1.14.1.tar.xz ++++++ ++++ 3917 lines of diff (skipped)
