diff options
author | vaxerski <[email protected]> | 2023-03-17 11:50:31 +0000 |
---|---|---|
committer | vaxerski <[email protected]> | 2023-03-17 11:51:16 +0000 |
commit | 5b924aaf608d91e411bd4c05751dc0b7323c36a7 (patch) | |
tree | 9848d35e13f4dcf158d09c6009ee878bad1d9523 | |
parent | 606cb2832aff2c7305da1f880ce732f7eb464d04 (diff) | |
download | Hyprland-5b924aaf608d91e411bd4c05751dc0b7323c36a7.tar.gz Hyprland-5b924aaf608d91e411bd4c05751dc0b7323c36a7.zip |
crashReporter: add hl ver
-rw-r--r-- | src/debug/CrashReporter.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/debug/CrashReporter.cpp b/src/debug/CrashReporter.cpp index 713f91df..4037ad44 100644 --- a/src/debug/CrashReporter.cpp +++ b/src/debug/CrashReporter.cpp @@ -46,6 +46,8 @@ void CrashReporter::createAndSaveCrash(int sig) { finalCrashReport += getFormat("Hyprland received signal %d (%s)\n\n", sig, strsignal(sig)); + finalCrashReport += getFormat("Version: %s\n\n", GIT_COMMIT_HASH); + if (!g_pPluginSystem->getAllPlugins().empty()) { finalCrashReport += "Hyprland seems to be running with plugins. This crash might not be Hyprland's fault.\nPlugins:\n"; |