From 9b805ab9243a483bfb084e556e2247d75d7c29ad Mon Sep 17 00:00:00 2001 From: Limo Date: Fri, 2 May 2025 22:31:33 +0200 Subject: [PATCH] update changelog --- install_files/changelogs.json | 3 ++- src/ui/changelogdialog.cpp | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/install_files/changelogs.json b/install_files/changelogs.json index 90a11f4..262f63b 100644 --- a/install_files/changelogs.json +++ b/install_files/changelogs.json @@ -17,7 +17,8 @@ }, { "type" : 2, - "short_description" : "Fixed crash on mod import during root level detection" + "short_description" : "Fixed crash on mod import during root level detection", + "issue" : 176 } ] }, diff --git a/src/ui/changelogdialog.cpp b/src/ui/changelogdialog.cpp index 0e36db3..b5bcef6 100644 --- a/src/ui/changelogdialog.cpp +++ b/src/ui/changelogdialog.cpp @@ -21,6 +21,7 @@ ChangelogDialog::ChangelogDialog(bool is_flatpak, QWidget* parent) : if(!is_flatpak && sfs::exists("install_files")) path = "install_files"; path /= "changelogs.json"; + Log::debug(std::format("Changelog path: '{}'", path.string())); if(!sfs::exists(path)) { Log::error(std::format("Could not find changelog file at '{}'.", path.string()));