Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-12-19 | Added font oversampling support | Juan Linietsky | |
2017-09-02 | Fix use of unitialized variables | Hein-Pieter van Braam | |
The second in my quest to make Godot 3.x compile with -Werror on GCC7 | |||
2017-08-31 | Merge pull request #10096 from toger5/label_stylebox | Rémi Verschelde | |
fixed Import LineEdit to label + label stylebox | |||
2017-08-27 | Use HTTPS URL for Godot's website in the headers | Rémi Verschelde | |
2017-08-20 | ClassDB: Provide the enum name of integer constants | Ignacio Etcheverry | |
2017-08-19 | Fixes to label and code editor to make editing code hopefully fast again. | Juan Linietsky | |
2017-08-18 | Rename localization method to `tr` again | Rémi Verschelde | |
Partial revert of #10380 based on contributor ~~bullying~~ feedback. | |||
2017-08-17 | Rename `XL_MESSAGE` aka `tr` to `localize` | Rémi Verschelde | |
Also renames `set_message_translation` to `set_message_localization` for consistency. | |||
2017-08-17 | fixed Import LineEdit to label + label stylebox | toger5 | |
- added a normal stylebox to label. default is StyleBoxEmpty - changed drawing so that it draws correct with styleboxes with margins - changed the LineEdit in the import to use a label with the lineEdit stylebox | |||
2017-07-25 | Label: update min size when regenerate wordcache | Poommetee Ketson | |
2017-07-21 | Label: add auto_height | Poommetee Ketson | |
2017-07-19 | -Renamed GlobalConfig to ProjectSettings, makes more sense. | Juan Linietsky | |
-Added system for feature overrides, it's pretty cool :) | |||
2017-07-17 | Change label so they appear vertically alligned on fill | Juan Linietsky | |
2017-06-28 | Reworked translation system | Juan Linietsky | |
-Label and Button reload translation on the fly -Resources are loaded and reload depending on locale | |||
2017-04-08 | Add "Godot Engine contributors" copyright line | Rémi Verschelde | |
2017-03-05 | A Whole New World (clang-format edition) | Rémi Verschelde | |
I can show you the code Pretty, with proper whitespace Tell me, coder, now when did You last write readable code? I can open your eyes Make you see your bad indent Force you to respect the style The core devs agreed upon A whole new world A new fantastic code format A de facto standard With some sugar Enforced with clang-format A whole new world A dazzling style we all dreamed of And when we read it through It's crystal clear That now we're in a whole new world of code | |||
2017-02-21 | -renamed globals.h to global_config.cpp (this seems to have caused a few ↵ | Juan Linietsky | |
modified files) -.pck and .zip exporting redone, seems to be working.. | |||
2017-02-13 | Rename the _MD macro to D_METHOD | Hein-Pieter van Braam | |
This new name also makes its purpose a little clearer This is a step towards fixing #56 | |||
2017-02-13 | Remove use of _SCS from ADD_METHOD | Hein-Pieter van Braam | |
This saves typing and is a step towards fixing #56 | |||
2017-01-16 | Style: Fix statements ending with ';;' | Rémi Verschelde | |
2017-01-09 | -Translation text will change automatically for in-game buttons, labels, ↵ | Juan Linietsky | |
poups when translation is changed. -Added a NOTIFICATION_TRANSLATION_CHANGED for controls that need custom code -Sorry, editor will not update automatically because it uses a different translatio method. | |||
2017-01-09 | -All types have editable script now in properties | Juan Linietsky | |
-Changed clip to a property in Control which can be set by the user | |||
2017-01-08 | -removed stop mouse and ignore mouse from control, which were confusing, ↵ | Juan Linietsky | |
replaced by mouse filter | |||
2017-01-02 | ObjectTypeDB was renamed to ClassDB. Types are meant to be more generic to ↵ | Juan Linietsky | |
Variant. All usages of "type" to refer to classes were renamed to "class" ClassDB has been exposed to GDScript. OBJ_TYPE() macro is now GDCLASS() | |||
2017-01-01 | Welcome in 2017, dear changelog reader! | Rémi Verschelde | |
That year should bring the long-awaited OpenGL ES 3.0 compatible renderer with state-of-the-art rendering techniques tuned to work as low as middle end handheld devices - without compromising with the possibilities given for higher end desktop games of course. Great times ahead for the Godot community and the gamers that will play our games! | |||
2016-11-07 | Fix Label valign position | volzhs | |
Fix #7055 | |||
2016-11-04 | fix a tiny typo | ScotFlux | |
2016-08-02 | Added extra spacing support for DynamicFont | Zher Huei Lee | |
Side effect is that label min-size will now take into account kerning. | |||
2016-07-18 | Label: Added `get_visible_line_count` method | Ignacio Etcheverry | |
2016-07-09 | line/col label was changing size with each cursor move, forcing the GUI to ↵ | Juan Linietsky | |
resize upwards and costing considerably CPU usage. It has been changed so it won't resize the UI when modified. This will make the code editor feel a lot smoother. | |||
2016-07-07 | Remove unused variables (third pass) + dead code | Rémi Verschelde | |
Fixes various gcc 5.4.0 warnings for -Wunused-variable and -Wunused-but-set-variable | |||
2016-06-09 | Fix last line of label being deleted by line spacing | Juan Linietsky | |
2016-06-09 | Revert "Fix min size bug of Label" | Juan Linietsky | |
2016-06-06 | Fix min size bug of Label | volzhs | |
caused by #5030 | |||
2016-06-04 | fix line_edit&label get min size bug | sanikoyes | |
fix line_edit draw char(x ofs_max) | |||
2016-05-17 | -Added configuration warning system for nodes | Juan Linietsky | |
-Added a new "add" and "instance" buttons for scene tree -Added a vformat() function to ease translation work | |||
2016-01-01 | Update copyright to 2016 in headers | George Marques | |
2015-09-08 | fix minsize-related issues with Label | Zher Huei Lee | |
- fixed end of string adding to Label minsize - exposed set_clip_text() and is_clipping_text() to the script side - text would now never stick outside its boundaries - label min-height is now restricted by max_lines_visible | |||
2015-09-07 | added get_visible_characters() to Label | Zher Huei Lee | |
2015-09-07 | reworked Label class | Zher Huei Lee | |
- no longer inherits Range - instead, more sensible function names controlling lines visible - more accurate vertical alignment - percent_visible preserved even after setting new text | |||
2015-06-29 | Several performance improvements, mainly in loading and instancing scenes ↵ | Juan Linietsky | |
and resources. A general speedup should be apparent, with even more peformance increase when compiling optimized. WARNING: Tested and it seems to work, but if something breaks, please report. | |||
2015-05-19 | fixed latin separation in label, broke it? for cjk | Juan Linietsky | |
changed non-separatable character detection so latin works properly. This is probably incorrect. If you speak chinese, korean or japanese, please help me fix it. closes #1935 | |||
2015-05-06 | clearified parenthesis of if construct | ehriche | |
2015-05-01 | Optimize the code. | Gen | |
2015-04-30 | fixed a autowrap bug when word is too length. | Gen | |
2015-04-30 | Update label.cpp | Gen | |
2015-04-29 | space is only skipped when autowrap. | Gen | |
2015-04-29 | record the number of space before a words. | Gen | |
2015-04-28 | Update label.cpp | Gen | |
2015-04-18 | Updated copyright year in all headers | Juan Linietsky | |