Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package DoomRunner for openSUSE:Factory checked in at 2026-06-13 21:33:28 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/DoomRunner (Old) and /work/SRC/openSUSE:Factory/.DoomRunner.new.1981 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "DoomRunner" Sat Jun 13 21:33:28 2026 rev:2 rq:1359102 version:1.9.2 Changes: -------- --- /work/SRC/openSUSE:Factory/DoomRunner/DoomRunner.changes 2026-06-08 14:25:49.674320634 +0200 +++ /work/SRC/openSUSE:Factory/.DoomRunner.new.1981/DoomRunner.changes 2026-06-13 21:33:32.020963928 +0200 @@ -1,0 +2,5 @@ +Sat Jun 13 15:15:49 UTC 2026 - Michael Pujos <[email protected]> + +- added fix-symlinks.patch + +------------------------------------------------------------------- New: ---- fix-symlinks.patch ----------(New B)---------- New: - added fix-symlinks.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ DoomRunner.spec ++++++ --- /var/tmp/diff_new_pack.eIPBw2/_old 2026-06-13 21:33:34.505067602 +0200 +++ /var/tmp/diff_new_pack.eIPBw2/_new 2026-06-13 21:33:34.517068103 +0200 @@ -22,6 +22,8 @@ License: GPL-3.0-or-later URL: https://github.com/Youda008/DoomRunner Source: https://github.com/Youda008/DoomRunner/archive/refs/tags/v1.9.2.tar.gz#/%{name}-%{version}.tar.gz +# PATCH-FIX-UPSTREAM -- Commit 79a4519 +Patch0: fix-symlinks.patch BuildRequires: hicolor-icon-theme BuildRequires: pkgconfig BuildRequires: pkgconfig(Qt6Network) @@ -35,7 +37,7 @@ switching between them. %prep -%autosetup +%autosetup -p1 %build %qmake6 QMAKE_POST_LINK='$(STRIP) $(TARGET)' ++++++ fix-symlinks.patch ++++++ >From 3a772385a649cd01a1f1fdbcf592059d53b4d51d Mon Sep 17 00:00:00 2001 From: nnelchior <[email protected]> Date: Wed, 10 Jun 2026 22:35:36 +0200 Subject: [PATCH] fix: enable visibility of symbolic links in file browser (#288) --- Sources/MainWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/MainWindow.cpp b/Sources/MainWindow.cpp index 50e29b7..a67d129 100644 --- a/Sources/MainWindow.cpp +++ b/Sources/MainWindow.cpp @@ -1124,7 +1124,7 @@ void MainWindow::setupMapPackList() ui->mapDirView->setSelectionMode( QAbstractItemView::ExtendedSelection ); // set item filters - mapModel.setFilter( QDir::AllDirs | QDir::Files | QDir::NoDotAndDotDot | QDir::NoSymLinks ); + mapModel.setFilter( QDir::AllDirs | QDir::Files | QDir::NoDotAndDotDot ); mapModel.setNameFilters( makeFileSystemModelFilter( doom::getModSuffixes() ) ); mapModel.setNameFilterDisables( false );
