Include version in crashdump

This commit is contained in:
Robin Gareus 2020-09-29 17:34:21 +02:00
parent 71212e0c81
commit c6fc4f36a3
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 1 additions and 1 deletions

View File

@ -347,7 +347,7 @@ int main (int argc, char *argv[])
g_mkdir_with_parents (crash_dir.c_str(), 0700);
Glib::DateTime tm (g_date_time_new_now_local ());
string crash_file = string_compose ("%1-crash-%2.txt", PROGRAM_NAME, tm.format ("%s"));
string crash_file = string_compose ("%1-%2-crash-%3.txt", PROGRAM_NAME, VERSIONSTRING, tm.format ("%s"));
string crash_path = Glib::build_filename (crash_dir, crash_file);
ExcHndlInit ();