Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-09-15 | Merge pull request #36374 from kuruk-mm/tilemap_filter_set_and_update | Rémi Verschelde | |
TileMap: Set texture_filter and texture_repeat to generated CanvasItems... | |||
2020-09-15 | Merge pull request #41776 from EricEzaM/PR/tooltip-bugfixes | Rémi Verschelde | |
Tooltip flickering and targeting fixes. | |||
2020-09-15 | Tooltip flickering and targeting fixes. | Eric M | |
2020-09-12 | TileMap: Set texture_filter and texture_repeat to generated CanvasItems and ↵ | Mateo Dev .59 | |
update when it changes | |||
2020-09-11 | doc: Sync classref with current source | Rémi Verschelde | |
Bind missing enums. | |||
2020-09-10 | scene_tree.h: Update header guard | Yetizone | |
2020-09-07 | Merge pull request #38944 from Wavesonics/http-gzip | Fabio Alessandrelli | |
HttpRequest now handles gzipping response bodies | |||
2020-09-03 | [Complex Test Layouts] Change `String` to use UTF-32 encoding on all platforms. | bruvzg | |
2020-09-03 | Merge pull request #41456 from nekomatata/x11-fix-popups | Rémi Verschelde | |
Popup fixes for X11 display server | |||
2020-09-02 | HTTPRequest now accepts gzip | Adam Brown | |
Added request_raw to HttpRequest Added decompress_dynamic to Compression class Added decompress_dynamic to BytePoolArray Merge doc fix revert | |||
2020-09-01 | Made get_child support negative indexes, with documentation | SekoiaTree | |
2020-08-26 | Fix WINDOW_EVENT_FOCUS_IN for popups on Windows | PouleyKetchoupp | |
On Windows, WINDOW_EVENT_FOCUS_IN was never sent by the display server for popups, because WM_ACTIVATE events are received during the call to _update_window_style, which happened before the callbacks were set. This was causing some issues with the way Popup is now handling closing on parent focus. Now _update_window_style is only called during show_window, after Window initialized callbacks. | |||
2020-08-22 | Re-apply "Fixes for windows in X11 tiling WMs" | PouleyKetchoupp | |
From PR #38727 which was reverted in #41373 because of regressions in Ubuntu with Gnome. Co-authored-by: Lorenzo Cerqua <lorenzocerqua@tutanota.com> | |||
2020-08-19 | Revert "Fixes for windows in X11 tiling WMs" | Juan Linietsky | |
2020-08-12 | Expose NOTIFICATION_POST_ENTER_TREE | Tomasz Chabora | |
2020-08-03 | Fix _input being mistakenly called twice on script | George Marques | |
Instead it calls both the script and the native method. | |||
2020-07-31 | Fix window max_size acting as min_size | opl- | |
2020-07-27 | Fix input after removing multilevel calls | George Marques | |
2020-07-26 | Merge pull request #40724 from KoBeWi/weird_condition_🤔 | Rémi Verschelde | |
Fix ultra long node names | |||
2020-07-26 | Merge pull request #38727 from Riteo/tiling-wm-issues-tests | Rémi Verschelde | |
Fixes for windows in X11 tiling WMs | |||
2020-07-26 | Fix ultra long node names | Tomasz Chabora | |
2020-07-24 | Remove multilevel calls | George Marques | |
In general they are more confusing to users because they expect inheritance to fully override parent methods. This behavior can be enabled by script writers using a simple super() call. | |||
2020-07-23 | DisplayServer: separate window showing into another function | Lorenzo Cerqua | |
When creating a window, Godot would first register it to the WM(show it) and then set its flags. This works fine on a floating WM, but on tiling WMs as soon as a window gets registered the WM immediately acts on the window by scaling it up and treating it as a generic window, being registered without any special flags. This commit separates the showing of the window into another function and calls it after the most important flags are set, making windows with special flags(eg. all popups) work again on tiling WMs. Fixes #37930 | |||
2020-07-10 | Add override keywords. | Marcel Admiraal | |
2020-07-09 | Fix exclusive child focus grab, when there are more than two child windows. | bruvzg | |
2020-07-04 | [macOS] Implement seamless display scaling. | bruvzg | |
2020-07-03 | Merge pull request #40071 from reduz/fix-content-scale | Rémi Verschelde | |
Fix content scale mode, closes #37941 | |||
2020-07-02 | Fix content scale mode, closes #37941 | Juan Linietsky | |
2020-07-02 | Ensure cursor shape changes when exiting window, fixes #37724 | Juan Linietsky | |
2020-07-02 | Merge pull request #34926 from Xrayez/draw-transform-defaults | Rémi Verschelde | |
Provide `draw_set_transform` defaults for rotation and scale | |||
2020-07-02 | Merge pull request #40020 from reduz/fix-tree-edit-focus | Rémi Verschelde | |
Fix doubleclick on tree item, restore input focus on previous windows. | |||
2020-07-01 | Add ability to clamp embedded subwindows to parent, fixes #37792 | Juan Linietsky | |
2020-07-01 | Fix doubleclick on tree item, restore input focus on previous windows. | Juan Linietsky | |
Closes #37335 | |||
2020-07-01 | Provide `draw_set_transform` defaults for rotation and scale | Andrii Doroshenko (Xrayez) | |
2020-07-01 | Ensure embedded mode works again | Juan Linietsky | |
Also implemented application in/out notifications in X11. | |||
2020-06-30 | Make dialogs exclusive by default, fixes #37732 | Juan Linietsky | |
Also fix on set_visible, not creating exclusive children as it should. | |||
2020-06-30 | Add a separate application focus/in notification out from Window focus ↵ | Juan Linietsky | |
notification. | |||
2020-06-26 | Addition of SDFGI for open world global illumination | Juan Linietsky | |
Move GI to a deferred pass | |||
2020-06-19 | Merge pull request #39053 from timoschwarzer/static-assert-variant-arg-max | Rémi Verschelde | |
Add static_assert checks where code assumes VARIANT_ARG_MAX == 5 | |||
2020-06-14 | Change "ParentNode" to "Inherit" in Texture Options | Nathan Franke | |
2020-06-09 | Fix signal duplication bug when duplicating node with instanced children | Maganty 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-05-25 | Add static_assert checks where code assumes VARIANT_ARG_MAX == 5 | Timo Schwarzer | |
2020-05-17 | Merge pull request #38695 from dreamsComeTrue/node-swap-order-arguments | Rémi Verschelde | |
Replace 'add_child_below_node' with 'add_sibling' in Node | |||
2020-05-17 | Fix popup window size calculation in popup_centered_ratio by using Rect2 | unknown | |
2020-05-16 | Fix popup positions on multiple screens (with same scaling only). | bruvzg | |
2020-05-15 | Replace 'add_child_below_node' with 'add_sibling' in Node | Dominik 'dreamsComeTrue' Jasiński | |
Fixes: #19642 | |||
2020-05-14 | Style: Enforce braces around if blocks and loops | Rémi Verschelde | |
Using clang-tidy's `readability-braces-around-statements`. https://clang.llvm.org/extra/clang-tidy/checks/readability-braces-around-statements.html | |||
2020-05-14 | Style: Enforce separation line between function definitions | Rémi Verschelde | |
I couldn't find a tool that enforces it, so I went the manual route: ``` find -name "thirdparty" -prune \ -o -name "*.cpp" -o -name "*.h" -o -name "*.m" -o -name "*.mm" \ -o -name "*.glsl" > files perl -0777 -pi -e 's/\n}\n([^#])/\n}\n\n\1/g' $(cat files) misc/scripts/fix_style.sh -c ``` This adds a newline after all `}` on the first column, unless they are followed by `#` (typically `#endif`). This leads to having lots of places with two lines between function/class definitions, but clang-format then fixes it as we enforce max one line of separation. This doesn't fix potential occurrences of function definitions which are indented (e.g. for a helper class defined in a .cpp), but it's better than nothing. Also can't be made to run easily on CI/hooks so we'll have to be careful with new code. Part of #33027. | |||
2020-05-14 | Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks | Rémi Verschelde | |
Which means that reduz' beloved style which we all became used to will now be changed automatically to remove the first empty line. This makes us lean closer to 1TBS (the one true brace style) instead of hybridating it with some Allman-inspired spacing. There's still the case of braces around single-statement blocks that needs to be addressed (but clang-format can't help with that, but clang-tidy may if we agree about it). Part of #33027. | |||
2020-05-14 | Modernize remaining uses of 0/NULL instead of nullptr (C++11) | Rémi Verschelde | |
Using clang-tidy's `modernize-use-nullptr`. https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-nullptr.html |