Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-06-18 | -Added AnimationGraphPlayer (still missing features) | Juan Linietsky | |
-Added ability to edit resources from built-in inspector (wip, needs testing and feedback) | |||
2018-06-13 | LineEdit IME position will now ignore placeholder text. | Saracen | |
2018-06-13 | Merge pull request #19509 from SaracenOne/ime | Rémi Verschelde | |
IME context detection. | |||
2018-06-12 | Fix TabContainer not showing tabs on left when resizing. | Guilherme Felipe | |
Fix #19510. | |||
2018-06-11 | IME context detection. | Saracen | |
2018-06-09 | Merge pull request #18298 from gabrii/TextEditScaledSelection | Max Hilbrunner | |
TextEdit scaled selection | |||
2018-06-08 | Merge pull request #19334 from guilhermefelipecgs/fix_popup | Juan Linietsky | |
Fixes popup_centered_* methods, dialogs with wrong sizes and visual script editor | |||
2018-06-07 | Entirely new (and much improved) animation editor. | Juan Linietsky | |
2018-06-06 | Fix #16069, #19292, #19267 and #18940 | Guilherme Felipe | |
2018-06-06 | expose lineedit | Alexander Holland | |
2018-05-24 | Ensures CMD+left and CMD+right only valid for OSX. | Anish | |
Fix in #18370 is now only valid for OSX and is reverted for other OS. Fixes #19042 | |||
2018-05-19 | fix for TextEdit::set_text firing signals it shouldn't. | Ibrahn Sahir | |
Removing some _changed signals in set_ functions. Includes revert of commit 384625aa31a3627c25246e06c1fbc3019866765c | |||
2018-05-18 | Merge pull request #19017 from toger5/fix_no_a_input_script_editor_osx | Rémi Verschelde | |
fixed capital A osx | |||
2018-05-18 | fixed capital A osx | toger5 | |
2018-05-18 | Revert "Fix color-picker sliders" | Rémi Verschelde | |
2018-05-17 | Fix color-picker sliders | Martin Capitanio | |
2018-05-17 | -Ability to open resources in the same window | Juan Linietsky | |
-Plenty of fixes and improvements to new inspector -Fixes that were needed to make inspector work better | |||
2018-05-17 | Merge pull request #18862 from endragor/remove-font-width-ceiling | Rémi Verschelde | |
Ceil char width within Label instead of Font | |||
2018-05-16 | Allow editing of some unbound properties when hinted (or no range hinted) | Juan Linietsky | |
2018-05-16 | Add note about color picker deferred initialization | Juan Linietsky | |
2018-05-16 | Fix segfault at quiting editor | volzhs | |
2018-05-16 | Merge pull request #18910 from PJB3005/18-05-15-fix-textedit-param | Rémi Verschelde | |
Fix missing registration for new param of TextEdit::cursor_set_line. | |||
2018-05-16 | Merge pull request #18909 from ianb96/getcharwidthfix | Rémi Verschelde | |
fix get_char_width for non-latin characters | |||
2018-05-15 | -New inspector. | Juan Linietsky | |
-Changed UI resizing code, gained huge amount of speed. -Reorganized timer sync to clean up behavior (sorry forgot commit this before) - | |||
2018-05-15 | Fix missing registration for new param of TextEdit::cursor_set_line. | Pieter-Jan Briers | |
This caused Mono glue gen to fail and other bugs to appear (such as in Visual Script) | |||
2018-05-15 | fix get_char_width for non-latin characters | ianb96 | |
2018-05-14 | TextEdit word wrap | Ian | |
2018-05-14 | Ceil char width within Label instead of Font | Ruslan Mustakov | |
Some classes use Font::get_char_size directly and not only for autowrapping. RichTextLabel is one such example. So this commit reverts aa8561d (PR #17504) and instead ceils character width within Label. This makes sure Label autowraps correctly while not affecting other Font clients. Fixes #18835. | |||
2018-05-14 | Merge pull request #18853 from YeldhamDev/gui_cppcheck_fixes | Rémi Verschelde | |
Fixed some warnings found with Cppcheck | |||
2018-05-14 | Fixed some warnings found with Cppcheck. | Michael Alexsander Silva Dias | |
2018-05-11 | fixed a input not registered in osx script editor | toger5 | |
2018-05-09 | Apply viewport scale to selection update methods. Changed to propper fix ↵ | Gabriel Gavilan | |
sugested by reduz | |||
2018-05-09 | Consider TextEdit paste operation complex. | Charly Mourglia | |
Not considering a paste operation as a complex one ends up adding an unneeded extra step when pasting over a selection. This fixes issue #18325 | |||
2018-05-08 | Change from "search dialog" to "search bar" on help screen | Guilherme Silva | |
2018-05-08 | Merge pull request #17578 from endragor/ft-outlines | Rémi Verschelde | |
Perfect FreeType-based outlines for DynamicFonts | |||
2018-05-08 | Merge pull request #15258 from RyanStein/bugfix-15241 | Juan Linietsky | |
Use exact positioning for the ItemList::get_tooltip method. | |||
2018-05-08 | Always emit dynamic font change in update_oversampling | Ruslan Mustakov | |
Fixes #15787. The issue occurred when two (or more) separate DynamicFont instances used the same DynamicFontAtSize instance due to having equal properties. The first instance updated its data_at_size and emitted "changed" signal, but the second did not because it considered the data_at_size to be up to date, even though it has just been updated. | |||
2018-05-08 | Perfect FreeType-based outlines for DynamicFonts | Ruslan Mustakov | |
- Implement outlines based on FreeType Stroker API. This allows artifact-free results, similar to what you will see in Web or any text editing tools. Outline is a part of DynamicFont rather than Label, because outlines have to be baked into the font's atlas. Font has a default outline_color and a Label can specify font_outline_modulator that will be multiplied with the Font's color to get the final result. - draw_char now has to be called twice to fully render a text - first with p_outline == true for each character and then with p_outline == false for each character. - Number of draw-calls is reduced from 5 to 2 per outlined character. - Overall cleanup of DynamicFont code, extracted duplicated code pieces into separate methods. - The change is backward-compatible - Labels still have outline properties that work exactly as they worked before. Closes #16279. | |||
2018-05-08 | Merge pull request #18700 from GodotExplorer/fix-#18686 | Max Hilbrunner | |
Add default paramater value for OptionButton::add_icon_item | |||
2018-05-08 | Add default paramater value for OptionButton::add_icon_item | Geequlim | |
2018-05-08 | Merge pull request #15928 from StateOff/feature_batch_rename | Rémi Verschelde | |
Implements "Batch Rename" editor tool. | |||
2018-05-07 | Merge pull request #17451 from Goutte/feat-base-button-mask | Juan Linietsky | |
Allow configuration of which mouse buttons the BaseButton responds to | |||
2018-05-07 | Merge pull request #17828 from bojidar-bg/17779-progressbar-minimum-size | Juan Linietsky | |
Fix StyleBox ignoring region rect and ProgressBar using center size | |||
2018-05-07 | Merge pull request #18003 from sherjilozair/patch_macosx_shortcuts | Juan Linietsky | |
Add additional macos shortcuts for going to start/end of line | |||
2018-05-07 | Merge pull request #18122 from olivergs/wip/rtl-content-height | Max Hilbrunner | |
RichTextLabel, doc: Added new method to get total content height | |||
2018-05-05 | Merge pull request #18146 from mjtorn/gh-mjtorn-rtl-shadow | Max Hilbrunner | |
Implement font shadows for RichTextLabel | |||
2018-05-04 | Merge pull request #18397 from KidRigger/working_te | Max Hilbrunner | |
Support of CMD+Backspace and CMD+Delete on MacOS. | |||
2018-05-03 | Script Editor now displays positional column | Unknown | |
This solves #17931 and makes the script editor consistent with other text editors(Sublime, Gedit, Vim) in displaying the position rather than the raw number of characters. | |||
2018-05-03 | Merge pull request #18514 from neikeq/api-hash-fixes | Rémi Verschelde | |
API hash fixes | |||
2018-05-02 | Fix placeholders position in `LineEdit` when editing inside the Editor | robfram | |
Editing the `Text` property through the editor causes a wrong placement of the placeholder, as it calls `LineEdit::clear_internal`, which was wrongly reseting the cached placeholder width. Fix #18184. |