summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-06-11Fix custom types in node list searchTomasz Chabora
2020-06-11String: Use ABS macro in padding codeRémi Verschelde
Follow-up to #39261.
2020-06-11i18n: Sync translations with WeblateRémi Verschelde
(cherry picked from commit d68e631566e953e09e71438558b9f1376648d025)
2020-06-11doc: Sync classref with current sourceRémi Verschelde
2020-06-11Merge pull request #38958 from lawnjelly/time_overflow_4Rémi Verschelde
Fix overflow condition with QueryPerformanceCounter
2020-06-11Merge pull request #39230 from ntfshard/expression_string_singlequoteRémi Verschelde
Fix for Expression class: string inside an expression can't be single quoted
2020-06-11Merge pull request #39261 from mrushyendra/string_paddingRémi Verschelde
Enable zero padding with float specifier for format strings
2020-06-11Merge pull request #39337 from Cevantime/add-text-deletion-methods-to-line-editRémi Verschelde
Make text deletion methods public for LineEdit
2020-06-11Merge pull request #39355 from SaviHex/better-docs-linksRémi Verschelde
Added a "title" attribute for the link tag in the docs xml
2020-06-11Merge pull request #39453 from vtoriafisher/masterRémi Verschelde
Adds full description for AudioEffectRecord.xml.
2020-06-11Merge pull request #39454 from mrushyendra/regex_unicodeRémi Verschelde
Enable Unicode support for RegEx class
2020-06-11Merge pull request #39434 from mrushyendra/export_update_files_masterRémi Verschelde
Account for file deletion and renaming in Export Presets
2020-06-11Enable Unicode support for RegEx classMaganty Rushyendra
Build PCRE2 thirdparty library with unicode support. RegEx objects in Godot can now be used to recognize unicode strings.
2020-06-11Adds full description for AudioEffectRecord.xmlVictoria Fisher
2020-06-11Merge pull request #39438 from Chaosus/fix_custom_property_editorYuri Roubinsky
Fix custom property editor layout
2020-06-10Added a "title" attribute for the link tag in the docs xmlSaviHex
2020-06-11Account for file deletion and renaming in Export PresetsMaganty Rushyendra
Ensure that presets are updated with the latest files when starting up or opening the Project Export dialog. Fixes the error where Godot would attempt to export deleted files that were previously selected.
2020-06-10Make text deletion methods public for LineEditThibault Truffert
2020-06-10Merge pull request #38508 from RandomShaper/fix_cleanup_infoRémi Verschelde
Fix potential crash when listing leaked objects
2020-06-10Fix potential crash when listing leaked objectsPedro J. Estébanez
Note: Casting to the C++ classes and calling the methods there would work as well, but would require including he header files for the specific object types handled here, which wouldn't be OK either.
2020-06-10Fix custom property editor layoutYuri Roubinsky
2020-06-10Merge pull request #39430 from Calinou/doc-3d-light-radiusRémi Verschelde
Improve the 3D light documentations
2020-06-10Merge pull request #37248 from Xrayez/env-dumpRémi Verschelde
SCons: Dump construction environment to a file
2020-06-10SCons: Dump construction environment to a fileAndrii Doroshenko (Xrayez)
A new `methods.dump(env)` is added to dump the construction environment used by SCons to build Godot to a `.scons_env.json`. The file can be used for debugging purposes and any external tool.
2020-06-10Merge pull request #39431 from Calinou/contributing-documentationRémi Verschelde
Document the requirement to update the class reference when contributing
2020-06-10Improve the 3D light documentationsHugo Locurcio
See https://github.com/godotengine/godot-docs/issues/3670.
2020-06-10Merge pull request #39350 from giulianob/improve-tree-redrawRémi Verschelde
Tree: Calling update in _gui_input less frequently
2020-06-10Merge pull request #39390 from mrushyendra/duplicate_signals_masterRémi Verschelde
Fix signal duplication bug when duplicating node with instanced children
2020-06-10Merge pull request #39409 from akien-mga/astar-get_closest_point-deterministicRémi Verschelde
AStar: Make get_closest_point() deterministic for equidistant points
2020-06-10Merge pull request #39413 from akien-mga/doc-file-store-signed-intsRémi Verschelde
doc: Make File store/get integer methods clearer
2020-06-10Merge pull request #39423 from Phischermen/fix-new-text-file-crashRémi Verschelde
Fix crash when creating new text file with no name
2020-06-10Merge pull request #39424 from YeldhamDev/scene_root_selectRémi Verschelde
Fix scene tree showing up when the root selection is present
2020-06-10Document the requirement to update the class reference when contributingHugo Locurcio
Documenting new additions has been an informal requirement for a few months now. This makes it official.
2020-06-10Merge pull request #39429 from Calinou/doc-dictionary-hash-orderRémi Verschelde
Mention ordering caveats for `Dictionary.hash()`
2020-06-10Mention ordering caveats for `Dictionary.hash()`Hugo Locurcio
See https://github.com/godotengine/godot/issues/27615.
2020-06-09Fix scene tree showing up when the root selection is presentMichael Alexsander
2020-06-09doc: Make File store/get integer methods clearerRémi Verschelde
Add an example on how to store signed integers on less than 64 bits, using one bit for the signedness.
2020-06-09Fix crash when creating new text file with no namePhischermen
2020-06-09Fix signal duplication bug when duplicating node with instanced childrenMaganty Rushyendra
Change error checking in `duplicate_signals()` to check for path to `p_original`, thus adhering to the method used in `duplicate`, instead of checking for ownership.
2020-06-09Merge pull request #39372 from aaronfranke/editor-cam-rotRémi Verschelde
Change the default editor camera rotation to position it in +X +Y +Z
2020-06-09Merge pull request #39391 from YeldhamDev/filediag_file_iconRémi Verschelde
Add generic file icon and its modulation to the 'FileDialog'
2020-06-09Merge pull request #39394 from akien-mga/objectdb-cleanup-hintsRémi Verschelde
Core: Add hints to run with --verbose when leaking nodes/resources at exit
2020-06-09Merge pull request #39399 from madmiraal/fix-39374Rémi Verschelde
Test collision mask before creating constraint pair in Godot physics broadphase 2D and 3D.
2020-06-09Merge pull request #39411 from madmiraal/update-rigidbody-sleep-docsRémi Verschelde
Update Rigidbody 2D and 3D sleep documentation.
2020-06-09Update Rigidbody 2D and 3D sleep documentation.Marcel Admiraal
2020-06-09Merge pull request #39407 from Calinou/tweak-invalid-export-preset-messageRémi Verschelde
Tweak the invalid preset error message to mention `export_presets.cfg`
2020-06-09AStar: Make get_closest_point() deterministic for equidistant pointsRémi Verschelde
Closes godotengine/godot-docs#3667. Supersedes #39405.
2020-06-09Tweak the invalid preset error message to mention `export_presets.cfg`Hugo Locurcio
2020-06-08Test collision mask before creating constraint pair in Godot physics ↵Marcel Admiraal
broadphase 2D and 3D.
2020-06-08Core: Add hints to run with --verbose when leaking nodes/resources at exitRémi Verschelde