mirror of
https://github.com/cookiengineer/audacity
synced 2026-04-24 06:54:14 +02:00
Rename config and data directories
Also deprecate ~/.audacity-data Signed-off-by: Sol Fisher Romanoff <sol@solfisher.com>
This commit is contained in:
@@ -47,10 +47,6 @@ used throughout Audacity into this one place.
|
||||
#include <windows.h>
|
||||
#endif
|
||||
|
||||
#if defined(__WXGTK__)
|
||||
static wxString gOldUnixDataDir;
|
||||
#endif
|
||||
|
||||
static wxString gConfigDir;
|
||||
static wxString gDataDir;
|
||||
|
||||
@@ -233,16 +229,11 @@ wxString FileNames::LowerCaseAppNameInPath( const wxString & dirIn){
|
||||
|
||||
FilePath FileNames::ConfigDir()
|
||||
{
|
||||
#if defined(__WXGTK__)
|
||||
if (gOldUnixDataDir.empty())
|
||||
gOldUnixDataDir = wxFileName::GetHomeDir() + wxT("/.audacity-data");
|
||||
#endif
|
||||
|
||||
if (gConfigDir.empty())
|
||||
{
|
||||
wxFileName exePath(PlatformCompatibility::GetExecutablePath());
|
||||
#if defined(__WXMAC__)
|
||||
// Path ends for example in "Audacity.app/Contents/MacOSX"
|
||||
// Path ends for example in "Tenacity.app/Contents/MacOSX"
|
||||
// just remove the MacOSX part.
|
||||
exePath.RemoveLastDir();
|
||||
#endif
|
||||
@@ -251,15 +242,13 @@ FilePath FileNames::ConfigDir()
|
||||
{
|
||||
// Use "Portable Settings" folder
|
||||
gConfigDir = portablePrefsPath.GetFullPath();
|
||||
#if defined(__WXGTK__)
|
||||
} else if (::wxDirExists(gOldUnixDataDir))
|
||||
{
|
||||
// Use old user data dir folder
|
||||
gConfigDir = gOldUnixDataDir;
|
||||
#endif
|
||||
} else {
|
||||
// Use OS-provided user data dir folder
|
||||
wxString configDir(wxStandardPaths::Get().GetUserConfigDir() + wxT("/audacity"));
|
||||
#if defined(__WSMSW__)
|
||||
wxString configDir(wxStandardPaths::Get().GetUserConfigDir() + wxT("\\Tenacity"));
|
||||
#else
|
||||
wxString configDir(wxStandardPaths::Get().GetUserConfigDir() + wxT("/tenacity"));
|
||||
#endif
|
||||
gConfigDir = FileNames::MkDir(configDir);
|
||||
}
|
||||
}
|
||||
@@ -270,10 +259,6 @@ FilePath FileNames::ConfigDir()
|
||||
|
||||
FilePath FileNames::DataDir()
|
||||
{
|
||||
#if defined(__WXGTK__)
|
||||
if (gOldUnixDataDir.empty())
|
||||
gOldUnixDataDir = wxFileName::GetHomeDir() + wxT("/.audacity-data");
|
||||
#endif
|
||||
// LLL: Wouldn't you know that as of WX 2.6.2, there is a conflict
|
||||
// between wxStandardPaths and wxConfig under Linux. The latter
|
||||
// creates a normal file as "$HOME/.audacity", while the former
|
||||
@@ -298,10 +283,6 @@ FilePath FileNames::DataDir()
|
||||
// Use "Portable Settings" folder
|
||||
gDataDir = portablePrefsPath.GetFullPath();
|
||||
#if defined(__WXGTK__)
|
||||
} else if (::wxDirExists(gOldUnixDataDir))
|
||||
{
|
||||
// Use old user data dir folder
|
||||
gDataDir = gOldUnixDataDir;
|
||||
} else
|
||||
{
|
||||
wxString dataDir;
|
||||
@@ -310,7 +291,7 @@ FilePath FileNames::DataDir()
|
||||
if ( !wxGetEnv(wxS("XDG_DATA_HOME"), &dataDir) || dataDir.empty() )
|
||||
dataDir = wxFileName::GetHomeDir() + wxT("/.local/share");
|
||||
|
||||
dataDir = dataDir + wxT("/audacity");
|
||||
dataDir = dataDir + wxT("/tenacity");
|
||||
#else
|
||||
} else
|
||||
{
|
||||
@@ -341,7 +322,7 @@ FilePath FileNames::HtmlHelpDir()
|
||||
//for mac this puts us within the .app: Tenacity.app/Contents/SharedSupport/
|
||||
return wxFileName( exePath.GetPath()+wxT("/help/manual"), wxEmptyString ).GetFullPath();
|
||||
#else
|
||||
//linux goes into /*prefix*/share/audacity/
|
||||
//linux goes into /*prefix*/share/tenacity/
|
||||
//windows (probably) goes into the dir containing the .exe
|
||||
wxString dataDir = FileNames::LowerCaseAppNameInPath( wxStandardPaths::Get().GetDataDir());
|
||||
return wxFileName( dataDir+wxT("/help/manual"), wxEmptyString ).GetFullPath();
|
||||
@@ -401,7 +382,7 @@ FilePath FileNames::BaseDir()
|
||||
// the "Debug" directory in debug builds.
|
||||
baseDir = PlatformCompatibility::GetExecutablePath();
|
||||
#else
|
||||
// Linux goes into /*prefix*/share/audacity/
|
||||
// Linux goes into /*prefix*/share/tenacity/
|
||||
baseDir = FileNames::LowerCaseAppNameInPath(wxStandardPaths::Get().GetPluginsDir());
|
||||
#endif
|
||||
|
||||
|
||||
@@ -112,15 +112,15 @@ namespace FileNames
|
||||
FilePaths &otherNames, wxFileName &newName);
|
||||
|
||||
AUDACITY_DLL_API wxString LowerCaseAppNameInPath( const wxString & dirIn);
|
||||
/** \brief Audacity user config directory
|
||||
/** \brief Tenacity user config directory
|
||||
*
|
||||
* Where audacity keeps its settigns squirreled away, by default ~/.config/audacity/
|
||||
* on Unix, Application Data/Audacity on Windows */
|
||||
* Where Tenacity keeps its settigns squirreled away, by default ~/.config/tenacity/
|
||||
* on Unix, Application Data/Tenacity on Windows */
|
||||
FilePath ConfigDir();
|
||||
/** \brief Audacity user data directory
|
||||
/** \brief Tenacity user data directory
|
||||
*
|
||||
* Where audacity keeps its settings and other user data squirreled away,
|
||||
* by default ~/.local/share/audacity/ on Unix, Application Data/Audacity on
|
||||
* Where Tenacity keeps its settings and other user data squirreled away,
|
||||
* by default ~/.local/share/tenacity/ on Unix, Application Data/Tenacity on
|
||||
* windows system */
|
||||
AUDACITY_DLL_API FilePath DataDir();
|
||||
AUDACITY_DLL_API FilePath ResourcesDir();
|
||||
|
||||
Reference in New Issue
Block a user