Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-11-09 | Remove get_default_video_mode definition on OSX/iOS | Rémi Verschelde | |
It had been missed in d09160a8b67fdc60e8108962c4e9bd4c0bc7f13e and broke compilation for those platforms. Took the opportunity to run clang-format on the code base to fix some corner cases that went through our static tests/were overlooked recently. | |||
2017-11-09 | Make video mode initialization more intuitive, fixes #12022 | Juan Linietsky | |
2017-11-09 | Merge pull request #12780 from karroffel/dictionary-crash | Rémi Verschelde | |
fix dictionary constant access crash | |||
2017-11-09 | fix dictionary constant access crash | Karroffel | |
2017-11-08 | Increase joystick axis from 8 to 10 | Bastiaan Olij | |
2017-11-07 | Use UTF-8 for locale names. Fixes #12462. | mhilbrunner | |
2017-11-06 | Merge pull request #12656 from karroffel/dictionary-ordered-hashmap | Rémi Verschelde | |
make Dictionary use OrderedHashMap | |||
2017-11-06 | Merge pull request #12646 from poke1024/geomdocs | Poommetee Ketson | |
Basic docs for Geometry plus two new functions | |||
2017-11-05 | make Dictionary use OrderedHashMap | Karroffel | |
2017-11-05 | Basic docs for Geometry plus two new functions | Bernhard Liebl | |
2017-11-05 | Fixed dedent() binding did not return result | Zher Huei Lee | |
2017-11-04 | make ConfigFile sections ordered | Karroffel | |
2017-11-04 | Merge pull request #12593 from DmDerbin/master | Poommetee Ketson | |
AStar: implementation of get_point_connections | |||
2017-11-04 | AStar: implementation of get_point_connections | DmDerbin | |
2017-11-03 | make ConfigFile use OrderedHashMap | Karroffel | |
2017-11-01 | -Modules can now add custom version info (added it for Mono) | Juan Linietsky | |
-Version string takes this version info -Ability to download templates from the interweb (listing does not work yet) | |||
2017-11-01 | Added String::dedent() to remove text indentation | Zher Huei Lee | |
This functions similarly to Python's textwrap.dedent() It's also been applied to doc_data.cpp to remove extra whitespace while parsing the XML. | |||
2017-10-31 | Merge pull request #12035 from Chaosus/wrapfunc | Rémi Verschelde | |
Added new Wrap functions for numbers | |||
2017-10-31 | Merge pull request #11249 from m4nu3lf/bugfix/get_euler | Rémi Verschelde | |
Fix inertia tensor update & Generic6DOFJoint & Simplify Basis::get_euler() | |||
2017-10-30 | Add Colemak keybindings to editor for osx | N0hbdy | |
2017-10-30 | Added difference between function which return value or not | Захаров Андрей | |
Now ADDFUNC with suffix R add function with return value. It was changed because addfunc considers that the function doesn't return a value if it returns NIL. | |||
2017-10-30 | Merge pull request #12471 from mhilbrunner/autocomplete | Rémi Verschelde | |
Fix get_node() and $ autocompletion when using single quotes | |||
2017-10-30 | Fix get_node() and $ autocompletion when using single quotes | Unknown | |
2017-10-30 | Add support for non-ISO locale identifiers via renames map | Ré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-29 | Merge pull request #12437 from mhilbrunner/astar-setpointweightscale | Rémi Verschelde | |
AStar: Add setters for point position and scale weight, cleanup | |||
2017-10-27 | Merge pull request #12423 from tagcup/zstd_1.3.2 | Rémi Verschelde | |
Update zstd to 1.3.2. | |||
2017-10-27 | AStar: Add setters for point position and scale weight, cleanup | Unknown | |
2017-10-27 | Add an option to use zstd's recently introduced long range matching (off by ↵ | Ferenc Arn | |
default). | |||
2017-10-26 | Merge pull request #12422 from eska014/httpclient-api | Rémi Verschelde | |
Remove HTTPClient::send_body_text and ::send_body_data | |||
2017-10-26 | Update zstd to 1.3.2. | Ferenc Arn | |
2017-10-26 | Remove HTTPClient::send_body_text and ::send_body_data | Leon Krause | |
These were never implemented, the request* methods provide parameters to send body data as part of the client's requests. | |||
2017-10-25 | Removes Script::get_node_type() | Jerome67000 | |
used before GDScript, with squirrel apparently | |||
2017-10-25 | Add a function to get the full name of a locale | sheepandshepherd | |
2017-10-24 | Merge pull request #12365 from neikeq/p | Rémi Verschelde | |
Add ScriptLanguage::supports_builtin_mode and improve ScriptCreateDialog | |||
2017-10-24 | Small fix in core/set.h and similar fix in core/map.h | Cradmon | |
2017-10-24 | Add ScriptLanguage::supports_builtin_mode and improve ScriptCreateDialog | Ignacio 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-23 | Merge pull request #12183 from marcelofg55/err_index | Rémi Verschelde | |
Improved *_FAIL_INDEX error macros to print the index/size | |||
2017-10-23 | Merge pull request #12341 from jagt/move-button-joy-enums | Rémi Verschelde | |
Move BUTTON and JOY constants to enums | |||
2017-10-23 | move button/joy constants to enums | jagt | |
2017-10-22 | Fixed memory leak with AStar class | Robert Hernandez | |
2017-10-22 | Many fixes to SSAO, should be good now. | Juan Linietsky | |
2017-10-22 | Improved *_FAIL_INDEX error macros to print the index/size | Marcelo Fernandez | |
2017-10-22 | Merge pull request #11401 from SaracenOne/snapped_drag | Rémi Verschelde | |
Added snapping to spatial drag and drop. | |||
2017-10-22 | Bind MainLoop.notif_wm_go_back_request | Poommetee Ketson | |
2017-10-21 | Merge pull request #11982 from tagcup/get_quat | Rémi Verschelde | |
Added Basis::get_quat(). | |||
2017-10-21 | Cleanup unnecessary debug prints | Rémi Verschelde | |
2017-10-21 | Fix 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-20 | variant.h: Update comments with numeric enum values | Sebastian 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-20 | Merge pull request #12247 from endragor/fix-rotated-logger | Rémi Verschelde | |
Fix rotated logger naming and backup deletion [ci skip] | |||
2017-10-20 | Merge pull request #12241 from eska014/vs-binds | Rémi Verschelde | |
Bind more VisualServer functions [ci skip] |