summaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2017-11-20Merge pull request #13094 from karroffel/gdnative-api-register-nativecallThomas Herzog
[GDNative] add a way to register call types
2017-11-20Merge pull request #13093 from karroffel/gdnative-static-linking-is-killThomas Herzog
[GDNative] removed static linking fields
2017-11-20[GDNative] add a way to register call typesKarroffel
2017-11-20[GDNative] removed static linking fieldsKarroffel
2017-11-20Revert "Added loop_begin and loop_end to OggVorbisStream"Juan Linietsky
2017-11-20Merge pull request #13060 from karroffel/gdnative-version-errorThomas Herzog
[GDNative] (version-) error reporting + small API change
2017-11-20[GDNative] removed godot_string_c_strKarroffel
2017-11-20[GDNative] loading error and version error procsKarroffel
2017-11-20Merge pull request #12644 from mrcdk/ogg_loopRémi Verschelde
Added loop_begin and loop_end to OggVorbisStream
2017-11-20Merge pull request #12952 from bojidar-bg/12392-export-enumsRémi Verschelde
Allow exporting enums from GDScript
2017-11-20Merge pull request #12988 from akien-mga/xdg-home-pathsRémi Verschelde
Add support for XDG Base Directory spec
2017-11-19Add initial support for the XDG Base Directory specRémi Verschelde
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-19Merge pull request #13046 from AndreaCatania/kinfixRémi Verschelde
Some Bullet bug fix
2017-11-19Added null check in Bullet cast_motion APIAndreaCatania
2017-11-19Fixed gravity scaleAndreaCatania
2017-11-19Removed dynamic_cast from Bullet ServerAndreaCatania
2017-11-19Fixed kinematic movement on concave shapeAndreaCatania
2017-11-19Merge pull request #13016 from neikeq/issue-13011Rémi Verschelde
Mono: Fix compiler error with Variant::operator AABB()
2017-11-18Mono: Fix compiler error with Variant::operator AABB()Ignacio Etcheverry
2017-11-18Fix class docs, improve error handling of the rst generator.Martin Capitanio
The rst-generator gives you now a hint what's going on: Bad reference: 'method.RegEx.search_all' in file: ../modules/regex/doc_classes/RegExMatch.xml grep 'method.RegEx.search_all' ../modules/regex/doc_classes/RegExMatch.xml Contains the results of a single regex match returned by [method RegEx.search] and [method.RegEx.search_all]. It can be used to find the position and range of the match and its capturing groups, and it can extract its sub-string for you.
2017-11-17EditorSettings: Rename settings_path to settings_dirRémi Verschelde
Also to prepare for upcoming refactoring for XDG support.
2017-11-17Rename OS::get_data_dir to OS::get_user_data_dirRémi Verschelde
Will be needed to avoid confusion with system data path (XDG_DATA_HOME) and editor data dir in upcoming refactoring.
2017-11-17Merge pull request #12930 from vnen/gdscrit-output-printJuan Linietsky
Make tool scripts print on the editor Output panel
2017-11-17Rename Rect3 to AABB.Ferenc Arn
Fixes #12973.
2017-11-17Allow exporting enums from GDScriptBojidar Marinov
Use as `export(E) ...` Closes #12392
2017-11-16Add print_error function, akin to print_lineGeorge Marques
2017-11-16Merge pull request #12974 from karroffel/gdnative-wrapper-fixRémi Verschelde
[GDNative] fix wrapper code generation
2017-11-16Merge pull request #12969 from akien-mga/refactor-gd-prefixRémi Verschelde
GDScript: Refactor "GD" class prefix to "GDScript"
2017-11-16[GDNative] fix wrapper code generationKarroffel
2017-11-16Merge pull request #12488 from djrm/pr_gridmap_fixesRémi Verschelde
Several improvements to GridMap.
2017-11-16GDScript: Refactor "GD" class prefix to "GDScript"Rémi Verschelde
2017-11-16Merge pull request #12957 from bojidar-bg/12928-numeric-underscoresRémi Verschelde
Allow underscores in GDScript numeric literals
2017-11-15Allow underscores in GDScript numeric literalsBojidar Marinov
Closes #12928
2017-11-15doc: Sync classref with current sourceRémi Verschelde
2017-11-15Improve code style of generated headersRémi Verschelde
2017-11-15doc: Make all module docs self-containedRémi Verschelde
2017-11-15doc: Rename "@Global Scope" to "@GlobalScope"Rémi Verschelde
Spaces in filenames are evil.
2017-11-15doc: Remove revision.module_config from version stringRémi Verschelde
It is now "3.0-alpha" instead of "3.0.alpha.custom_build{,.mono}", limits unnecessary diffs.
2017-11-15Create API to add and remove VisualScript custom nodesGeorge Marques
This makes a VisualScriptEditor singleton, which gives plugins the ability to register their own custom nodes. Those will be available for insertion in the Visual Script editor, under the "Custom Nodes" category.
2017-11-15Merge pull request #12949 from karroffel/gdnative-exportJuan Linietsky
[GDNative] export plugin
2017-11-15[GDNative] export pluginKarroffel
2017-11-15When script changes, defer tree updating. Fixes #9704Juan Linietsky
2017-11-14Merge pull request #12922 from eska014/engine-singletonsRémi Verschelde
Singleton management changes
2017-11-14Merge pull request #12586 from karroffel/gdnative-gdnlibrary-changesThomas Herzog
[GDNative] use feature tags, added load once option
2017-11-14Move singleton management from ProjectSettings to EngineLeon Krause
2017-11-14Merge pull request #12915 from leezh/regex_search_allRémi Verschelde
Added RegEx.search_all() for multiple matches
2017-11-14Added RegEx.search_all() for multiple matchesZher Huei Lee
And updated the docs
2017-11-13fix auto-generated GDN API header for C compilers (#12891)Evrey
* fix auto-generated GDN API header for C compilers
2017-11-13Merge pull request #12907 from YeldhamDev/indentation_connectionRémi Verschelde
Fixed signal connection dialog ignoring indentation settings when creating a function
2017-11-13Fixed signal connection dialog ignoring indentation settings when creating a ↵Michael Alexsander Silva Dias
function.