From 323af45fbdce1ef199678c53d244a87cefcd2ade Mon Sep 17 00:00:00 2001 From: Alayan-stk-2 Date: Thu, 13 Sep 2018 02:19:00 +0200 Subject: [PATCH] Change profile folder to avoid compatibilities issues As discussed on IRC with Auria. This removes the several issues already noticed when switching between 0.9.3 and git versions (forgotten challenges and settings ; and more recently a crash with highscores). Reminder for git users : you can migrate your data by copying it from the previous folder to the new one, so you won't have to redo your settings/profiles. --- src/io/file_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/io/file_manager.cpp b/src/io/file_manager.cpp index c8e9e506e..96e7fef19 100644 --- a/src/io/file_manager.cpp +++ b/src/io/file_manager.cpp @@ -921,7 +921,7 @@ void FileManager::checkAndCreateConfigDir() if(m_user_config_dir.size()>0 && *m_user_config_dir.rbegin()!='/') m_user_config_dir += "/"; - m_user_config_dir +="0.8.2/"; + m_user_config_dir +="0.10-git/"; if(!checkAndCreateDirectoryP(m_user_config_dir)) { Log::warn("FileManager", "Can not create config dir '%s', "