summaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2017-10-30Add support for non-ISO locale identifiers via renames mapRémi Verschelde
Windows apparently uses "no" for Norwegian Bokmål, even though its ISO 639-1 language code is "nb"... Closes #12479. Also did some non-intrusive cleanup while at it.
2017-10-29Merge pull request #12437 from mhilbrunner/astar-setpointweightscaleRémi Verschelde
AStar: Add setters for point position and scale weight, cleanup
2017-10-27Merge pull request #12423 from tagcup/zstd_1.3.2Rémi Verschelde
Update zstd to 1.3.2.
2017-10-27AStar: Add setters for point position and scale weight, cleanupUnknown
2017-10-27Add an option to use zstd's recently introduced long range matching (off by ↵Ferenc Arn
default).
2017-10-26Merge pull request #12422 from eska014/httpclient-apiRémi Verschelde
Remove HTTPClient::send_body_text and ::send_body_data
2017-10-26Update zstd to 1.3.2.Ferenc Arn
2017-10-26Remove HTTPClient::send_body_text and ::send_body_dataLeon Krause
These were never implemented, the request* methods provide parameters to send body data as part of the client's requests.
2017-10-25Removes Script::get_node_type()Jerome67000
used before GDScript, with squirrel apparently
2017-10-25Add a function to get the full name of a localesheepandshepherd
2017-10-24Merge pull request #12365 from neikeq/pRémi Verschelde
Add ScriptLanguage::supports_builtin_mode and improve ScriptCreateDialog
2017-10-24Small fix in core/set.h and similar fix in core/map.hCradmon
2017-10-24Add ScriptLanguage::supports_builtin_mode and improve ScriptCreateDialogIgnacio Etcheverry
- Make ScriptCreateDialog disable the built-in script checked button if the language does not support it. - ScriptLanguage's get_template and make_template now receive the script path as class name if the the script language does not have named classes.
2017-10-23Merge pull request #12183 from marcelofg55/err_indexRémi Verschelde
Improved *_FAIL_INDEX error macros to print the index/size
2017-10-23Merge pull request #12341 from jagt/move-button-joy-enumsRémi Verschelde
Move BUTTON and JOY constants to enums
2017-10-23move button/joy constants to enumsjagt
2017-10-22Fixed memory leak with AStar classRobert Hernandez
2017-10-22Many fixes to SSAO, should be good now.Juan Linietsky
2017-10-22Improved *_FAIL_INDEX error macros to print the index/sizeMarcelo Fernandez
2017-10-22Merge pull request #11401 from SaracenOne/snapped_dragRémi Verschelde
Added snapping to spatial drag and drop.
2017-10-22Bind MainLoop.notif_wm_go_back_requestPoommetee Ketson
2017-10-21Merge pull request #11982 from tagcup/get_quatRémi Verschelde
Added Basis::get_quat().
2017-10-21Cleanup unnecessary debug printsRémi Verschelde
2017-10-21Fix InputEventJoypadMotion::action_match for 0 axis values.Patrick Yates
Make action_match ignore the sign if axis value is 0. This means that an axis value of 0 will match actions defined for both positive and negative values, as expected. Fixes #12223
2017-10-20variant.h: Update comments with numeric enum valuesSebastian Krzyszkowiak
Comments got desynchronized with the actual values of the enum. To avoid anyone making some stupid mistake here, let's fix it as soon as possible.
2017-10-20Merge pull request #12247 from endragor/fix-rotated-loggerRémi Verschelde
Fix rotated logger naming and backup deletion [ci skip]
2017-10-20Merge pull request #12241 from eska014/vs-bindsRémi Verschelde
Bind more VisualServer functions [ci skip]
2017-10-20Fix rotated logger naming and backup deletionRuslan Mustakov
2017-10-20Bind some VisualServer functionsLeon Krause
2017-10-19Fix Color.r8/g8/b8/a8 being type float instead of type intMarcelo Fernandez
2017-10-16Fix formatting of debug log overflowPedro J. Estébanez
Fixes #12087.
2017-10-13Fix Alpha Border bugfixComanche_Ak
2017-10-13Remove junk outputRuslan Mustakov
Remove several prints that were added for engine debugging, but are of no use to the end user, and only pollute the editor and game logs.
2017-10-11Merge pull request #11539 from BastiaanOlij/remove_directory_scanRémi Verschelde
Removed directory scan from project load
2017-10-11Merge pull request #12039 from Hinsbart/expose_joy_connectionRémi Verschelde
Input: expose joy_connection_changed() [ci skip]
2017-10-11Added Basis::get_quat() and set_quat().Ferenc Arn
2017-10-11Input: expose joy_connection_changed()Andreas Haas
2017-10-11Merge pull request #11954 from neikeq/dIgnacio Etcheverry
Added 'exposed' field to ClassInfo for registered classes
2017-10-10Merge pull request #11919 from Toizi/array_sort_refAndreas Haas
Array::sort/invert now return reference to Array
2017-10-10Merge pull request #11987 from endragor/define-va-copyIgnacio Etcheverry
Define va_copy with --std=c++03 (fixes #11979)
2017-10-10Made directory scan optionalBastiaanOlij
2017-10-10Define va_copy with --std=c++03 (fixes #11979)Ruslan Mustakov
2017-10-09Adds 'exposed' field to ClassInfoIgnacio Etcheverry
This field represents if the class is exposed to the scripting API. The value is 'true' if the class was registered manually ('ClassDB::register_*class()'), otherwise it's false (registered on '_post_initialize'). - Added missing registration of classes that are meant to be exposed.
2017-10-09Array::sort, sort_custom and invert now return reference to Array to allow ↵Marius Guggenmos
chaining of operations
2017-10-09Merge pull request #11810 from marcelofg55/osx_export_improvRémi Verschelde
OS X export code improvements
2017-10-09Fix trailing whitespaces in project settings header commentEmmanuel Leblond
2017-10-09Merge pull request #11947 from eska014/fix-obj-marshallingRémi Verschelde
Fix exporting projects with custom input event actions
2017-10-08Fix binary marshalling of ObjectsLeon Krause
2017-10-08[GDnative] Add string_name apiEmmanuel Leblond
2017-10-06Merge pull request #11853 from endragor/long-string-loggingAndreas Haas
Fix logging of long strings via RotatedFileLogger