godot/platform/x11
Rémi Verschelde 32c12a92a5 Add initial support for the XDG Base Directory spec
Spec version 0.7 from https://standards.freedesktop.org/basedir-spec/basedir-spec-0.7.html
(latest as of this commit).

Three virtual methods are added to OS for the various XDG paths we will use:
- OS::get_data_path gives XDG_DATA_HOME, or if missing:
  ~/.local/share on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_config_path gives XDG_CONFIG_HOME, or if missing:
  ~/.config on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_cache_path gives XDG_CACHE_HOME, or if missing:
  ~/.cache on X11, ~/Library/Caches on macOS and %APPDATA% on Windows

So for Windows there are no changes, for Linux we follow the full split spec
and for macOS stuff will move from ~/.godot to ~/Library/Application Support/Godot.

Support for system-wide installation of templates on Unix was removed for now,
as it's a bit hackish and I don't think anyone uses it.

user:// will still be OS::get_data_path() + "/godot/app_userdata/$name" by
default, but when using the application/config/use_shared_user_dir option
it will now use XDG_DATA_HOME/$name, e.g. ~/.local/share/MyGame.

For now everything still goes in EditorSettings::get_settings_dir(), but
this will be changed in a later commit to make use of the new splitting
where relevant.

Part of #3513.
2017-11-19 20:54:24 +01:00
..
export Fix x11 exported executables not getting the +x flag 2017-09-17 14:40:58 -03:00
context_gl_x11.cpp Drop unusued LEGACYGL_ENABLED check 2017-10-13 00:18:04 +02:00
context_gl_x11.h Drop unusued LEGACYGL_ENABLED check 2017-10-13 00:18:04 +02:00
crash_handler_x11.cpp Implemented physics plug 2017-11-04 03:25:51 +01:00
crash_handler_x11.h Added a crash handler to dump the backtrace on Windows, Linux and OS X 2017-09-13 10:07:23 -03:00
detect.py SCons: make use_lto a global option and opt-in for iphone 2017-11-02 09:11:50 +01:00
godot_x11.cpp Use HTTPS URL for Godot's website in the headers 2017-08-27 14:16:55 +02:00
joypad_linux.cpp X11: Fix gamepads not being added whith udev. 2017-09-14 22:50:40 +02:00
joypad_linux.h Use HTTPS URL for Godot's website in the headers 2017-08-27 14:16:55 +02:00
key_mapping_x11.cpp Use HTTPS URL for Godot's website in the headers 2017-08-27 14:16:55 +02:00
key_mapping_x11.h Use HTTPS URL for Godot's website in the headers 2017-08-27 14:16:55 +02:00
logo.png Fixed iCCp chunk in pngs 2016-06-22 21:13:29 +02:00
os_x11.cpp Add initial support for the XDG Base Directory spec 2017-11-19 20:54:24 +01:00
os_x11.h Add initial support for the XDG Base Directory spec 2017-11-19 20:54:24 +01:00
platform_config.h Use HTTPS URL for Godot's website in the headers 2017-08-27 14:16:55 +02:00
power_x11.cpp Fix enums bindings 2017-09-13 20:57:07 +03:00
power_x11.h Fix enums bindings 2017-09-13 20:57:07 +03:00
SCsub Create separate debug info files by default 2017-09-16 12:00:46 +02:00