aboutsummaryrefslogtreecommitdiff
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
* 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)
* Fix allocation bug if compiled with modern clang or gccest312016-02-272-9/+56
| | | | | | | | * Add overflow checked intrinsic abstractions that check on overflow. * Use them for memory allocation code. * Use size_t type for memory allocation code to support full platform dependent width. Fixes #3756.
* Fix missing dependency resolver in Windowseska2016-02-211-0/+1
|
* adds original http headers to response_headersAriel Manzur2016-02-191-4/+4
|
* adds original http header to response_headersAriel Manzur2016-02-191-1/+1
|
* better array alignmentAriel Manzur2016-02-191-4/+4
|
* fixes array allocation bug and sets DEFAULT_ALIGNMENT to 1. probably needs ↵Ariel Manzur2016-02-192-5/+5
| | | | testing
* Reject any native video player calls on iOS that point to files within .pck ↵Aren Villanueva2016-02-194-0/+11
| | | | | | archives. Fix the paths for both res:// and user:// specified video files.
* fix color when hue is set to 1Nuno Donato2016-02-181-5/+7
|
* Rename KEY_KP_SUBSTRACT to KEY_KP_SUBTRACTRémi Verschelde2016-02-173-3/+3
| | | | | The former name was incorrect in English, though for us latin lovers it's an understandable mistake. Second part of and closes #3626.
* Merge pull request #3743 from StraToN/fix_ustring_camelcase2underscoreRémi Verschelde2016-02-172-12/+21
|\ | | | | Fixed String::camelcase_to_underscore() so it works in all cases.
| * Fixed String::camelcase_to_underscore() so it works in all cases. Fixes PR #1650Julian Murgia - StraToN2016-02-172-12/+21
| |
* | Correct octree's AABB intersect test, fixes #3576 and #3253sheepandshepherd2016-02-172-6/+24
|/
* doc: use correct identifier for InputEventJoystick{Motion, Button}hondres2016-02-101-2/+2
|
* support horizontal mouse wheel, use in text editorhondres2016-02-042-1/+6
|
* Merge pull request #3493 from Hinsbart/wm_classRémi Verschelde2016-02-032-0/+11
|\ | | | | x11: use different strings for WM_CLASS depending on context
| * x11: use different strings for WM_CLASS depending on contexthondres2016-01-272-0/+11
| |
* | Merge pull request #3502 from trtstm/csvRémi Verschelde2016-02-034-7/+9
|\ \ | | | | | | Added delimiter to File.get_csv_line
| * | File: Added delimiter to get_csv_linetmt2016-01-284-7/+9
| |/
* | Merge pull request #3538 from Hinsbart/tempRémi Verschelde2016-02-031-86/+0
|\ \ | | | | | | remove pc_joystick_map.h
| * | remove pc_joystick_map.hhondres2016-02-011-86/+0
| | |
* | | -Correctly flip BG texture if viewport is flipped, fixes #3507Juan Linietsky2016-02-021-0/+2
| | |
* | | -Propertly detect mantissa floats in variantparser, fixes #3257Juan Linietsky2016-02-011-0/+3
| | |
* | | Make sure variant parser recognizes "nil" for compatibility with old ↵Juan Linietsky2016-02-011-1/+1
| | | | | | | | | | | | engine.cfg style cofig. Closes #3531
* | | Merge pull request #3532 from eska014/fix-globals-vectorsJuan Linietsky2016-02-011-0/+8
|\ \ \ | | | | | | | | Encode vectors in Globals
| * | | Encode vectors in Globalseska2016-02-011-0/+8
| |/ /
* | | Merge pull request #3533 from Biliogadafr/FixColorArrayTscnRémi Verschelde2016-02-011-1/+1
|\ \ \ | | | | | | | | Parse ColorArrays correctly (tscn), fixes #3530
| * | | Parse ColorArrays correctly (tscn)., fixes #3530Biliogadafr2016-02-011-1/+1
| |/ /
* / / thread renamingAriel Manzur2016-01-314-24/+18
|/ /
* | -Added method flags to global constants for scriptJuan Linietsky2016-01-312-0/+11
| | | | | | | | -Added a new flag METHOD_FLAG_FROM_SCRIPT to get_method_list() flag property. Closes #3489