From e5934848c7aff6b79378ba7c6b7d567850afb5ac Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Thu, 18 Jun 2026 01:06:49 +0900 Subject: [PATCH 1/2] fix: rebuild symlinks when launching --- dzgui/managers/offline.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dzgui/managers/offline.py b/dzgui/managers/offline.py index 15d8ece..a63d42b 100644 --- a/dzgui/managers/offline.py +++ b/dzgui/managers/offline.py @@ -12,7 +12,7 @@ from dzgui.init.proc import is_dayz_running from dzgui.managers.threading import call_on_thread, StoredFunc, ThreadingManager from dzgui.model.model_factory import ModelFactory from dzgui.strings import dialogs -from dzgui.util.symlink import create_custom_symlinks, symlink_mission +from dzgui.util.symlink import create_custom_symlinks, rebuild_symlinks, symlink_mission from dzgui.views.dialogs.filepicker import FolderPicker if TYPE_CHECKING: @@ -96,6 +96,8 @@ class OfflineManager: if len(local_mods) > 0: combined_mods.extend(local_mods) + config = self.controller.get_prefs().paths.config + rebuild_symlinks(config) if len(custom_mods) > 0: new_symlinks = create_custom_symlinks( From ab2b651b6c1f0c96e7262c1e920c154e786785e3 Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Thu, 18 Jun 2026 01:07:00 +0900 Subject: [PATCH 2/2] chore: bump version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 17af853..3f66822 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ description = "DayZ server browser and mod manager for Linux" authors = [ {name = "aclist"} ] -version = "7.0.0b12" +version = "7.0.0b13" license = "GPL-3.0-or-later" license-files = ["LICENSE"] readme = "README.md"