summaryrefslogtreecommitdiff
path: root/scene/gui
AgeCommit message (Collapse)Author
2015-07-20Fix tab indentMariano Javier Suligoy
2015-07-19Select and move multiple nodes at onceMariano Javier Suligoy
2015-07-16Use popup menu to add new nodes to the shader graph editor in the last ↵Mariano Javier Suligoy
clicked location.
2015-06-29Several 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-06-27more code completion improvementsJuan Linietsky
-calltip dissapears with more types of keypresses or when pressing ')' -properly looks into autoloaded scripts or nodes with another script for script functions/variables/etc.
2015-06-26improved get_node(), connect(), etc code completion.Juan Linietsky
-properly completes text arguments -includes the "/root" autoloads
2015-06-23Merge pull request #1907 from tommy3/show-hidden-filesJuan Linietsky
set initial flag 'show_hidden_files' for file dialogs in project manager initialization
2015-06-23Merge pull request #2068 from Krzycho666/color_rampJuan Linietsky
ColorRamp new features
2015-06-22Multiple scene editing *POTENTIALLY UNSTABLE*Juan Linietsky
-ability to edit multiple scenes at the same time -resource internal IDs are now persistent, this makes multiple scene editing possible but maaaaay result in file corruption bugs (tested and could not find anything but possibility exists because core code changed, report immediately if you find this). -properly save settings, layout, etc when edited -script editing is independent from scene editing now -show a yellow box when a script belongs to the scene
2015-06-14missing changesJuan Linietsky
2015-06-13some editor window changesJuan Linietsky
-ability to make dock position configurable, and it gets saved -editor starts maximized default
2015-06-11founded and fixed a bug that freezed godot when deleting while grabbing ↵krzycho
color in ColorRamp
2015-06-11ColorRamp new features:krzycho
- hold alt and left-click to duplicate color - hold shift while grabbing color node to snap selected one to the nearest one if close enough
2015-06-08draw button focus before text and iconJuan Linietsky
closes #2047
2015-06-08grid container supports separate h and v spacingJuan Linietsky
closes #2049
2015-06-07Merge pull request #2007 from Krzycho666/masterJuan Linietsky
Fixed ui_accept problem
2015-06-07Merge pull request #1973 from Biliogadafr/ColorRampJuan Linietsky
Replace color phases with color ramp for Particles2D. (need some review/guidance)
2015-06-06-fixed many memory initialization issuesJuan Linietsky
-fixed deadlock on previews thread -fixed compilation errors on unix
2015-06-06Merge remote-tracking branch 'origin/master'Juan Linietsky
Conflicts: tools/editor/io_plugins/editor_texture_import_plugin.cpp
2015-06-06new file dialog!Juan Linietsky
-ItemList control for easier lists/thumbnails -New file dialog, with support for thumbnails, favorites, recent places, etc -Moved .fscache out of the project, no more bugs due to committed/pulled .fscache! -Dir dialog now sorts directories
2015-06-01-fixes to navigation, so edge-merging is more flexible on conflictJuan Linietsky
-add tab support to richtextlabel -some click fixes to audio stream resampled -ability to import largetextures (dialog)
2015-05-29Fixed ui_accept problem. It's possible now to make a custom ui_accept action ↵krzycho
event and pull it.
2015-05-24Replace color phases with color ramp for Particles2D.Biliogadafr
2015-05-19more fixesJuan Linietsky
fix ctrl-a for some cases, mentioned in #1704 fix toggling visibility not updating, fixes #1923
2015-05-19fixed latin separation in label, broke it? for cjkJuan 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-19more fixesJuan Linietsky
-only refuse to load an older file if version major is different, fixes #1944 -fix drive letter default value, fixes #1939
2015-05-18fix a crash situation when starting a thread and other small fixesJuan Linietsky
2015-05-14set initial flag 'show_hidden_files' for file dialogs in project manager ↵tommy3
initialization
2015-05-09-fix clip+center alignment on Button, fixes #1865Juan Linietsky
2015-05-09-Added prints() function, fixes #1132, #1859Juan Linietsky
-Tabs work inside built-in log window, fixes #1867
2015-05-07Merge pull request #1826 from eehrich/masterJuan Linietsky
Reviewed compiler warnings: fixed some bugs and formal stuff. (2nd try)
2015-05-06-removed dynamic_cast on CheckBox, fixes #1830Juan Linietsky
2015-05-06clearified parenthesis of if constructehriche
2015-05-06optional formal changesehriche
2015-05-05avoid crash on some cases of richtextlabel fill, but odd behavior persists, ↵Juan Linietsky
#1803
2015-05-05fix crash in editor when using alt+arrows to indent, thanks adolson and ↵Juan Linietsky
romulox_x
2015-05-04Merge pull request #1804 from ricpelo/ricpelo-patch-2Juan Linietsky
Wrong use of | instead of ||
2015-05-04fix font import path on windows, closes #1675Juan Linietsky
2015-05-04Wrong use of | instead of ||Ricardo Pérez
2015-05-03Merge pull request #1755 from dbsGen/masterJuan Linietsky
Fixed some bugs in Label.
2015-05-02Triple click doesn't select line if click was done on different lines. Fix #1727Biliogadafr
2015-05-01-fixed old condition in TextureFrame that caused bugs in materials, closes #1742Juan Linietsky
2015-05-01-Fixes from source code analyzizer, closes #1768Juan Linietsky
2015-05-01Optimize the code.Gen
2015-04-30fixed a autowrap bug when word is too length.Gen
2015-04-30Update label.cppGen
2015-04-29space is only skipped when autowrap.Gen
2015-04-29record the number of space before a word.Gen
2015-04-29record the number of space before a words.Gen
2015-04-28bad lookup in grid container corrected, cells are properly aligned again. ↵Juan Linietsky
Fixes #1462