]> git.xonotic.org Git - xonotic/netradiant.git/commitdiff
remove version string from home config path 63/head
authorThomas Debesse <dev@illwieckz.net>
Thu, 13 Jul 2017 15:03:31 +0000 (17:03 +0200)
committerThomas Debesse <dev@illwieckz.net>
Sat, 29 Jul 2017 16:23:07 +0000 (18:23 +0200)
- GtkRadiant uses ~/.radiant/1.6.0/
- UFORadiant uses `~/.ufoai/radiant/
- DarkRadiant uses ~/.darkradiant/
- NetRadiant was using uses both ~/.netradiant/1.5.0/ and ~/.netradiant/1.1.5/, which is not defined by the version but the way you build it.
- AARadiant uses `~/.aaradiant/1.5.0/
- XrealRadiant used ~/.rxealradiant/

I guess no one Radiant out there needs a version number in config path to not mess with other Radiants.

radiant/main.cpp

index 97fc2745e0fd897c440791d8fa0590c0a74c9dd8..e46d903fff70cd37b0a7be05cd5b0cd074fbbbf2 100644 (file)
@@ -329,7 +329,7 @@ void paths_init(){
 
        {
                StringOutputStream path( 256 );
-               path << home << RADIANT_MAJOR_VERSION "." RADIANT_MINOR_VERSION "." RADIANT_PATCH_VERSION "/";
+               path << home << "/";
                g_strSettingsPath = path.c_str();
        }