aboutsummaryrefslogtreecommitdiff
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
* corrently parse utf8 from zip_io open, closes #1708Juan Linietsky2016-07-091-2/+5
| | | | | | this probably failed when exporting or opening android apk files too, should fix that too. (cherry picked from commit 1c541a2bee5f3ad71509d0d4a08d6db7d97c46da)
* classref: Fix arg name for is_action_pressed/releasedRémi Verschelde2016-07-081-4/+4
| | | | | | Also position TEXTURE_SPHERE constant properly. (cherry picked from commit a15de809429171e93556db6e9d7010a2b3d61f18)
* Make sure builtin types' constants remain in orderGeorge Marques2016-07-081-42/+60
| | | | | | | | | | This adds a list of constants for VariantCall to make sure the order of register is kept when showing in the editor help and in the documentation. This also remove the sorting of constants from the doctool, so it keeps the natural order in classes.xml. (cherry picked from commit 29b62ce5d009bfdc57e065e450d7e01c5bd5bd05)
* Prettier str() for arraysIgnacio Etcheverry2016-07-081-6/+12
| | | | (cherry picked from commit 38ed5d9c7d5b3ce03e7ac5141ef0115a605e75bf)
* Fix style bug in event queueRémi Verschelde2016-07-081-1/+1
| | | | | | | Same fix as for 1f9812ab835e97ff07f4abba23a7915e04d306c9 Not sure if this code actually does anything though, `buffer_max_used` seems unused. (cherry picked from commit bd424d8f734fdad261953142451e412db60b4543)
* fix bug in reporting of message queue sizeJuan Linietsky2016-07-081-1/+1
| | | | (cherry picked from commit 1f9812ab835e97ff07f4abba23a7915e04d306c9)
* Properly deliver localized coordinates when passing gui events through ↵Juan Linietsky2016-07-082-1/+62
| | | | | | parents, closes #4215 (cherry picked from commit 47d6cc08bbd745d63829e02ae408c4ce09ce1299)
* Fix bug in String==StrRange comparisonGeorge Marques2016-06-251-5/+2
| | | | | | | | | It was comparing the StrRange with itself, always return true if both were the same length. Fix #3843 (cherry picked from commit f4dfa37a23629e011dac74911a87860edf83c63d)
* Fix File.get_as_text() to return the whole fileGeorge Marques2016-06-251-0/+7
| | | | | | It was returning only from the cursor forward. (cherry picked from commit 0f20d8756e6d6842449e4249ba961178b24c72ee)
* fix CanvasItem.get_global_transform() and CanvasItem.get_local_transform(), ↵Juan Linietsky2016-06-251-1/+1
| | | | | | closes #4075 (cherry picked from commit fa0d1cd27cac45534097219b52a5b7ab08e1b917)
* fix bug decompressing bc texture, closes #4404Juan Linietsky2016-06-251-2/+17
| | | | (cherry picked from commit 9d4cdc6d8a04cfbd543b5385f68e61dd1b33bd94)
* Add quotes to .tscn keys, solves #4366Juan Linietsky2016-06-251-1/+14
| | | | (cherry picked from commit 6872139300cefae120d6ec9493ebb134c41ec7cc)
* added missing status, closes #4361Juan Linietsky2016-06-251-0/+1
| | | | (cherry picked from commit e9d2c9ad51f7251ec39ccc7a890735bc1225a448)
* Fixed PacketPeer.get_var() return type in docsJ08nY2016-06-251-1/+1
| | | | (cherry picked from commit 6bbc53ee18f273cd45a332847a9053a268b3937c)
* Classref: Added docs for StreamPeer* (#5216)J08nY2016-06-251-1/+0
| | | | (cherry picked from commit cffdc52482b12db0fec62a49680a350734cc5c6b)
* String documentation: .ord_at() returns int not StringJ08nY2016-06-251-1/+1
| | | | | | fixes #5189 (cherry picked from commit 58a891265aabc7944ae5b7e588b64ff21ecd3ea8)
* Dictionary: rename param in .has() .has_all() .erase()J08nY2016-06-251-3/+3
| | | | | | fixes #5190, param should be named key, not value (cherry picked from commit 7a19e3c6ae360fc278f2eed7b5d402d794b794e3)
* -Avoid negative zero from being saved to config files o resource files, ↵Juan Linietsky2016-06-251-16/+23
| | | | | | fixes #4758 (cherry picked from commit 910151a36153d954acaff9c95ef09ec6540179fa)
* Made error when signal calls a method with the wrong number of parameters ↵Juan Linietsky2016-06-251-2/+2
| | | | | | more detailed, closes #4893 (cherry picked from commit 4bb93c976c6b67b4538c8a012ea549ec24e3ac1a)
* Exposed Image.INTERPOLATE_*J08nY2016-06-251-0/+3
| | | | (cherry picked from commit 8a4eca8aa84ae79feba4c73f45af77b3dfde0e65)
* fixed interactive_loader() not returning a cached sceneTheoXD2016-06-251-1/+5
| | | | (cherry picked from commit 47bd1e868893c6ad8cd56b591115b181726b7b93)
* Add missing license information (MiniZip)Roberto2016-06-258-6/+98
| | | | (cherry picked from commit 04fc62c4e3ace066cfb6c1114dc0238b299e2d7c)
* fix ui_* input events in EditorAndreas Haas2016-06-251-24/+24
| | | | | | | `input/` is the category for these in globals ^^ fixes #5050 (cherry picked from commit a9779efe820e4ca62e498487d4e75e952d8b1bda)
* Make Input Actions config not affect the editorJuan Linietsky2016-06-252-0/+63
| | | | (cherry picked from commit 64fd75d91a65d6fe05cf6c3578f53f85b4c92c27)
* change invalid characters when get user data dir on Windows & Unixvolzhs2016-06-252-0/+10
| | | | | | | | | Can't create user data folder when project name has ``\ / : * ? " < > |`` characters on OS_Windows & OS_Unix. So, change it to ``-`` to be able to make folder. fixes #4928 and it's altanative to #4986. (cherry picked from commit 9073dc99634285edc3b4886467871c14100f8233)
* Added InputMap.get_actions()J08nY2016-06-052-0/+32
| | | | | | get_actions() lists all actions in the InputMap. (cherry picked from commit 1a80b2a04a16f930e0d5cca4bdf322769d5a24f9)
* Fix typo in http_client.hJ08nY2016-06-051-1/+1
| | | | (cherry picked from commit b4fb4a131dcfc4b62b07e33430d638c0813c3b71)
* Make Color.{rgba}8 return int instead floatAndreas Haas2016-06-041-5/+5
| | | | | | | According to the class doc, these should be int. Also fixed a little bug: the setter for 'r8' changed the green value (cherry picked from commit da3247a500662dcbd8e1946ecf0a9af19a146982)
* Add spaces to macros in memory.h to make C++11 compilers happyGeequlim2016-06-041-5/+4
| | | | (cherry picked from commit 728ce570a55a563ac78ade7998fa204a64dca3c5)
* classref: Directory and ConfigFileRémi Verschelde2016-05-122-6/+6
| | | | (cherry picked from commit 22d1385caf40badde869fb114b01f6f50ab608ab)
* Added possibility to strip left and right to strip_edges (#4594)Mattias Cibien2016-05-123-14/+18
| | | | (cherry picked from commit 49c473bb365054969687f14ed0b55bfe3b06e637)
* fix percent decode utf8 errorAlexander Holland2016-05-121-5/+6
| | | | (cherry picked from commit f86cffd8e6cacb09cf59c27423c7e82c0e024aaa)
* Add missing Vector2Array case to Variant::operator String()Ignacio Etcheverry2016-05-061-0/+12
| | | | | | - Correcly display Vector2Array default arguments in the documentation (cherry picked from commit 2060e6616cb39362cddc3c57a94292896f9f4525)
* Variant: readd Dict.has_allRémi Verschelde2016-05-061-0/+2
| | | | Erroneously removed in 4bc494ae2ec07497d27d97acccdd6514c6ae878a.
* ability to shrink all images x2 on loadJuan Linietsky2016-05-052-0/+61
| | | | | this is for extreme cases when running on devices with very low video memory, so you can still retain compatibility.
* export fix_alpha_edgesAriel Manzur2016-05-051-2/+2
|
* math: Fix rounding error for 0 in Math::round (#4495)Rémi Verschelde2016-05-011-1/+3
| | | | | | Thus revert the previous workaround in commit b123bc4a2a9c07fcfd27a84109960bda158b3b9d. Fixes #3221. (cherry picked from commit 6883325f926af425cf1db7606506f5538b7a205a)
* fix - HTTPClient connection keep-alive duplicate Headers #4208Alexander Holland2016-04-291-0/+1
| | | | (cherry picked from commit 6ad226ac38c16d66d96fa93fef61c4f8a2143ea9)
* Encode axis_value in Variant for InputEvent::JOYSTICK_MOTION.Hinsbart2016-04-271-2/+4
| | | | | | | | Fixes a bug that caused InputMap actions which have been set to joystick axes not to work correctly on exported builds as the axis_value property wouldn't be serialized into engine.cfb. See recent discussion in #49 (Post 121+) (cherry picked from commit 9201b5a27c0672bc249d2ba2a1e26f08b16b5536)
* add sign comparison for joystick axis events in InputMap::_find_eventHinsbart2016-04-271-1/+1
| | | | | | fixes #4400 (cherry picked from commit 3b12f9ea8254e6c979e14b6cc5241edbff5c797a)
* Fix File.get_csv_line not including quoted newlines in the outputBojidar Marinov2016-04-271-1/+3
| | | | | | Close #1232 (cherry picked from commit 7a18bb8ace4bc7a639a1db92826fa16097fda803)
* dictionary has_allAlexander Holland2016-04-273-0/+14
| | | | (cherry picked from commit a8ebd43ab7d246669f1a8bb30fb780c07abe01d6)
* Update vector.hpunto-2016-04-111-2/+3
| | | using non-templated neares_power_of_2
* Remove duplicateRémi Verschelde2016-04-071-1/+0
| | | | (cherry picked from commit 473de561f8827fc29204b011509dcac7ee8e7ce2)
* Remove trailing spacesRémi Verschelde2016-04-021-24/+24
| | | | (cherry picked from commit 0a5472e697dee57956c2583a50bc5cf5faada5d8)
* remove trailing whitespaceHubert Jarosz2016-04-02116-2949/+2949
| | | | (cherry picked from commit 4a4f2479146aa33e235ed57cde311efda68d3c8f)
* Variant::blend: add Quat, fix Vector3.Josh Grams2016-04-021-1/+7
| | | | (cherry picked from commit f7fad321886858dd05d06f1e2d57773a2b24f147)
* fix InputMap::action_erase_event()hondres2016-04-021-4/+1
| | | | | | fixes #3976 (cherry picked from commit 9544042adb2818561370e776f93d6ab7cf0033c5)
* Add support for patch versions (2.0.x)Rémi Verschelde2016-03-061-0/+4
|
* AnimationTreePlayer: blend value tracks (closes #2299)Josh Grams2016-03-053-0/+70
| | | | | | | | Variant: - zero() sets a Variant to the appropriate type of zero value - blend() blends part of one Variant on top of another. (cherry picked from commit 391ce81c5ea037ffcbc525434673f4edd55a7d7e)