aboutsummaryrefslogtreecommitdiff
path: root/platform/javascript/power_javascript.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-01-06Fix crash when using Image.resize() without calling Image.create() firstJerome670002-2/+6
2018-01-06Update DONORS listRémi Verschelde1-13/+13
[ci skip]
2018-01-06[GDNative] added reload propertykarroffel3-12/+42
2018-01-06Fix build of GDMonoFieldRémi Verschelde1-1/+1
Closes #15385.
2018-01-05Avoid crashing when dependencies on inherited/instanced scenes cant be ↵Juan Linietsky1-1/+8
satisfied, fixes #15298
2018-01-06Remove button from button_group when freevolzhs1-3/+3
2018-01-05Print error if a resource can't load from script, fixes #15313Juan Linietsky1-1/+7
2018-01-05Make sure .import folder exists before importing, in case user deleted it ↵Juan Linietsky2-1/+13
manually. Fixes #15315
2018-01-05SCons: Fix usage of LD when we meant LINKRémi Verschelde5-7/+9
Also made LINK and CXXFLAGS configurable as command line options. Note that LINK currently expects the *compiler* that will be used for linking and will call its configured linker behind the scenes (so g++, clang++, etc., not ld.gold). See #15364 for details.
2018-01-05Fixed problem with missing uninitialized last byte on waveform trip, closes ↵Juan Linietsky2-1/+3
#15316
2018-01-05Force button release when window focuses out, fixes #15318 and likely many ↵Juan Linietsky1-5/+16
other issues.
2018-01-05Forced set mouse global position always, hopefully will fix #15354, ↵Juan Linietsky1-0/+1
otherwise out of luck.
2018-01-05Fix theme inheritanceFabio Alessandrelli1-2/+3
2018-01-05Add missing method for javascriptGuilherme Silva2-0/+4
2018-01-05Fix dual paraboloid shadow maps, closes #14487Juan Linietsky1-2/+1
2018-01-05Fixed GIProbe blending, closes #15164Juan Linietsky1-3/+3
2018-01-05Fixes to GLTF2 importer skeleton positioning, though vertex bone indices ↵Juan Linietsky2-15/+46
still look broken somehow..
2018-01-05X11: Add missing return in OS_X11::initialize().Andreas Haas1-0/+2
2018-01-05Issue template: Remove checkbox and reword some commentsRémi Verschelde1-6/+7
2018-01-05prevent autotile properties out of boundsdamarindra1-0/+1
2018-01-05Visual glitch when dragging keyframes #15285. Changed to int cast.Thomas Lynge1-1/+1
2018-01-05Drop obsolete bitmap doc fontsRémi Verschelde4-109/+0
2018-01-05Add missing copyright headers and fix formattingRémi Verschelde1527-238/+2313
Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module.
2018-01-05Improve script to add/fix copyright headersRémi Verschelde1-17/+46
- The header now always ends with exactly one empty line - Comments after the header are no longer removed - Improved readability with clearer file names and comments
2018-01-05Visual glitch when dragging keyframes #15285Thomas Lynge1-1/+1
2018-01-04forward_canvas_gui_input only takes one parameterTim Schellenberg1-1/+1
2018-01-04Mono: Add properties support in scriptsIgnacio Etcheverry20-169/+690
2018-01-04Add GDnative wrapper lib on CI buildEmmanuel Leblond2-2/+2
2018-01-04Disable lto for gdnative wrapperEmmanuel Leblond1-0/+8
2018-01-04Clean up \n from end of translation stringsArtem Varaksa6-12/+12
2018-01-05Fix get_edited_scene_root error at starting editorvolzhs3-2/+4
Fix #15300
2018-01-04Fix macOS and other builds after #15299Duy-Nguyen TA5-7/+8
Commit ammended by @akien-mga to fix more platforms.
2018-01-04Add support from properly exporting shared objects, needed for GDNative exportJuan Linietsky4-5/+60
2018-01-05Fix PopupMenu to show & detect properly hover areavolzhs1-3/+2
Fix #15275
2018-01-04Fix TextEdit::_get_mouse_pos rounding errorsBernhard Liebl1-5/+5
2018-01-04Document Control.mouse_filter and its constants.PJB30051-0/+4
2018-01-04Fixed missing parenthesisArtem Varaksa1-1/+1
2018-01-04Add missing translation in Javascript export dialogRémi Verschelde1-9/+9
Also remove newlines from translated strings.
2018-01-04Fix Issue#15303 FreeBSD compilation error in thekla_atlas due to wrong ↵robfram1-2/+10
definition of NV_OS_LINUX instead NV_OS_FREEBSD
2018-01-04Project Manager: fix random breaking of scrollingBernhard Liebl1-0/+1
2018-01-04Change OS::initialize signature to return Error (fix segfault on x11)Emmanuel Leblond21-41/+63
2018-01-04Fixed "Tile Set" button always showing bug introduced with #15309.Michael Alexsander Silva Dias1-10/+12
2018-01-04RichTextLabel: don't draw underline on single charactersBernhard Liebl1-10/+11
2018-01-04Tree: only draw visible relationship linesBernhard Liebl1-7/+23
2018-01-04Fix word wrapping in tables in RichTextLabelBernhard Liebl1-4/+6
2018-01-03found via cppcheck:firefly24427-11/+7
remove code that will never run make definition and declaration names for parameters match change floats that were being set to bool values remove pointer that is never used
2018-01-04doc: Sync classref with current sourceRémi Verschelde3-41/+39
2018-01-04Fix crash in OS::execute on FreeBSDRémi Verschelde4-11/+10
As spotted by @robfram, closes #15288. Also reviewed other uses of `if (String.find(.*))` for potential similar mistakes, found a wrong (and useless) one in ScriptEditorDialog.
2018-01-03Fixed the "Tile Set" button being able to go out of bounds.Michael Alexsander Silva Dias1-7/+2
2018-01-03TextEdit horizontal scrolling with shiftIan1-2/+10