aboutsummaryrefslogtreecommitdiff
path: root/core/bind
Commit message (Collapse)AuthorAgeFilesLines
* Add "Godot Engine contributors" copyright lineRémi Verschelde2017-04-082-0/+2
|
* Bring that Whole New World to the Old Continent tooRémi Verschelde2017-03-192-851/+722
| | | | | Applies the clang-format style to the 2.1 branch as done for master in 5dbf1809c6e3e905b94b8764e99491e608122261.
* Style: Keep long lines for nowRémi Verschelde2017-03-181-22/+11
| | | | | | | clang-format does not play well with tab-aligned multiline statements... Some more research will be needed if we want to set a column limit. (cherry picked from commit e2a3f06f3d0c49d87b86c12407d69174b58ae448)
* Style: No break before list braceRémi Verschelde2017-03-181-2/+1
| | | | | | | | | clang-format does not handle that well *at all*. For the reference, found the relevant pieces of code with: `ag "=[ "$'\t'"]?"$'\n'"[ "$'\t'"]?{" --ignore=thirdparty` (cherry picked from commit 40323407df65ef8f40648c51ab9b4574ea985d7f)
* Add ClassDB binding for File.get_modified_timeAndreas Haas2017-03-182-0/+8
| | | | | | Closes #7613 (cherry picked from commit 5ec0610c606f529b21ffc13596ae5a57ead368cb)
* Expose uncapped versions of closest-point-to-segment utilitiesPedro J. Estébanez2017-03-042-0/+15
|
* Expose Geometry::get_closest_point_to_segment_2d()Pedro J. Estébanez2017-03-042-0/+7
|
* exposed OS.set_exit_code and OS.get_exit_code to ObjectTypeDBkarroffel2017-01-122-0/+16
| | | | (cherry picked from commit fbfcc981d95d94a3d7dfbc214e37bb02da3dec66)
* Welcome in 2017, dear changelog reader!Rémi Verschelde2017-01-122-2/+2
| | | | | | | | | | That year should bring the long-awaited OpenGL ES 3.0 compatible renderer with state-of-the-art rendering techniques tuned to work as low as middle end handheld devices - without compromising with the possibilities given for higher end desktop games of course. Great times ahead for the Godot community and the gamers that will play our games! (cherry picked from commit c7bc44d5ad9aae4902280012f7654e2318cd910e)
* vsnc --> vsyncISylvox2016-11-152-4/+4
| | | | (cherry picked from commit b5c383fd61d554fa02c3e231dd1f92145d90e04e)
* style: Fix PEP8 whitespace issues in Python filesRémi Verschelde2016-11-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Done with `autopep8 --select=E2,W2`, fixes: - E201 - Remove extraneous whitespace. - E202 - Remove extraneous whitespace. - E203 - Remove extraneous whitespace. - E211 - Remove extraneous whitespace. - E221 - Fix extraneous whitespace around keywords. - E222 - Fix extraneous whitespace around keywords. - E223 - Fix extraneous whitespace around keywords. - E224 - Remove extraneous whitespace around operator. - E225 - Fix missing whitespace around operator. - E226 - Fix missing whitespace around operator. - E227 - Fix missing whitespace around operator. - E228 - Fix missing whitespace around operator. - E231 - Add missing whitespace. - E231 - Fix various deprecated code (via lib2to3). - E241 - Fix extraneous whitespace around keywords. - E242 - Remove extraneous whitespace around operator. - E251 - Remove whitespace around parameter '=' sign. - E261 - Fix spacing after comment hash. - E262 - Fix spacing after comment hash. - E265 - Format block comments. - E271 - Fix extraneous whitespace around keywords. - E272 - Fix extraneous whitespace around keywords. - E273 - Fix extraneous whitespace around keywords. - E274 - Fix extraneous whitespace around keywords. - W291 - Remove trailing whitespace. - W293 - Remove trailing whitespace.
* SCsub: Add python shebang as a hint for syntax highlightingRémi Verschelde2016-10-301-0/+2
| | | | | | Also switch existing shebangs to "better" /usr/bin/env python. (cherry picked from commit fc8ccd5b8c8b779bffd0f4d7f22f2f964c939163)
* Fixed bug in make_dir_recursive, closes #6016Juan Linietsky2016-08-081-0/+7
| | | | (cherry picked from commit df6dbadc3efa3c0f36b6c3c8992dba153e303254)
* Merge pull request #5847 from 29jm/patch-3Rémi Verschelde2016-07-222-0/+18
|\ | | | | Expose virtual keyboard functions to GDScript
| * Expose virtual keyboard functions to GDScriptJohan Manuel2016-07-212-0/+18
| |
* | Merge pull request #5560 from vnen/os-request-attentionRémi Verschelde2016-07-212-0/+7
|\ \ | |/ |/| Add OS.request_attention() for Windows
| * Add OS.request_attention() for WindowsGeorge Marques2016-07-052-0/+7
| |
* | Merge pull request #5709 from akien-mga/pr-get-engine-versionRémi Verschelde2016-07-182-0/+9
|\ \ | | | | | | OS: Add get_engine_version method
| * | OS: Add get_engine_version methodRémi Verschelde2016-07-182-0/+9
| | | | | | | | | | | | Fixes #5693.
* | | Remove some noisy debug printsRémi Verschelde2016-07-171-14/+0
|/ / | | | | | | Part of #5031
* | Fix binding of File::get_sha256()George Marques2016-07-141-1/+1
| | | | | | | | Fix #5698
* | windows get_latin_keyboard_variant() implementation and gdscript bindingSuperUserNameMan2016-07-032-0/+15
|/
* Fix File.get_as_text() to return the whole fileGeorge Marques2016-06-211-0/+7
| | | | It was returning only from the cursor forward.
* -Changed how Dir works so it's more user friendly, closes #4705Juan Linietsky2016-06-181-1/+36
|
* -made get_space_left() return values more homogenous, also for script, ↵Juan Linietsky2016-06-181-1/+1
| | | | converted to mb, closes #4617
* Add missing license headers in our source files (#5255)Rémi Verschelde2016-06-182-0/+56
| | | Also removes a couple wrong Godot headers from third-party source files.
* Add sha256 to String and File/FileAccess.Bojidar Marinov2016-06-172-0/+8
| | | | Probably does #4166
* vsync supportJuan Linietsky2016-06-052-0/+14
| | | | | | -works on windows -may not work on X11, if so please fix -OSX does not seem to support disabling vsync
* DPI Detection supportJuan Linietsky2016-05-292-0/+7
| | | | | Windows only for now. Many builds may break (older visual studio, mingw32)
* remove trailing whitespaceHubert Jarosz2016-05-211-16/+16
|
* classref: Directory and ConfigFileRémi Verschelde2016-05-121-5/+5
|
* Add function to convert Date time from a dictionary to EpochKyle Luce2016-03-162-28/+157
| | | | | | | | - Also changed get_time_from_unix_time to get_date_time_from_unix_time to be consistent. Ticket: https://github.com/godotengine/godot/issues/4038
* Fixes the month consistency issue in enums and get_date etcKyle Luce2016-03-132-4/+7
| | | | | | | | | | - Also updated the docs to reflect this. - Added some vim temp files to gitignore - Changed NaCL to be consistent with the other OS_Unix::get_date implementation (added 1 to month to map to 1-12) Ticket: https://github.com/godotengine/godot/issues/4025
* Remove undefined bindsRémi Verschelde2016-03-121-2/+0
| | | | Bug introduced by 6eb4812
* Borderless window support for the Win32 build. Default window position is ↵Saracen2016-03-122-0/+14
| | | | now also centred.
* Merge pull request #3934 from Razzlegames/epocConvertRémi Verschelde2016-03-102-3/+73
|\ | | | | Added epoc to dictionary converter (for human readable display when only given an epoc time)
| * Added epoc to dictionary converterKyle Luce2016-03-052-3/+73
| | | | | | | | | | | | | | Useful for when user is storing time as epoc and wants to do operations on this time and then display in human readable form https://www.facebook.com/groups/godotengine/permalink/737469773056286/?comment_id=738011009668829&reply_comment_id=738192799650650&notif_t=group_comment_reply
* | Merge pull request #3833 from AlexHolly/feature-file-md5Rémi Verschelde2016-03-082-0/+11
|\ \ | |/ |/| expose md5 for file(s) to gdscript
| * expose md5 for file(s) to gdscriptAlexander Holland2016-02-252-0/+11
| |
* | Completed the support for plugins! It is not possible to add plugins.Juan Linietsky2016-02-272-0/+7
|/ | | | | | Not all APIs are provided yet, please request whathever you are missing. Some example plugins are provided in demos/plugins. Just copy them to a folder in your project named addons/ and then enable them from the project settings. Have fun!
* Reject any native video player calls on iOS that point to files within .pck ↵Aren Villanueva2016-02-192-0/+6
| | | | | | archives. Fix the paths for both res:// and user:// specified video files.
* Merge pull request #3502 from trtstm/csvRémi Verschelde2016-02-032-4/+4
|\ | | | | Added delimiter to File.get_csv_line
| * File: Added delimiter to get_csv_linetmt2016-01-282-4/+4
| |
* | thread renamingAriel Manzur2016-01-312-21/+11
|/
* Add ability to set "keep screen on" for androidvolzhs2016-01-162-0/+14
|
* -Removed OS.get_system_time_msec(), this is undoable on Windows and also ↵Juan Linietsky2016-01-102-4/+4
| | | | | | unusable from GDscript due to precision. -Added, instead an OS.get_system_time_secs(), which is 32 bits friendly, fixes #3143
* -Added a new mode, WRITE_READ to File, to recover compatibility with old ↵Juan Linietsky2016-01-102-0/+2
| | | | projects but also achieve desired functionality. Closes #3272
* Add missing argument names in GDScript bindingsRémi Verschelde2015-12-281-6/+6
| | | | | All classes were reviewed apart from VisualServer for which no argument name is documented at all. While doing this review, I found quite a few bugs that were fixed either in earlier commits or this one (mostly documentation bugs though, i.e. some arguments were listed at the wrong place).
* thread can't rename itself on initialization :(Ariel Manzur2015-12-181-2/+3
|
* thread renaming by core_bindAriel Manzur2015-12-181-3/+7
|