summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-06-16Merge pull request #39126 from TwistedTwigleg/GSOC_2020_Working_BranchRémi Verschelde
Skeleton and Skeleton inspector low-level changes
2020-06-16Merge pull request #39314 from ThakeeNathees/debugger-incorrect-line-fixRémi Verschelde
GDScript debugger stepping to incorrect line fix
2020-06-16Merge pull request #39315 from ThakeeNathees/ctrl-click-fix-for-subclassesRémi Verschelde
Fix: Ctrl + Click not working for subclasses
2020-06-16Merge pull request #38934 from KoBeWi/where_to_setgetRémi Verschelde
Link exposed setters/getters in property descriptions
2020-06-16Merge pull request #38917 from bruvzg/in_editor_docs_styleRémi Verschelde
Change in-editor documentation style to match online docs.
2020-06-16Change in-editor documentation style to be closer to online docs.bruvzg
2020-06-15Merge pull request #39189 from touilleMan/issue-38925Rémi Verschelde
Unify OS.get_system_time_* and OS.get_unix_time
2020-06-15Merge pull request #39544 from nathanfranke/canvas-item-parent-node-renameRémi Verschelde
Change "ParentNode" to "Inherit" in Texture Options
2020-06-15Merge pull request #39567 from Ranoller/patch-1Rémi Verschelde
Fix bad position in Camera2D offset and camera rotation if smothing e…
2020-06-15Merge pull request #39570 from madmiraal/ignore-code_blocks-filesRémi Verschelde
Add Code::Blocks files to .gitignore.
2020-06-15Made low level changes to the Skeleton3D class and Skeleton3D inspector. ↵TwistedTwigleg
Changes listed below: * Added helper functions to Skeleton3D for converting transforms from bone space to global space, and vice versa. * Updated the Skeleton3D class reference. * Changed the icon used for bones in the Skeleton3D inspector to use BoneAttachement3D's icon. * Changed the Skeleton3D inspector to use EditorPropertyTransform and EditorPropertyVector3 when possible. * Placed the Transform/Matrix for each bone in a sub-section, so it is visually similar to the Node3D inspector.
2020-06-15Link exposed set/getters in property descriptionsTomasz Chabora
2020-06-15Merge pull request #39546 from vorblen/masterRémi Verschelde
Add description for "absorbent" and "rough"
2020-06-15Merge pull request #39483 from AndreaCatania/eulerRémi Verschelde
Added more euler rotation orders support.
2020-06-15Merge pull request #39439 from Lefl1/rename_get_action_listRémi Verschelde
Renamed InputMap.get_action_list to InputMap.action_get_events
2020-06-15Merge pull request #39560 from akien-mga/fix-dds-validationRémi Verschelde
DDS: Fix loading files without DDSD_CAPS or DDSD_PIXELFORMAT
2020-06-15Merge pull request #39563 from akien-mga/main-ensure-user-data-dir-earlierRémi Verschelde
Main: Ensure existing of user data dir in `setup()`
2020-06-15Add Code::Blocks files to .gitignore.Marcel Admiraal
2020-06-15Fix bad position in Camera2D offset and camera rotation if smothing enabled.Ranoller
Fix https://github.com/godotengine/godot/issues/16323 in master. Apply same solution of https://github.com/godotengine/godot/issues/2074 in rotation and offset.
2020-06-15i18n: Sync translations with WeblateRémi Verschelde
Remove 'de_CH' translation (4% complete) to default to the 100% complete 'de' one. Fixes #32625. (cherry picked from commit 35a5ebb44d534683da4e2e6b774fe7e1d165a24b)
2020-06-15Main: Ensure existing of user data dir in `setup()`Rémi Verschelde
When it was in `setup2()`, it would arrive too late for the optional file logging feature. Fixes #32488.
2020-06-15Merge pull request #39556 from akien-mga/lsp-fix-39548Rémi Verschelde
GDScript LSP: Fix wrong error checks added in #39385
2020-06-15Renamed InputMap.get_action_list to InputMap.get_action_eventsLennard
2020-06-15Add description for "absorbent" and "rough"Vorblen
2020-06-15Merge pull request #39322 from dominiks/filedialog-title-docRémi Verschelde
Add note about automatic window title to FileDialog documentation.
2020-06-15DDS: Fix loading files without DDSD_CAPS or DDSD_PIXELFORMATRémi Verschelde
MSDN says: > When you write .dds files, you should set the DDSD_CAPS and > DDSD_PIXELFORMAT flags, and for mipmapped textures you should also > set the DDSD_MIPMAPCOUNT flag. However, when you read a .dds file, > you should not rely on the DDSD_CAPS, DDSD_PIXELFORMAT, and > DDSD_MIPMAPCOUNT flags being set because some writers of such a file > might not set these flags. https://docs.microsoft.com/en-us/windows/win32/direct3ddds/dds-header ¯\_(ツ)_/¯ Fixes #39516.
2020-06-15Merge pull request #39183 from bruvzg/gdnative_merge_structsRémi Verschelde
GDNative: merge API structs, bump version of merged structs.
2020-06-15Merge pull request #39457 from bruvzg/kbd_layoutsRémi Verschelde
Add keyboard layout enumeration / set / get functions.
2020-06-15Merge pull request #39490 from Calinou/doc-node-virtual-method-treeRémi Verschelde
Clarify Node virtual methdods not being called if node is orphan
2020-06-15Merge pull request #39436 from bruvzg/macos_export_notarizationRémi Verschelde
[macOS export] Add notarization support.
2020-06-15Merge pull request #39485 from theoway/append_bbcode_animation_bugRémi Verschelde
Fixes the stopping of animation effects in bbcode text after appending
2020-06-15Merge pull request #39521 from 31/fix-image-createfromdataRémi Verschelde
Fix Image.create_from_data "use_mipmaps" class doc
2020-06-15Merge pull request #39522 from noidexe/fix-tabcontainer-tabselected-misfireRémi Verschelde
Fix TabContainer emitting spurious tab_selected signals when a theme …
2020-06-15GDScript LSP: Fix wrong error checks added in #39385Rémi Verschelde
Reverts `latest_client_id` back to 0, as I misunderstood how the client IDs are assigned and, without further testing and debugging, I can't say if this was a bug or a valid default value. Similarly, a `latest_client_id` of -1 is no longer raising an error. Fixes #39548.
2020-06-15Merge pull request #39462 from Calinou/doc-in-operatorRémi Verschelde
Document the `in` operator in String, Array and Dictionary classes
2020-06-15Merge pull request #39479 from akien-mga/classdb-default-property-uniqueRémi Verschelde
Object: Add usage hint to instantiate Object properties in editor
2020-06-15Merge pull request #39503 from hilfazer/fav-proj-godot4Rémi Verschelde
Fixed "Favourite Project" button in Project Manager
2020-06-15Merge pull request #39543 from Sawrr/masterRémi Verschelde
Unhide Skeleton3D menu button
2020-06-15Merge pull request #39520 from skyace65/labelRémi Verschelde
Fix label percent visible doc description
2020-06-15Merge pull request #39534 from Calinou/remove-2d-pixel-import-presetRémi Verschelde
Remove the obsolete "2D Pixel" import preset
2020-06-15Merge pull request #39535 from Calinou/doc-viewportcontainer-sizeRémi Verschelde
Document how to resize a SubViewportContainer to avoid stretching
2020-06-15Merge pull request #39549 from KoBeWi/deletebuseffectinatorRémi Verschelde
Delete bus effect with Delete key
2020-06-15Merge pull request #39551 from mrushyendra/regex_class_docRémi Verschelde
[Doc] Fix RegEx expression result
2020-06-15Merge pull request #39552 from mrushyendra/whole_word_match_countRémi Verschelde
Fix match count for whole word search in editor
2020-06-15Fix match count for whole word search in editorMaganty Rushyendra
Check if a match borders a new line char when incrementing match counts.
2020-06-15Fix RegEx example in class doc and correct typoMaganty Rushyendra
Fix minor errors to do with `search_all` example in RegEx and typo in RegExMatch class docs.
2020-06-15Delete bus effect with Delete keyTomasz Chabora
2020-06-14Change "ParentNode" to "Inherit" in Texture OptionsNathan Franke
2020-06-14Unhide Skeleton3D menu buttonSawrr
2020-06-14Merge pull request #39537 from Faless/js/fs_sync_iterationRémi Verschelde
Immediately run first iteration after JS FS sync.