Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-07-06 | More fill modes for containers, closes #9504 | Juan Linietsky | |
2017-07-06 | Ability to set rotation and scaling pivot for controls. | Juan Linietsky | |
2017-07-06 | -Ability for controls to grow the left/top when anchored. This makes ↵ | Juan Linietsky | |
anchoring controls to the right/bottom easier when they are resized. | |||
2017-07-04 | ItemList: expose methods, in-editor items editing support | Poommetee Ketson | |
2017-06-30 | -Many fixes to VisualScript, fixed property names, etc. | Juan Linietsky | |
-Added ability to set/get a field in GetSet, as well as assignment ops -Added a Select node -Fixed update bugs related to variable list and exported properties, closes #9458 | |||
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-06-25 | tree fix drawing order for header + | toger5 | |
- the collapse arrow gets drawn after the background so its not hidden underneath anymore - custom_bg_color no offset anymore | |||
2017-06-25 | -Added folding to property editor, persistent on objects it edits | Juan Linietsky | |
-Some changes to tree to support this properly | |||
2017-06-25 | BuildSystem: generated files have .gen.extension | Poommetee Ketson | |
2017-06-24 | Merge pull request #9249 from Noshyaar/pr-colorpick | Rémi Verschelde | |
ColorPicker: fix DPI, hue & color update issues | |||
2017-06-24 | Add statements for script types of RichTextLabel | geequlim | |
2017-06-22 | Fix shortcuts, make them visible again and work. | Juan Linietsky | |
2017-06-21 | -Moved NinePatch to shader, saves a ton of draw calls rendering UI | Juan Linietsky | |
-Implemented missing stretch modes, now tile and tile fit work | |||
2017-06-20 | Merge pull request #8407 from Jylhis/popup_item_select_hide | Thomas Herzog | |
Update PopupMenu hiding | |||
2017-06-20 | ColorPicker: fix DPI, hue & color update issues | Poommetee Ketson | |
2017-06-19 | Fix ColorPicker's screen pick functionality | Mariano Suligoy | |
2017-06-16 | -Fix freezes caused by etccomp2, closes #9183 | Juan Linietsky | |
-Normalmaps are now detected and imported as RGTC, both in S3TC and ETC2, this improves their quality. | |||
2017-06-16 | Merge pull request #9196 from volzhs/scene-tab | Rémi Verschelde | |
Enhance scene tabs | |||
2017-06-16 | Enhance scene tabs | volzhs | |
- show scene thumbnail on hover - resize if has many tabs - show full scene file name with current edited scene - can be customized EditorSettings > Interface > Scene Tab - close scene with mouse middle button | |||
2017-06-15 | Color Picker Fixed Appearance | remorse107 | |
Corrected bug with color picker hue section and with the wrong color array being sent to the 256x256 palette selector. Color Picker Fixed Appearance and clang Format | |||
2017-06-14 | get rid of button array | Juan Linietsky | |
2017-06-14 | renamed occurances of ColorRamp with Gradient | Karroffel | |
ColorRamp got renamed to Gradient recently, reduz missed some occurances though. | |||
2017-06-12 | Properly adjust the visible editor rect and make limits respected, closes #8328 | Juan Linietsky | |
2017-06-10 | Restired multithread support in OSX and Windows, should stop the crashes. | Juan Linietsky | |
2017-06-08 | Merge pull request #9051 from toger5/fixedScriptEditorListSeperation | Rémi Verschelde | |
fixed spacing for script editor script list | |||
2017-06-07 | fixed overlapping of temp. colors (script editor) | toger5 | |
+ added a little bit more spacing to the scripts in the script list. the temp colors now expand to the vseperation, instead of having the same size than the stylebox | |||
2017-06-07 | Revert "Fix text warp in color blocks with CJK" | Rémi Verschelde | |
This reverts commit cd778e00dc5362d00d4760c79fc301951f6f9b75. That commit introduced regressions for non-CJK languages are discussed in #8952. Fixes #9078. | |||
2017-06-06 | GraphNode: Remove debug print. | Andreas Haas | |
2017-06-05 | Fix build error | Poommetee Ketson | |
2017-06-05 | Merge pull request #9038 from AlexHolly/rect2-rename-pos | Rémi Verschelde | |
renamed all Rect2.pos to Rect2.position | |||
2017-06-04 | Removed stupid right arrow to edit resource. Now simply click it.. | Juan Linietsky | |
2017-06-04 | renamed all Rect2.pos to Rect2.position | alexholly | |
2017-06-03 | InputEvent: Renamed "pos" property to "position" | Andreas Haas | |
Make the naming consistent with other classes. | |||
2017-05-28 | -Added .hdr format support | Juan Linietsky | |
-Added default environment editor setting -Added environment created by default in new projects -Removed default light and ambient from spatial editor, to make the editor more PBR compliant | |||
2017-05-28 | Fixing typo for rect_position in _change_notify call for Control | Kristupas Stumbrys | |
2017-05-27 | Fix text warp in color blocks with CJK | Geequlim | |
(cherry picked from commit cd778e00dc5362d00d4760c79fc301951f6f9b75) | |||
2017-05-27 | Fix item list scroll speed. | Sean Bohan | |
Remove the extra `set_val` action after the proper one, so the right scroll value won’t get overrided any more. (cherry picked from commit 064dce7a4c4bdca13b5358ccc9f9829f0e1068fb) | |||
2017-05-23 | -Fix the "set_val" call deferred, it was the only one.. closes #8742 | Juan Linietsky | |
-Removed redundant bind in input_event | |||
2017-05-22 | Merge pull request #8862 from volzhs/editor-theme-margin | Rémi Verschelde | |
Fit grid with label and component of editor | |||
2017-05-22 | Fit grid with label and component of editor | volzhs | |
2017-05-21 | fixed crash when dragging to change color in color picker | toger5 | |
2017-05-20 | Removal of InputEvent as built-in Variant type.. | Juan Linietsky | |
this might cause bugs I haven't found yet.. | |||
2017-05-20 | Merge pull request #8631 from volzhs/editor-theme-custom | Rémi Verschelde | |
New customizable editor theme | |||
2017-05-18 | Add column_title_pressed signal to Tree node | yanorax | |
The Tree node column/table form is missing the ability to capture column title clicks easily. Adding this functionality will give us the ability to create functions such as sort by column, which is a common table manipulation ability in games/apps. https://godotengine.org/qa/7699 | |||
2017-05-17 | Removal of Image from Variant, converted to a Resource. | Juan Linietsky | |
2017-05-15 | Merge pull request #8759 from AlexHoratio/master | Rémi Verschelde | |
Fixed #8526, popup menu width now responds to submenu icon | |||
2017-05-14 | Fixed #8526, popup menu width now responds to submenu icon | AlexHoratio | |
2017-05-12 | Fix natural sorting order in EditorFileDialog, FileDialog and ↵ | Damian Day | |
EditorFileSystemDirectory Make EditorFileDialog, FileDialog and EditorFileSystemDirectory alphanumerical sorting more natural Added a new method 'naturalnocasecmp_to' and comparator 'NaturalNoCaseComparator' to String. Fixes #8712. | |||
2017-05-09 | New customizable editor theme | volzhs | |
2017-05-07 | Implemented scrolling factor for smooth trackpad scrolling | toger5 | |
Working platforms platform: OSX, Windows. Support for almost all ui elements, including project list. |