summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* A Whole New World (clang-format edition)Rémi Verschelde2017-03-051318-166890/+140937
| | | | | | | | | | | | | | | | | | | | | | | | I can show you the code Pretty, with proper whitespace Tell me, coder, now when did You last write readable code? I can open your eyes Make you see your bad indent Force you to respect the style The core devs agreed upon A whole new world A new fantastic code format A de facto standard With some sugar Enforced with clang-format A whole new world A dazzling style we all dreamed of And when we read it through It's crystal clear That now we're in a whole new world of code
* Style: prevent bogus macro formatting by clang-formatRémi Verschelde2017-03-053-54/+60
| | | | Also prevent formatting of thirdparty snippet
* Merge pull request #7959 from karroffel/powerstate-ptrcall-fixRémi Verschelde2017-03-053-6/+2
|\ | | | | really fixed PTRCALL now
| * really fixed PTRCALL nowKarroffel2017-03-053-6/+2
|/
* Merge pull request #7547 from akien-mga/clang-format-baseRémi Verschelde2017-03-055-0/+356
|\ | | | | Style: Add .clang-format based on LLVM style
| * clang-format: Add pre-commit hookRémi Verschelde2017-02-124-0/+258
| | | | | | | | | | Derived from https://github.com/githubbrowser/Pre-commit-hooks and https://gitlab.cern.ch/GeantV/geant/blob/master/hooks/pre-commit-clang-format
| * Style: Add .clang-format based on LLVM styleRémi Verschelde2017-02-111-0/+98
| | | | | | | | | | | | Adapted some parameters to fit the de facto Godot style as closely as possible (tab indentation, long lines with no wrapping - for now -, indented case labels, left-aligned pointer operators).
* | Merge pull request #7958 from karroffel/powerstate-ptrcall-fixRémi Verschelde2017-03-052-0/+7
|\ \ | | | | | | Added PowerState casting operator to Variant
| * | Added PowerState casting operator to VariantKarroffel2017-03-052-0/+7
| | | | | | | | | | | | Without it Godot does not build with PTRCALL_ENABLED
* | | Add a bunch of missing Godot headers in own filesRémi Verschelde2017-03-05180-120/+3787
|/ /
* | iphone: Drop unused Appirater thirdparty APIRémi Verschelde2017-03-056-970/+0
| |
* | Refactoring: rename tools/editor/ to editor/Rémi Verschelde2017-03-052143-67600/+67600
| | | | | | | | | | | | The other subfolders of tools/ had already been moved to either editor/, misc/ or thirdparty/, so the hiding the editor code that deep was no longer meaningful.
* | Merge pull request #7954 from Hinsbart/tilemap_self_modulateRémi Verschelde2017-03-051-0/+3
|\ \ | | | | | | TileMap: Respect self_modulate property
| * | TileMap: Respect self_modulate propertyAndreas Haas2017-03-051-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | Now `TileMap`s make use of the `self_modulate` property. There's still a bug: The Editor doesn't re-draw with the new color when you change the TileMaps `self_modulate` in the inspector. You'll have to make it update manually (by placing a tile, changing the transform, etc..) I'll open an issue for that after this is merged (If I don't fix it in the meantime ^^).
* | | Merge pull request #7950 from RandomShaper/expose-more-geomRémi Verschelde2017-03-052-0/+15
|\ \ \ | | | | | | | | Expose uncapped versions of closest-point-to-segment utilities
| * | | Expose uncapped versions of closest-point-to-segment utilitiesPedro J. Estébanez2017-03-042-0/+15
| | | |
* | | | Merge pull request #7916 from RebelliousX/tab_containerRémi Verschelde2017-03-053-7/+42
|\ \ \ \ | |_|/ / |/| | | TabContainer's signal changes (v3)
| * | | - `tab_changed` signal emits only by selecting a different tab.Thaer Razeq2017-03-053-7/+42
| | | | | | | | | | | | | | | | | | | | | | | | - Added `tab_selected` signal. Which emits a signal by selecting any tab, if current tab is selected again. - Added `get_previous_tab()`. Which returns the previous shown tab. **Note:** only `tab_changed` can modify previous tab index. - Add documentation for the added function and signals. Fix a typo too.
* | | | Add API to access battery power stateJulian Murgia2017-03-0444-1/+2162
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Done: - X11, server (tested) - Windows (developed, would be nice to retest) - OSX (not tested) Prepared (not developed): - Android (code is here, but may not compile) - iphone - winrt - bb10 - haiku - javascript
* | | | Added AppImage structureDaniel J. Ramirez2017-03-043-0/+12
| | | |
* | | | Implements modules documentsGeequlim2017-03-044-5/+43
| | | | | | | | | | | | | | | | Editor can generate documents for modules in thier own xml files
* | | | Merge pull request #7508 from lonesurvivor/area2d-fixRémi Verschelde2017-03-041-6/+7
|\ \ \ \ | | | | | | | | | | Fix two problems with Area2D and remove_child()
| * | | | When overlappinng Area2Ds are removed with remove_child(), _enter_tree and ↵lonesurvivor2017-01-251-6/+7
| | | | | | | | | | | | | | | | | | | | _exit_tree signals are now properly disconnected upon removal
* | | | | Merge pull request #7929 from RayKoopa/editor_resizable_dialogsRémi Verschelde2017-03-047-42/+105
|\ \ \ \ \ | | | | | | | | | | | | Resizable editor / project settings dialogs & save their bounds
| * | | | | Make Editor, Export and Project settings dialogs resizable and store their ↵Ray Koopa2017-03-037-42/+105
| | | | | | | | | | | | | | | | | | | | | | | | bounds
* | | | | | Merge pull request #7940 from RandomShaper/expose-geometryRémi Verschelde2017-03-042-0/+7
|\ \ \ \ \ \ | | | | | | | | | | | | | | Expose Geometry::get_closest_point_to_segment_2d()
| * | | | | | Expose Geometry::get_closest_point_to_segment_2d()Pedro J. Estébanez2017-03-042-0/+7
| | |_|_|/ / | |/| | | |
* | | | | | Merge pull request #7937 from volzhs/fix-input-androidRémi Verschelde2017-03-041-37/+12
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fix handling input for Android
| * | | | | | Fix handling input for Androidvolzhs2017-03-041-37/+12
| | |/ / / / | |/| | | |
* | | | | | Merge pull request #7927 from volzhs/wrong-ref-treeitemRémi Verschelde2017-03-042-2/+4
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fix wrong TreeItem reference after reconstructing
| * | | | | | Fix wrong TreeItem reference after reconstructingvolzhs2017-03-032-2/+4
| |/ / / / /
* | | | | | Merge pull request #7923 from WalasPrime/fix_7922_peer_presentRémi Verschelde2017-03-043-0/+13
|\ \ \ \ \ \ | | | | | | | | | | | | | | Added a SceneTree.is_network_peer_present, closes #7922
| * | | | | | Added a SceneTree.has_network_peer, closes #7922Karol Walasek2017-03-043-0/+13
| |/ / / / /
* | | | | | Merge pull request #7930 from tagcup/missing_fixme_commentsRémi Verschelde2017-03-022-2/+2
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | | | | | | | Added missing FIXMEs in PR #7878 [ci skip]
| * | | | | Added missing FIXMEs in PR #7878Ferenc Arn2017-03-022-2/+2
|/ / / / /
* | | | | Merge pull request #7911 from RandomShaper/single-field-prop-editRémi Verschelde2017-03-028-82/+359
|\ \ \ \ \ | |/ / / / |/| | | | Implement single-field property change for multinode edit
| * | | | Implement single-field property change for multinode editPedro J. Estébanez2017-03-028-82/+359
| | |/ / | |/| |
* | | | Merge pull request #7882 from AlexHolly/PoolStringArray-joinRémi Verschelde2017-03-022-0/+13
|\ \ \ \ | | | | | | | | | | added join to PoolStringArray
| * | | | added join to PoolStringArrayAlexHolly2017-03-012-0/+13
| | | | |
* | | | | Merge pull request #7628 from RayKoopa/gui_resizable_popupsRémi Verschelde2017-03-023-71/+187
|\ \ \ \ \ | | | | | | | | | | | | Added functionality for resizable WindowDialogs
| * | | | | Added functionality for resizable dialogs.Ray Koopa2017-03-013-71/+187
|/ / / / /
* | | | | Merge pull request #7917 from lmbarros/masterRémi Verschelde2017-03-011-1/+1
|\ \ \ \ \ | |_|/ / / |/| | | | | | | | | | | | | | Fix RANDOM_MAX, which is 2^32-1 with PCG32. [ci skip]
| * | | | Fix RANDOM_MAX, which is 2^32-1 with PCG32.Leandro Motta Barros2017-03-011-1/+1
|/ / / /
* | | | Merge pull request #7878 from RebelliousX/elseRémi Verschelde2017-02-2832-39/+41
|\ \ \ \ | | | | | | | | | | Bunch of missing `else` statements and general logic
| * | | | Various fixes detected using PVS-Studio static analyzer.Thaer Razeq2017-02-2832-39/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add FIXME tags comments to some unfixed potential bugs - Remove some checks (always false: unsigned never < 0) - Fix some if statements based on reviews. - Bunch of missing `else` statements
* | | | | Merge pull request #7787 from SaracenOne/nan_and_infRémi Verschelde2017-02-2811-4/+53
|\ \ \ \ \ | |/ / / / |/| | | | Inf and NaN support added to GDScript
| * | | | Inf and NaN support added to GDScript.Saracen2017-02-2811-4/+53
|/ / / /
* | | | Merge pull request #7904 from tagcup/use_math_prngRémi Verschelde2017-02-282-19/+7
|\ \ \ \ | | | | | | | | | | Use the common PRNG in 2D particles code.
| * | | | Use the common PRNG in 2D particles code.Ferenc Arn2017-02-272-19/+7
| | | | | | | | | | | | | | | | | | | | Replaces the custom PRNG used by 2D particles code with a wrapper for the PRNG located under core/math.
* | | | | Merge pull request #7527 from RayKoopa/inspector_show_in_file_systemRémi Verschelde2017-02-274-5/+51
|\ \ \ \ \ | | | | | | | | | | | | Add menu item in the inspector to show file in FileSystem