Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-12-23 | Fix caret size with font smaller than row height | Thomas Ruiz | |
2018-12-21 | Merge pull request #24509 from guilhermefelipecgs/fix_24273 | Rémi Verschelde | |
Add bind for TileMap::get_cell_autotile_coord | |||
2018-12-21 | Merge pull request #24508 from guilhermefelipecgs/fix_22756 | Rémi Verschelde | |
Fixes for TileSetEditor and TileMapEditor | |||
2018-12-20 | Add bind for TileMap::get_cell_autotile_coord | Guilherme Felipe | |
2018-12-20 | Fixes for TileSetEditor and TileMapEditor | Guilherme Felipe | |
[TileSetEditor] Hide Bitmask and Priority for ATLAS_TILE [TileMapEditor] Hide "Disable autotile" if the selected tile isn't autotile Fix #22756, don't update bitmask when tilemode is ATLAS_TILE | |||
2018-12-20 | Fix TextureLayered::create not retaining format | Shinryuuji | |
2018-12-19 | Merge pull request #24439 from staalduinen/mouse-motion-fix | Rémi Verschelde | |
fix near infinite loop when no previous mouse position | |||
2018-12-19 | fix near infinite loop when no previous mouse position | Arjen van Staalduinen | |
Added physics_has_last_mousepos to better deal with situations where there is no last_mousepos | |||
2018-12-19 | Fix colored font rendered in wrong size | volzhs | |
Fix #24456 The character->rect.size is properly update at DynamicFontAtSize::_bitmap_to_character so no need to multiply scale again. It was changed with 5cd12f6649387f91d08fd17bf3c70e732798ab58 | |||
2018-12-18 | Fix Word wrap cache desync causing crash | Paulb23 | |
2018-12-18 | Merge pull request #24432 from YeldhamDev/animationtree_editor_fixes | Rémi Verschelde | |
General fixes for the AnimationTree editor | |||
2018-12-18 | Merge pull request #24428 from akien-mga/label-uppercase | Rémi Verschelde | |
Label: Fix kerning when using Uppercase mode | |||
2018-12-17 | General fixes for the AnimationTree editor | Michael Alexsander Silva Dias | |
2018-12-17 | Don't accidentally convert string content to char | Hein-Pieter van Braam | |
Due to the right hand side of the :? trickery the rhs was cast to a char losing precision. Previously this didn't matter, but with CharProxy it does. (Previously we could just happily cast it back to a wchar_t and get the original 16 - 32 bits. Now we'll only ever get the first 8). | |||
2018-12-17 | Label: Fix kerning when using Uppercase mode | Rémi Verschelde | |
Seemingly a typo, I did not check what exact impact it had, but the x_ofs would likely have accumulated errors when using fonts with varying char widths. | |||
2018-12-17 | Merge pull request #24422 from guilhermefelipecgs/fix_z_index_atlas | Rémi Verschelde | |
Add z-index to ATLAS_TILE | |||
2018-12-17 | Add z-index to ATLAS_TILE | Guilherme Felipe | |
2018-12-17 | Fix maybe-uninitialized warnings from GCC 4.8.x | Rémi Verschelde | |
Fixes the following warnings in `p=server target=release_debug` builds on Travis CI: ``` ./core/os/memory.h: In function 'MainLoop* TestOAHashMap::test()': ./core/os/memory.h:108:111: warning: 'dummy' may be used uninitialized in this function [-Wmaybe-uninitialized] #define memnew_placement(m_placement, m_class) _post_initialize(new (m_placement, sizeof(m_class), "") m_class) ^ main/tests/test_oa_hash_map.cpp:98:7: note: 'dummy' was declared here int dummy; ^ scene/resources/bit_mask.cpp:447:3: warning: 'next_i' may be used uninitialized in this function [-Wmaybe-uninitialized] scene/resources/bit_mask.cpp:448:4: warning: 'next_j' may be used uninitialized in this function [-Wmaybe-uninitialized] ``` | |||
2018-12-16 | Fix sub-transitions not using end_node correctly | Guilherme Felipe | |
Fix #22389 | |||
2018-12-16 | Merge pull request #24366 from BastiaanOlij/adjust_sky_orientation | Rémi Verschelde | |
Adding option to re-orient our sky | |||
2018-12-16 | Merge pull request #24379 from YeldhamDev/popupmenu_itemofs_highlight_fix | Rémi Verschelde | |
Fix item highlighting in PopupMenu for items with offset | |||
2018-12-16 | Merge pull request #19501 from Zylann/custom_loaders | Rémi Verschelde | |
Added basic support for custom resource savers and loaders | |||
2018-12-15 | Fix item highlighting in PopupMenu for items with offset | Michael Alexsander Silva Dias | |
2018-12-15 | Adding option to re-orient our sky | Bastiaan Olij | |
2018-12-15 | Added basic support for custom resource savers and loaders | Marc Gilleron | |
2018-12-14 | Prevent FileDialog from stealing focus when setting current file in editor | Kanabenki | |
2018-12-14 | Fix touch release event on _gui_input | Konrad Nowakowski | |
2018-12-14 | fix stop_on_slope affecting sliding up slopes | piratesephiroth | |
2018-12-14 | Fix tree item editable cell not updating when windows was resized | Guilherme Felipe | |
2018-12-14 | Merge pull request #24046 from DualMatrix/stop_slope | Rémi Verschelde | |
Fixed using move_and_slide with stop_on_slope stopping too early | |||
2018-12-14 | Merge pull request #24161 from aroncds/master | Rémi Verschelde | |
Fix properties update in remote transform | |||
2018-12-14 | Expose ButtonGroup's "get_buttons()" to GDScript | Michael Alexsander Silva Dias | |
2018-12-13 | Merge pull request #22870 from semtri/godot-issue-7620 | Rémi Verschelde | |
Fix richtextlabel meta links shouldn't open when swiping to scroll | |||
2018-12-13 | Revert "Use more subtle indentation guides in the script editor" | Rémi Verschelde | |
2018-12-13 | i18n: Sync translation template with current source | Rémi Verschelde | |
Also French translation update and misc fixes to source strings. | |||
2018-12-12 | ColorPicker fixes | merumelu | |
- Fix regression from #22402 which made presets invisible ingame with `tools=yes` builds. - Don't emit `color_changed` signal when deleting a preset as no color change happens. | |||
2018-12-12 | Merge pull request #22739 from DualMatrix/autoplay_warn | Rémi Verschelde | |
Added warning when setting autoplay of AnimationPlayer that's inside the tree. | |||
2018-12-12 | Merge pull request #24267 from YeldhamDev/buttongroup_remove_panel_theme | Rémi Verschelde | |
Remove "panel" theme property from ButtonGroup | |||
2018-12-11 | Merge pull request #23361 from mrcdk/wav_loop_backward | Rémi Verschelde | |
Add backward looping support to AudioStreamSample (wav files) | |||
2018-12-11 | Merge pull request #21471 from RodZill4/issue_11893 | Rémi Verschelde | |
Fixed issue #11893 (SpinBox capturing mouse) | |||
2018-12-11 | Merge pull request #23887 from ibrahn/dirty-material-list-lifetime | Rémi Verschelde | |
Moved dirty material lists from static to lifetime controlled by main. | |||
2018-12-11 | Merge pull request #23923 from bruvzg/ime_gdscript | Rémi Verschelde | |
Changes IME to make it possible to use it from gdscript/gdnative | |||
2018-12-11 | Merge pull request #22461 from dlasalle/#10480 | Rémi Verschelde | |
Hide shading options in SpatialMaterial when 'FLAG_UNSHADED' is set. | |||
2018-12-11 | Merge pull request #24224 from BastiaanOlij/flip_bitangent | Rémi Verschelde | |
Reverse bitangent on everythings | |||
2018-12-10 | Remove "panel" theme property from ButtonGroup | Michael Alexsander Silva Dias | |
2018-12-10 | Fixed issue #11893 (SpinBox Capturing mouse) | Rodolphe Suescun | |
To prevent the SpinBox from capturing mouse, added a "drag.allowed" variable that is set to true only when clicking inside the control. Entering the control with the left mouse button pressed will not trigger drag anymore. Also modified the value update code when dragging so it does not modify the base_val. | |||
2018-12-09 | Merge pull request #20609 from YeldhamDev/menu_hover_explicit | Rémi Verschelde | |
Make opening menus with the same parent on mouse focus explicit | |||
2018-12-09 | Merge pull request #20725 from Calinou/textedit-subtle-indent-guides | Rémi Verschelde | |
Use more subtle indentation guides in the script editor | |||
2018-12-09 | Warn about AnimationTreePlayer's deprecation | Michael Alexsander Silva Dias | |
2018-12-08 | Reverse bitangent on everythings to ensure default normal map behavriour is ↵ | Bastiaan Olij | |
consistent |