aboutsummaryrefslogtreecommitdiff
path: root/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | Merge pull request #12932 from willnationsdev/capitalize-enhancementRémi Verschelde2017-11-171-1/+1
|\ \ \ \ | | | | | | | | | | Fixes a bug where capitalize didn't work with camelCase names
| * | | | Fixed a bug where capitalize didn't work with camelCase namesWill Nations2017-11-141-1/+1
| | | | |
* | | | | Fail when attempting to retrieve a non-existent singletonLeon Krause2017-11-141-5/+4
| | | | |
* | | | | Move singleton management from ProjectSettings to EngineLeon Krause2017-11-148-59/+77
| |_|_|/ |/| | |
* | | | Merge pull request #12867 from eska014/html5-httpRémi Verschelde2017-11-132-69/+78
|\ \ \ \ | |/ / / |/| | | Implement HTTPClient in HTML5 platform
| * | | Implement HTTPClient in HTML5 platformLeon Krause2017-11-132-69/+78
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Limitations: - Subject to same-origin policy - No persistent connection (but simulated for compatibility) - No blocking mode - No StreamPeer access - No chunked responses - Cannot disable host verification
* | | | Add support for the TAU constant. Fixes #12094.Goutte2017-11-121-0/+1
| | | |
* | | | Remove get_default_video_mode definition on OSX/iOSRémi Verschelde2017-11-092-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | Make video mode initialization more intuitive, fixes #12022Juan Linietsky2017-11-091-3/+1
| | | |
* | | | Merge pull request #12780 from karroffel/dictionary-crashRémi Verschelde2017-11-091-1/+1
|\ \ \ \ | | | | | | | | | | fix dictionary constant access crash
| * | | | fix dictionary constant access crashKarroffel2017-11-091-1/+1
| |/ / /
* | | | Increase joystick axis from 8 to 10Bastiaan Olij2017-11-082-1/+5
| | | |
* | | | Use UTF-8 for locale names. Fixes #12462.mhilbrunner2017-11-071-2/+2
|/ / /
* | | Merge pull request #12656 from karroffel/dictionary-ordered-hashmapRémi Verschelde2017-11-061-68/+35
|\ \ \ | | | | | | | | make Dictionary use OrderedHashMap
| * | | make Dictionary use OrderedHashMapKarroffel2017-11-051-68/+35
| | | |
* | | | Merge pull request #12646 from poke1024/geomdocsPoommetee Ketson2017-11-062-0/+14
|\ \ \ \ | |/ / / |/| | | Basic docs for Geometry plus two new functions
| * | | Basic docs for Geometry plus two new functionsBernhard Liebl2017-11-052-0/+14
| | | |
* | | | Fixed dedent() binding did not return resultZher Huei Lee2017-11-051-1/+1
| | | |
* | | | make ConfigFile sections orderedKarroffel2017-11-043-34/+18
|/ / /
* | | Merge pull request #12593 from DmDerbin/masterPoommetee Ketson2017-11-042-0/+18
|\ \ \ | | | | | | | | AStar: implementation of get_point_connections
| * | | AStar: implementation of get_point_connectionsDmDerbin2017-11-042-0/+18
| | | |
* | | | make ConfigFile use OrderedHashMapKarroffel2017-11-033-10/+11
|/ / /
* | | -Modules can now add custom version info (added it for Mono)Juan Linietsky2017-11-011-2/+2
| | | | | | | | | | | | | | | -Version string takes this version info -Ability to download templates from the interweb (listing does not work yet)
* | | Added String::dedent() to remove text indentationZher Huei Lee2017-11-013-0/+45
| | | | | | | | | | | | | | | | | | | | | 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.
* | | Merge pull request #12035 from Chaosus/wrapfuncRémi Verschelde2017-10-312-1/+19
|\ \ \ | | | | | | | | Added new Wrap functions for numbers
| * | | Added new wrap functionsChaosus2017-10-132-1/+19
| | | |
* | | | Merge pull request #11249 from m4nu3lf/bugfix/get_eulerRémi Verschelde2017-10-311-13/+12
|\ \ \ \ | | | | | | | | | | Fix inertia tensor update & Generic6DOFJoint & Simplify Basis::get_euler()
| * | | | Fix Basis::get_euler_xyz()m4nu3lf2017-09-221-13/+12
| | | | |
* | | | | Add Colemak keybindings to editor for osxN0hbdy2017-10-303-0/+24
| | | | |
* | | | | Added difference between function which return value or notЗахаров Андрей2017-10-301-274/+289
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | Merge pull request #12471 from mhilbrunner/autocompleteRémi Verschelde2017-10-302-0/+26
|\ \ \ \ \ | | | | | | | | | | | | Fix get_node() and $ autocompletion when using single quotes
| * | | | | Fix get_node() and $ autocompletion when using single quotesUnknown2017-10-302-0/+26
| | | | | |
* | | | | | Add support for non-ISO locale identifiers via renames mapRémi Verschelde2017-10-302-65/+74
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | | Merge pull request #12437 from mhilbrunner/astar-setpointweightscaleRémi Verschelde2017-10-292-16/+45
|\ \ \ \ \ \ | |/ / / / / |/| | | | | AStar: Add setters for point position and scale weight, cleanup
| * | | | | AStar: Add setters for point position and scale weight, cleanupUnknown2017-10-272-16/+45
| | | | | |
* | | | | | Merge pull request #12423 from tagcup/zstd_1.3.2Rémi Verschelde2017-10-274-4/+25
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Update zstd to 1.3.2.
| * | | | | Add an option to use zstd's recently introduced long range matching (off by ↵Ferenc Arn2017-10-274-5/+25
| | | | | | | | | | | | | | | | | | | | | | | | default).
| * | | | | Update zstd to 1.3.2.Ferenc Arn2017-10-261-0/+1
| | | | | |
* | | | | | Merge pull request #12422 from eska014/httpclient-apiRémi Verschelde2017-10-262-14/+0
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Remove HTTPClient::send_body_text and ::send_body_data
| * | | | | Remove HTTPClient::send_body_text and ::send_body_dataLeon Krause2017-10-262-14/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These were never implemented, the request* methods provide parameters to send body data as part of the client's requests.
* | | | | | Removes Script::get_node_type()Jerome670002017-10-252-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | used before GDScript, with squirrel apparently
* | | | | | Add a function to get the full name of a localesheepandshepherd2017-10-252-0/+17
| | | | | |
* | | | | | Merge pull request #12365 from neikeq/pRémi Verschelde2017-10-241-0/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | Add ScriptLanguage::supports_builtin_mode and improve ScriptCreateDialog
| * | | | | | Add ScriptLanguage::supports_builtin_mode and improve ScriptCreateDialogIgnacio Etcheverry2017-10-241-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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.
* | | | | | | Small fix in core/set.h and similar fix in core/map.hCradmon2017-10-242-2/+0
| |_|_|_|/ / |/| | | | |
* | | | | | Merge pull request #12183 from marcelofg55/err_indexRémi Verschelde2017-10-233-22/+30
|\ \ \ \ \ \ | | | | | | | | | | | | | | Improved *_FAIL_INDEX error macros to print the index/size
| * | | | | | Improved *_FAIL_INDEX error macros to print the index/sizeMarcelo Fernandez2017-10-223-22/+30
| | | | | | |
* | | | | | | Merge pull request #12341 from jagt/move-button-joy-enumsRémi Verschelde2017-10-232-68/+70
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Move BUTTON and JOY constants to enums
| * | | | | | | move button/joy constants to enumsjagt2017-10-232-68/+70
| | |_|/ / / / | |/| | | | |
* | | | | | | Fixed memory leak with AStar classRobert Hernandez2017-10-221-0/+1
| |_|/ / / / |/| | | | |