Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-05-18 | Merge pull request #38825 from akien-mga/glsl-clang-format-fixes | Rémi Verschelde | |
GLSL: Change shader type specifier from [vertex] to #[vertex] | |||
2020-05-18 | GLSL: Change shader type specifier from [vertex] to #[vertex] | Rémi Verschelde | |
The added `#` prevents clang-format from misinterpreting the meaning of this statement and thus messing up the formatting of the next lines up until the first `layout` statement. Similarly, a semicolon is now enforced on `versions` defines to prevent clang-format from messing up formatting and putting them all on a single line. Note: In its current state the code will ignore chained statements on a single line separated by a semicolon. Also removed some extraneous lines missed in previous style changes or added by mistake with said changes (e.g. after uniform definitions that clang-format messes up somewhat too, but we live with it). | |||
2020-05-18 | Merge pull request #38800 from YeldhamDev/icons_complete | Rémi Verschelde | |
Add more missing node icons | |||
2020-05-18 | Merge pull request #38821 from Xrayez/custom-gitignore | Rémi Verschelde | |
Add `custom.py` to .gitignore | |||
2020-05-18 | Add `custom.py` to .gitignore | Andrii Doroshenko (Xrayez) | |
The default `custom.py` can be created at the root of the Godot repository to initialize any SCons build options via file which are specific to user. | |||
2020-05-18 | Merge pull request #38811 from Calinou/popupmenu-default-allow-search | Rémi Verschelde | |
Allow searching with keyboard input by default in PopupMenu | |||
2020-05-18 | Update description of Object.free() method | Remi Rampin | |
Clarify that variables pointing to an object don't become `null` when that object is freed, it just makes them invalid. (cherry picked from commit ccf5703568ab7c33723f322088c83a7d9ebcf5a8) | |||
2020-05-17 | Allow searching with keyboard input by default in PopupMenu | Hugo Locurcio | |
See discussion in https://github.com/godotengine/godot-proposals/issues/43. | |||
2020-05-17 | Merge pull request #38804 from m4gr3d/android_plugin_config_master | Rémi Verschelde | |
Implementation of the Godot Android Plugin configuration file | |||
2020-05-17 | Merge pull request #38795 from Calinou/doc-array-dictionary-reference | Max Hilbrunner | |
Document that Dictionary is always passed as reference | |||
2020-05-17 | Implementation of the Godot Android Plugin configuration file | Fredia Huya-Kouadio | |
2020-05-17 | Add more missing node icons | Michael Alexsander | |
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 | Merge pull request #38793 from Anutrix/window-popup-centered-rect2-fix | Rémi Verschelde | |
Fix popup window size calculation in popup_centered_ratio by using Rect2 | |||
2020-05-16 | Document that Dictionary is always passed as reference | Hugo Locurcio | |
See #38792. | |||
2020-05-17 | Fix popup window size calculation in popup_centered_ratio by using Rect2 | unknown | |
2020-05-16 | Merge pull request #38782 from mbrlabs/text-editor-fix | Rémi Verschelde | |
Fixed text editor drawing if smooth scrolling is disabled. | |||
2020-05-16 | Merge pull request #37519 from HaSa1002/fix-duplicate-inputs-win | Rémi Verschelde | |
Fix input event being dispatched multiple times on Windows | |||
2020-05-16 | Merge pull request #38779 from bruvzg/gdnative_sizes_fix | Rémi Verschelde | |
Fix GDNative wrapper type sizes (RID, Variant, Packed*Array), add size checks. | |||
2020-05-16 | Merge pull request #29587 from Calinou/remove-hq2x | Rémi Verschelde | |
Remove HQ2X and the `Image.expand_2x_hq2x()` method | |||
2020-05-16 | Fixed text editor drawing if smooth scrolling is disabled. | Marcus Brummer | |
Fixes #38778 | |||
2020-05-16 | Fix input event being dispatched multiple times on Windows | HaSa1002 | |
2020-05-16 | Remove HQ2X and the `Image.expand_2x_hq2x()` method | Hugo Locurcio | |
As of Godot 3.0, HQ2X is no longer used to upscale the editor theme and icons on hiDPI displays, which limited its effective uses. HQ2X was also used to upscale the project theme when the "Use Hidpi" project setting was enabled, but results were often less than ideal. The new StyleBoxFlat and SVG support also make HQ2X less important to have as a core feature. This decreases binary sizes slightly (-150 KB on most platforms, -212 KB on WebAssembly release). This partially addresses #12419. | |||
2020-05-16 | Merge pull request #38463 from smartin015/3.2-fixgedit | Rémi Verschelde | |
Remove get_local_mouse_position() hack in GraphEdit | |||
2020-05-16 | Merge pull request #37430 from bruvzg/fix_non_hidpi_popup_pos | Rémi Verschelde | |
[macOS] Fix popup positions on multiple screens. | |||
2020-05-16 | Merge pull request #38451 from eduardonunesp/feature/command-comma-preferences | Rémi Verschelde | |
Using command + comma on macOS as default shortcut for editor settings | |||
2020-05-16 | Remove get_local_mouse_position() hack in GraphEdit | smartin015 | |
2020-05-16 | Fix popup positions on multiple screens (with same scaling only). | bruvzg | |
2020-05-16 | Fix GDNative wrapper type sizes (RID, Variant, Packed*Array), add size ↵ | bruvzg | |
checking static asserts. | |||
2020-05-16 | Merge pull request #38777 from madmiraal/update-r128 | Rémi Verschelde | |
Update r128.h to include latest fixes for mingw-64 32 bit builds. | |||
2020-05-16 | Update r128.h to include latest fix for mingw-64 32 bit builds. | Marcel Admiraal | |
2020-05-16 | Merge pull request #37924 from thebestnom/migrate-to-androidX | Rémi Verschelde | |
Android: Migrate deprecated support library to AndroidX | |||
2020-05-16 | Merge pull request #38772 from neikeq/issue-38729 | Rémi Verschelde | |
websocket: Fix crash at exit when not running the editor | |||
2020-05-16 | websocket: Fix crash at exit when not running the editor | Ignacio Etcheverry | |
EditorDebuggerServer::register_protocol_handler must not be called before editor initialization. Otherwise, if the editor is never initialized, the added StringName will not be released until static destructors are called (instead of being release during editor deinitialization). | |||
2020-05-15 | Fix incorrect capabilities notification in LSP | Oliver Frank | |
(cherry picked from commit 2173d041af711c111d60d1fc1f45f96f4f8c7271) | |||
2020-05-15 | Improve jsonrpc error reporting | Oliver Frank | |
(cherry picked from commit dac8b7b6f4fec0136a3dc95afae0aa8aa8ce9fd9) | |||
2020-05-15 | Merge pull request #38760 from akien-mga/error-macros-style | Rémi Verschelde | |
Error macros: Improve style of error messages | |||
2020-05-15 | Merge pull request #38764 from YeldhamDev/icons_missing | Rémi Verschelde | |
Add more missing icons | |||
2020-05-15 | Replace 'add_child_below_node' with 'add_sibling' in Node | Dominik 'dreamsComeTrue' Jasiński | |
Fixes: #19642 | |||
2020-05-15 | Add more missing icons | Michael Alexsander | |
2020-05-15 | doc: Sync classref with current source | Rémi Verschelde | |
2020-05-15 | Error macros: Improve style of error messages | Rémi Verschelde | |
Document why the `if (1) {} else ((void)0)` construct is used. | |||
2020-05-15 | Merge pull request #38755 from dreamsComeTrue/editor-spin-slider-grabber-hide | Rémi Verschelde | |
Hide editor_spin_slider grabber when closing Editor's windows | |||
2020-05-15 | Merge pull request #36726 from ThakeeNathees/invalid-break-parsing | Rémi Verschelde | |
Fix: break, continue outside of a loop, match statement handled when parsing | |||
2020-05-15 | Merge pull request #38717 from madmiraal/fix-image-uninitialized-warning | Rémi Verschelde | |
Silence 'w' may be used uninitialized in image.cpp warning. | |||
2020-05-15 | Merge pull request #38757 from madmiraal/fix-oidn-mingw-build | Rémi Verschelde | |
Fix #include <windows.h> for case-senstive cross-compilation. | |||
2020-05-15 | Merge pull request #38754 from Calinou/doc-canvasitem-texture-filter-repeat | Rémi Verschelde | |
Document CanvasItem's texture filtering and repeating modes | |||
2020-05-15 | Merge pull request #38753 from Calinou/doc-camera3d-effects | Rémi Verschelde | |
Document the Camera3D's `effects` property | |||
2020-05-15 | Merge pull request #38750 from madmiraal/fix-vulkan-uninitialized-warning | Rémi Verschelde | |
Silence mulitple may be used uninitialized warnings in RenderingDeviceVulkan::uniform_set_create() | |||
2020-05-15 | Fix #include <windows.h> for case-senstive cross-compilation. | Marcel Admiraal | |