aboutsummaryrefslogtreecommitdiff
path: root/platform/javascript/javascript_main.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-06-23Fix typo to PTRCALL_ENABLED from previous commitRémi Verschelde1-15/+8
And boo @reduz, those trailing spaces :p
2016-06-23added "arch" parameter, made iphone use it to build isimAriel Manzur2-6/+17
2016-06-23iOS simulator: merge into iphone detect.pyRémi Verschelde3-155/+31
Fixes #4489
2016-06-22Improved binding system (ObjectTypeDB::bind_method) to be friendlier to ↵Juan Linietsky22-23/+517
statically typed languages, should help in the Mono integration. Disabled by default.
2016-06-23Make editor compatible with Windows high contrast themesPedro J. Estébanez2-0/+27
By providing a manifest specifying the targeted Windows versions (as per https://msdn.microsoft.com/en-us/library/windows/desktop/hh404233(v=vs.85).aspx#_______supporting_high_contrast_themes_in_windows_8_and_later) now the Godot editor renders normally under a high contrast theme on Windows, instead of staying white/black.
2016-06-22Fixed iCCp chunk in pngsJ08nY151-105/+105
neccesary for libpng 1.6.27 to work silently
2016-06-22libpng: New version 1.6.27J08nY26-8469/+15338
Warning: libpng 1.6 is strict about iCCp chunks being incorrect, solution is to fix the profile. On *nix ImageMagicks "convert" works on windows optiPNG.
2016-06-22Fixed save as not working with scriptsPaulb231-0/+1
2016-06-22Added alert() functionality for OS XKeyaku2-0/+18
2016-06-22fix android resource localevolzhs2-0/+0
2016-06-22Classref: added for new *Array bindingsJ08nY1-0/+223
- append(),append_array(),insert(),remove()
2016-06-22*Array: added bindings for other DVector methodsJ08nY1-7/+42
- affects {RAW,INT,REAL,STRING,VECTOR2,VECTOR3,COLOR}_ARRAY - adds bindings for append(),append_array(),remove(),insert() - broadens #4245
2016-06-21Fixed error using the same atlas rect for all images, closes #4139Juan Linietsky3-2/+17
2016-06-21Better support in ScriptLanguage for GC based scriptsJuan Linietsky2-2/+15
2016-06-22classref: Fix UTF-8 parsing in makerstRémi Verschelde1-2/+3
2016-06-21Expose missing Quaternion operators.Andreas Haas1-3/+12
Scripts can now evaluate the following cases: - (quat * real) and (quat / real) - (quat + quat) and (quat - quat)
2016-06-21Sync classes.xml with the new sortingGeorge Marques1-15476/+15546
2016-06-21Fix classes.xml sortingGeorge Marques2-0/+29
Make methods, signals, theme items and constants sort correctly
2016-06-21Fix a inherited transform bug with Camera2D preview drawingBojidar Marinov1-3/+2
Closes #5339
2016-06-21Added code completion existing color settingPaulb236-4/+7
2016-06-21Added code completion selected color settingPaulb236-9/+7
2016-06-21Added code completion background color settingPaulb235-1/+9
2016-06-21Set default duration parameter of joystick vibration to 0.Andreas Haas3-3/+3
2016-06-21Fix File.get_as_text() to return the whole fileGeorge Marques1-0/+7
It was returning only from the cursor forward.
2016-06-21Add classref for File classGeorge Marques1-2/+66
2016-06-21Fix project manager category list, small enchancements as wellBojidar Marinov2-3/+22
2016-06-21Ability to premultiply alpha on font import, fixes #5231Juan Linietsky1-0/+26
2016-06-21Add support levels to searchBojidar Marinov2-1/+27
2016-06-21Check hashes when downloading assetsBojidar Marinov2-10/+18
2016-06-21Animation: Fix property loop_interpolationJ08nY1-3/+4
fixes #5317
2016-06-21Make return type explicit.Saracen1-1/+1
2016-06-21Object: get_signal_connection_list fixedJ08nY1-8/+10
now returns only the connections for the signal argument, as specified fixes #5329
2016-06-21Renamed Trackpad Hint to Emulate 3 Button Mouse. (#5258)sunnystormy2-2/+2
2016-06-20property remove parent owned nodes when using replace, fixes #4128Juan Linietsky3-0/+18
2016-06-20do not crash when generating preview of very large sound files, fixes #4123Juan Linietsky2-12/+12
2016-06-20fix CanvasItem.get_global_transform() and CanvasItem.get_local_transform(), ↵Juan Linietsky2-3/+6
closes #4075
2016-06-20Fixed file name being removed on folder change in save as dialogs fixes #5324Daniel J. Ramirez1-3/+0
2016-06-20Don't create outlines from dummy meshes. Fixes #4718MarianoGNU1-0/+6
2016-06-20fix bug decompressing bc texture, closes #4404Juan Linietsky1-2/+17
2016-06-20Fixed the order of events called by _input, closes #4384Juan Linietsky1-1/+1
2016-06-20Add quotes to .tscn keys, solves #4366Juan Linietsky2-3/+21
2016-06-20added missing status, closes #4361Juan Linietsky1-0/+1
2016-06-20Allow mouse wheel to go throuhgh so scroll containers work properly, fixes #4431Juan Linietsky1-1/+9
2016-06-20Fix error storing path for children of instanced nodes in .tscn, fixes #4320 ↵Juan Linietsky2-4/+1
fixes #4579 fixes #4580
2016-06-20Fixed caret not drawing on focus regainPaulb231-0/+3
2016-06-20Changed save all scripts shortcut to avoid collision, fixes #4278Juan Linietsky1-1/+1
2016-06-21correct current Intent for androidvolzhs1-1/+13
2016-06-20properly initialize loops to 0 in eventplayerJuan Linietsky1-1/+1
2016-06-20fix loop counter for eventstream, closes #4493Juan Linietsky1-4/+6
2016-06-20-Improved theme editor, when a new class is added, the members are created ↵Juan Linietsky2-36/+50
empty, closes #4619 -Made theme editor take less vertical space by using a scroll area