Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-05-18 | Allow project export to be canceled | George Marques | |
2019-05-18 | Merge pull request #28970 from KoBeWi/a_wild_bug_appeared | Max Hilbrunner | |
Fix saving scenes when multi-closing scene tabs | |||
2019-05-18 | Merge pull request #28983 from Calinou/fix-open-project-data-folder | Max Hilbrunner | |
Fix "Open Project Data Folder" in the editor | |||
2019-05-18 | Fix "Open Project Data Folder" in the editor | Hugo Locurcio | |
The handling code also had to be moved as this option was moved to the Tools submenu. | |||
2019-05-17 | Fix saving scenes when multi-closing scene tabs | Tomasz Chabora | |
2019-05-17 | Merge pull request #28366 from iwek7/feature/issue28355/showSpacesInEditor | Max Hilbrunner | |
Add feature to show spaces in code editor | |||
2019-05-17 | Merge pull request #28920 from hmumm/dragging-directory-adds-it-to-script | Max Hilbrunner | |
Directories can now be dragged into the script editor | |||
2019-05-17 | Merge pull request #28962 from ibrahn/themeed-checkbutton-leak | Max Hilbrunner | |
Removed an unused and leaked CheckButton instance in theme editor plugin | |||
2019-05-17 | Merge pull request #28959 from volzhs/doc-editor-plugin-update_overlays | Max Hilbrunner | |
Add description for EditorPlugin.update_overlays | |||
2019-05-17 | Removed an unused and leaked CheckButton instance in theme editor plugin | Ibrahn Sahir | |
2019-05-17 | Add description for EditorPlugin.update_overlays | volzhs | |
2019-05-17 | Merge pull request #28954 from bruvzg/macos_user_icns | Rémi Verschelde | |
Allow using user provided `.icns` files for exported app icons. | |||
2019-05-17 | Merge pull request #28905 from hbina/issue_28585 | Rémi Verschelde | |
Now able to "Copy Node Path" from the Remote tab. Fixes #28585. | |||
2019-05-17 | Merge pull request #28874 from YeldhamDev/toggle_onion_separate | Rémi Verschelde | |
Make "Onion Skinning" toggle its own button | |||
2019-05-17 | Merge pull request #28950 from YeldhamDev/doc_string_format_link | Julian Murgia | |
Add "String Formatting" tutorial link to the 'String' doc | |||
2019-05-17 | [macOS] Allow using user provided `.icns` files for exported app icons. | bruvzg | |
2019-05-17 | Now able to "Copy Node Path" from Remote tab". Fixes issue 28585. | hbina085 | |
2019-05-16 | Add "String Formatting" tutorial link to the 'String' doc | Michael Alexsander Silva Dias | |
2019-05-17 | Merge pull request #28944 from Faless/mix/object_get_indexed | Max Hilbrunner | |
Fix Object::get_indexed for simple properties. | |||
2019-05-17 | Merge pull request #28945 from Paulb23/28860_incorrect_characters | Max Hilbrunner | |
Fix text_edit drawing incorrect chars when syntax highlighting enabled | |||
2019-05-16 | Fix text_edit drawing incorrect chars when syntax highlighting enabled | Paulb23 | |
2019-05-16 | Merge pull request #28587 from Daw11/lanczos | Max Hilbrunner | |
Implement Lanczos image filter | |||
2019-05-16 | Fix Object::get_indexed for simple properties. | Fabio Alessandrelli | |
Object::get_indexed was not correctly reporting invalid keys if the name was a direct property (not a subproperty), causing for example Tween to not report correctly a bad interpolate_property key. | |||
2019-05-16 | Merge pull request #27097 from siddharth952/master | Max Hilbrunner | |
Adjusts the default color for search border | |||
2019-05-16 | Merge pull request #28595 from godotengine/AndreaCatania-patch-1 | Max Hilbrunner | |
Improved CCD calculation algorithm | |||
2019-05-16 | Improved CCD calculation algorithm | Andrea Catania | |
2019-05-16 | Directories can now be dragged into the script editor | Hayden | |
2019-05-16 | Merge pull request #28913 from YeldhamDev/filesystem_open_regression | Rémi Verschelde | |
Fix leftover connection to the "Open" signal in FileSystemDock | |||
2019-05-16 | Merge pull request #28931 from staddy/master | Rémi Verschelde | |
Add support for [url=] tag to makerst.py | |||
2019-05-16 | Add support for [url=] tag to makerst.py | Stanislav | |
Fixes #28904 | |||
2019-05-16 | Merge pull request #28928 from ↵ | Rémi Verschelde | |
godotengine/revert-28328-revert-25543-optimize_bullet_heightfield_raycast2 Revert "Revert "Implemented terrain raycast acceleration"" | |||
2019-05-16 | Revert "Revert "Implemented terrain raycast acceleration"" | Rémi Verschelde | |
2019-05-16 | Merge pull request #28917 from Faless/gdnative/singleton_editor_fix_pr | Rémi Verschelde | |
Update GDNativeLibrarySingletonEditor. | |||
2019-05-16 | Fix OS_UWP::execute's signature after cd4449e | Rémi Verschelde | |
Same as #28919. | |||
2019-05-16 | Merge pull request #28924 from fsecilia/master | Rémi Verschelde | |
Fix indexing failure in unregister_binding_functions. | |||
2019-05-15 | Merge pull request #28919 from Faless/javascript/os_fixes | Max Hilbrunner | |
Fix OS_Javascript execute method | |||
2019-05-15 | Fix indexing failure in NativeScriptLanguage::unregister_binding_functions. | Frank Secilia | |
binding_functions.size() and an instance's binding_data.size() can get out of sync. They sync up when an instance's bindings are requested. When binding functions are registered after creating an instance's bindings, the instance's bindings are out of sync until requested again. If they're never requested, they're never synced. unregister_binding_functions indexes into binding_data, but only checks that its safe to index into binding_functions. When they're out of sync, indexing fails. This revision checks that it's safe to index into binding_data. | |||
2019-05-15 | Fix OS_Javascript execute method | Fabio Alessandrelli | |
Signature was changed in OS via: cd4449e7abe97b2bc883e2d182db2cc41eb35f8c | |||
2019-05-15 | Update GDNativeLibrarySingletonEditor. | Fabio Alessandrelli | |
Moved GDNative singletons discoverer from register_types to GDNativeSingletonEditor. Fix enable/disable switch in GDNativeLibrarySingletonEditor. Separate `gdnative/singletons` and `gdnative/singletons_disabled` project settings, keeping "on by default" behavior. | |||
2019-05-15 | Fix leftover connection to the "Open" signal in FileSystemDock | Michael Alexsander Silva Dias | |
Fixes #28903. | |||
2019-05-15 | doc: Fix issues found by the parser | Rémi Verschelde | |
2019-05-15 | doc: Sync classref with current source | Rémi Verschelde | |
2019-05-15 | Merge pull request #28902 from groud/fix_nan_strength | Rémi Verschelde | |
Fix NaN with get_action_strength | |||
2019-05-15 | Fix NaN with get_action_strength | Gilles Roudière | |
2019-05-15 | Merge pull request #28873 from YeldhamDev/undo_scriptbutton_update | Rémi Verschelde | |
Properly update script button when undoing a script addition | |||
2019-05-15 | Merge pull request #28891 from clayjohn/brdf-fix | Rémi Verschelde | |
Fix lighting bug introduced in clear color changes | |||
2019-05-14 | fix lighting bug introduced in clear color changes | clayjohn | |
2019-05-14 | Merge pull request #28583 from theoniko/show-long-name-variables-correctly | Michael Alexsander Silva Dias | |
Fix First Ctrl+R and Ctrl+F not showing long name variables correctly | |||
2019-05-14 | Merge pull request #28153 from DrMoriarty/recursive-framework-search-paths | Max Hilbrunner | |
Make Xcode recursively search frameworks in project dir | |||
2019-05-14 | Make Xcode recursive search frameworks in project dir | Vasiliy Makarov | |