| Commit message (Expand) | Author | Age | Files | Lines |
* | GDScript: Refactor "GD" class prefix to "GDScript" | Rémi Verschelde | 2017-11-16 | 1 | -2043/+0 |
* | Move Variant::evaluate() switch to computed goto | Hein-Pieter van Braam | 2017-09-17 | 1 | -2/+2 |
* | Use HTTPS URL for Godot's website in the headers | Rémi Verschelde | 2017-08-27 | 1 | -1/+1 |
* | Convert Object::cast_to() to the static version | Hein-Pieter van Braam | 2017-08-24 | 1 | -1/+1 |
* | Removed unnecessary assignments | Wilson E. Alvarez | 2017-08-21 | 1 | -3/+1 |
* | GDScript: Use "is" keyword for type checking. | Andreas Haas | 2017-05-27 | 1 | -1/+1 |
* | Add "Godot Engine contributors" copyright line | Rémi Verschelde | 2017-04-08 | 1 | -0/+1 |
* | Fix typos in source code using codespell | Rémi Verschelde | 2017-03-24 | 1 | -2/+2 |
* | Skip asserts on non-debug builds at compiler level | Pedro J. Estébanez | 2017-03-13 | 1 | -0/+2 |
* | A Whole New World (clang-format edition) | Rémi Verschelde | 2017-03-05 | 1 | -685/+618 |
* | Style: Fix statements ending with ';;' | Rémi Verschelde | 2017-01-16 | 1 | -1/+1 |
* | Merge pull request #6845 from karroffel/master | Juan Linietsky | 2017-01-14 | 1 | -1/+66 |
|\ |
|
| * | pattern matcher: Implemented backend | Karroffel | 2017-01-11 | 1 | -4/+63 |
| * | pattern matcher: Implemented transformations | Karroffel | 2017-01-11 | 1 | -2/+8 |
* | | Style: Fix whole-line commented code | Rémi Verschelde | 2017-01-14 | 1 | -3/+4 |
* | | Implicit inheritance now defaults to Resource, will error for node scripts if... | Juan Linietsky | 2017-01-12 | 1 | -1/+6 |
* | | -GDScript support for accessing properties directly | Juan Linietsky | 2017-01-04 | 1 | -10/+108 |
* | | ObjectTypeDB was renamed to ClassDB. Types are meant to be more generic to Va... | Juan Linietsky | 2017-01-02 | 1 | -2/+2 |
* | | Welcome in 2017, dear changelog reader! | Rémi Verschelde | 2017-01-01 | 1 | -1/+1 |
* | | Fixes #6487, GDscript compiler ignores OPCODE_LINE and OPCODE_BREAKPOINT in R... | yg2f | 2016-09-20 | 1 | -2/+4 |
|/ |
|
* | Do ctrl-click on any code identifier to go to definiton or help page. | Juan Linietsky | 2016-09-12 | 1 | -0/+19 |
* | Ternary operator in GDScript (a if x else b) | Bojidar Marinov | 2016-08-25 | 1 | -0/+40 |
* | Brand new networked multiplayer | Juan Linietsky | 2016-08-19 | 1 | -1/+5 |
* | Forgot to clear signals on recompile, closes #5729 | Juan Linietsky | 2016-07-17 | 1 | -0/+1 |
* | Removed unused variables (first pass) | Rémi Verschelde | 2016-07-07 | 1 | -6/+0 |
* | Merge pull request #5407 from RandomShaper/opt-self-indexing | Juan Linietsky | 2016-07-01 | 1 | -3/+11 |
|\ |
|
| * | Optimize member access with self | Pedro J. Estébanez | 2016-06-25 | 1 | -3/+11 |
* | | Fix extends issue, closes #4026 | Juan Linietsky | 2016-06-28 | 1 | -1/+3 |
|/ |
|
* | -All variables from script are visible through get_property_list(), not just ... | Juan Linietsky | 2016-06-11 | 1 | -0/+3 |
* | Revert "Fix implicit GDScript Reference inheritance" | punto- | 2016-06-06 | 1 | -6/+0 |
* | Fix implicit GDScript Reference inheritance | eska | 2016-06-05 | 1 | -0/+6 |
* | missed ifdef that broke android build | Juan Linietsky | 2016-06-01 | 1 | -1/+3 |
* | Ability to reload scripts on running game | Juan Linietsky | 2016-06-01 | 1 | -7/+69 |
* | First version of Profiler | Juan Linietsky | 2016-05-21 | 1 | -6/+35 |
* | Subclasses can now extend from other subclasses contained in scripts derived ... | Saracen | 2016-04-09 | 1 | -1/+16 |
* | remove trailing whitespace | Hubert Jarosz | 2016-03-09 | 1 | -2/+2 |
* | -wip on addon editor | Juan Linietsky | 2016-02-29 | 1 | -0/+2 |
* | Fixed bug with default arguments in gdscript, closes #2024 | Juan Linietsky | 2016-01-03 | 1 | -1/+2 |
* | Update copyright to 2016 in headers | George Marques | 2016-01-01 | 1 | -1/+1 |
* | added missing null check | Zher Huei Lee | 2015-12-30 | 1 | -1/+1 |
* | -add breakpoint statement to ease with debugging, closes #3165 | reduz | 2015-12-29 | 1 | -0/+4 |
* | - added 'onready' keyword to gdscript. Defers initialization of member variab... | reduz | 2015-12-28 | 1 | -4/+29 |
* | added ability to define signals in script | Juan Linietsky | 2015-06-24 | 1 | -10/+30 |
* | -Throw error if setter and getter reference their member variable with self. ... | Juan Linietsky | 2015-04-18 | 1 | -0/+29 |
* | -try to avoid errors when path using ".." is present in script include, fixes... | Juan Linietsky | 2015-04-18 | 1 | -1/+1 |
* | Updated copyright year in all headers | Juan Linietsky | 2015-04-18 | 1 | -1/+1 |
* | -Resolved bug that made yield() not work in some situations, fixes #884 | Juan Linietsky | 2015-01-06 | 1 | -1/+1 |
* | -added a check for setget while running the game , closes #1009 | Juan Linietsky | 2015-01-03 | 1 | -3/+50 |
* | New Code Completion | Juan Linietsky | 2014-12-16 | 1 | -0/+7 |
* | Bug Fixes | Juan Linietsky | 2014-11-02 | 1 | -10/+14 |