aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update the changelog for 3.0.13.0.1-stableHein-Pieter van Braam2018-02-261-0/+50
|
* Add a project changelogHugo Locurcio2018-02-251-0/+140
| | | | (cherry picked from commit f00b2dfc555304b4e9bca0dd84103e074f34b573)
* Fix version.txt validation logic for export templates .tpzRémi Verschelde2018-02-251-14/+4
| | | | | | | | | | | | It assumed that the version would always be `x.y-status`, with no dot possible in `status`, so: - It would not work for 3.0.1-stable (nor 3.0.1.stable with new version logic) - It would not support Mono templates when we provide them The validation it did was not really useful anyway, so we just use the raw string. (cherry picked from commit eec9261a75699723f6e4b722910e5bb762b736db)
* Revert "Bump to version 3.0.2-devel"Rémi Verschelde2018-02-253-5/+5
| | | | | | This reverts commit bcbe7a8a6f442153dddc48f879027e49c8ecf5db. Need to push a fix and retag 3.0.1-stable, sorry.
* Bump to version 3.0.2-develHein-Pieter van Braam2018-02-243-5/+5
| | | | The start of the next patch release. Wooooooooooo
* Bump version to 3.0.1-stableHein-Pieter van Braam2018-02-242-3/+3
| | | | | | | | Thanks everyone for all your amazing work getting our first stable patch release out for the 3.0 series. I'd particularly like to thank @fales and @fire for their work on the server platform. Onwards to 3.0.2!
* Update doc version strings to 3.0.1Hein-Pieter van Braam2018-02-24484-484/+484
|
* Correct version number for 3.0.1 in the manpageHein-Pieter van Braam2018-02-241-1/+1
|
* [DOCS] clarify that OS.get_user_data_dir needs project namePoommetee Ketson2018-02-241-0/+4
| | | | | | [ci skip] (cherry picked from commit 2c22c9dcfbad9639fb9254eb822f9f930cf852db)
* Add --quit option to help output and update manpageRémi Verschelde2018-02-242-3/+10
| | | | (cherry picked from commit 95b8984d5f453f4fc324a9221982abecf3fb4ce9)
* Fix Windows file case changingHein-Pieter van Braam2018-02-241-5/+22
| | | | | | | | Windows APIs don't really provide a way to change a filename case. This implements a little juggling to make this work. We first create a guaranteed unique temporary file, we then replace the original file with the temporary file and we finally rename it to the desired filename case.
* Fixes collisions shape selectionGilles Roudiere2018-02-241-1/+1
| | | | (cherry picked from commit c250a9a9f9e3af665daf89c0cbbdaa4cea2a6a83)
* Refactor version macros and fix related bugsRémi Verschelde2018-02-2413-23/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The previous logic with VERSION_MKSTRING was a bit unwieldy, so there were several places hardcoding their own variant of the version string, potentially with bugs (e.g. forgetting the patch number when defined). The new logic defines: - VERSION_BRANCH, the main 'major.minor' version (e.g. 3.1) - VERSION_NUMBER, which can be 'major.minor' or 'major.minor.patch', depending on whether the latter is defined (e.g. 3.1.4) - VERSION_FULL_CONFIG, which contains the version status (e.g. stable) and the module-specific suffix (e.g. mono) - VERSION_FULL_BUILD, same as above but with build/reference name (e.g. official, custom_build, mageia, etc.) Note: Slight change here, as the previous format had the build name *before* the module-specific suffix; now it's after - VERSION_FULL_NAME, same as before, so VERSION_FULL_BUILD prefixed with "Godot v" for readability Bugs fixed thanks to that: - Export templates version matching now properly takes VERSION_PATCH into account by relying on VERSION_FULL_CONFIG. - ClassDB hash no longer takes the build name into account, but limits itself to VERSION_FULL_CONFIG (build name is cosmetic, not relevant for the API hash). - Docs XML no longer hardcode the VERSION_STATUS, this was annoying. - Small cleanup in Windows .rc file thanks to new macros. (cherry picked from commit 23ebae01dc7e3df9c842ca7d017f7b233837721d)
* Merge pull request #16934 from anakimluke/fix_space_around_argsRémi Verschelde2018-02-241-2/+0
|\ | | | | Removed whitespaces around arguments of functions.
| * Removed whitespaces around arguments of functions.anakimluke2018-02-221-2/+0
|/ | | | | | | | | Functions automatically generated by conneting signals via GUI put whitespaces around the arguments of the generated function. This is inconsistent with the style guide. This commit fixes that.
* server: Add support for statically linking libgcc and libstdc++Rémi Verschelde2018-02-221-0/+5
| | | | (cherry picked from commit be7bfdfac30b3772fde6058d470b81b480f03be7)
* doc: Sync classref with current sourceRémi Verschelde2018-02-228-19/+1897
|
* i18n: Sync translation templates with current sourceRémi Verschelde2018-02-2246-1993/+3150
|
* i18n: Sync translations with WeblateRémi Verschelde2018-02-2213-1978/+1617
| | | | (cherry picked from commit 661ab3c88e7a8bfe69acd90dae7574a11afcea84)
* Fix quotation in stringRado'sPC\aRaGaR2018-02-221-1/+0
| | | | | | fix for #16404 (cherry picked from commit f38e819fc1114858c2b5f46b435d2d4c99c7852f)
* Delete all selected lines using the delete line shortcut in script editorYan Pas2018-02-221-6/+20
| | | | (cherry picked from commit 7368978a48127a4c238f51bd0dbdf4c8d091809f)
* Ignore tools CLI flags in non-tools builds.Pieter-Jan Briers2018-02-221-5/+11
| | | | | | | | Some flags were still parsed but either did nothing or broke everything. No reason to parse them. (cherry picked from commit dd198262779c20fcb96a1b7484c77e21f4cf4ba1)
* Enforce insert_final_newline in the editorconfig.Pieter-Jan Briers2018-02-221-0/+1
| | | | (cherry picked from commit 6861886f706af841442d599570d5f163cf0688ce)
* Clean up some bad words from code commentsArtem Varaksa2018-02-2214-23/+13
| | | | (cherry picked from commit d35e48622800f6686dbdfba380e25170005dcc2b)
* Fix timer second not zero padded when < 10Poommetee Ketson2018-02-221-1/+1
| | | | | | Also RTR "Time Left:" (cherry picked from commit d2e3607fa069924945b1eabed6ebfe8c5a6a0ecc)
* Fix loading project.binary from PCK fileRémi Verschelde2018-02-221-2/+6
| | | | | | | | Regression introduced in #16825. My logic was correct, but not the error code I was expecting. The error reporting in FileAccess likely needs a review too. (cherry picked from commit 57d562b394730649266f902db63d63b448dc1d6e)
* Improve error reporting of ProjectSettings::setup()Rémi Verschelde2018-02-223-31/+58
| | | | | | | | | And use it to better report errors in the console and project manager when a project.godot file is corrupted. Fixes #14963. (cherry picked from commit 7839076f95679c85e7adfdccdd671b2927c82f2f)
* Made the Debugger's Stack Frames items reselectable.Michael Alexsander Silva Dias2018-02-221-0/+1
| | | | (cherry picked from commit 32e3f257ace9b24df47510e036f80438bfe9a177)
* Fix typos with codespellluz.paz2018-02-2255-82/+82
| | | | | | | | | | | | | | | | Found via `codespell -q 3 --skip="./thirdparty,./editor/translations" -I ../godot-word-whitelist.txt` Whitelist consists of: ``` ang doubleclick lod nd que te unselect ``` (cherry picked from commit 612ab4bbc6f2396f4dcd68c3f142f7dfa2f5f0a5)
* Color:fix setting V switch S to old V valuePoommetee Ketson2018-02-221-1/+1
| | | | (cherry picked from commit f4f92b55e102487527fc7f1c7d8ebc1df73c01a7)
* Added documentation for VehicleBodyBastiaanOlij2018-02-222-0/+23
| | | | (cherry picked from commit 234b86e6b2d6ca22e0be6b5225b3763c057546cc)
* Insert proper copy icon to debuggerArtem Varaksa2018-02-221-1/+1
| | | | (cherry picked from commit db2a1544c01e7f52a0a95b58509419c6de949e5d)
* Icons updateDaniel J. Ramirez2018-02-2232-76/+48
| | | | | | includes new enum, MeshInstance2D, Skeleton2D, Cut, Copy and Paste icons. (cherry picked from commit cecf2743648c0d48e20b243cb0353c6a0d660c0a)
* Added missing shader functionsChaosus2018-02-221-0/+38
| | | | (cherry picked from commit 8f04a13c98cf5107c6bad76b1dfa9c95f9a71115)
* Force controls to save rect_clip_content since they do not all default to false.isaacremnant2018-02-221-1/+1
| | | | (cherry picked from commit cc902cf9ab34ef06084fb23831c2fecbafb90784)
* Change function signature from float to double to match type ↵hungrymonkey2018-02-212-2/+2
| | | | | | get_doubleCloses #16160 (cherry picked from commit d2f1c87063162b284d2e13139eb4ec6bcd9662d4)
* Fixes wrong vertical font layout in RichTextLabelBernhard Liebl2018-02-212-4/+24
| | | | (cherry picked from commit 77b1320fb43d92e9090c675714d49fb07201a4c7)
* TextEdit folding over unindented commentsIan2018-02-212-7/+38
| | | | (cherry picked from commit d327f75392b97bee4ad3debd4560cc7c06fc68ab)
* Revert "Fix wrong return type of xform functions"Hein-Pieter van Braam2018-02-213-14/+14
| | | | | | As this will change bindings API this will have to wait for 3.1 This reverts commit 187c40d64dd733ea77b27d96416ab7ad106069b9.
* Fixed sky reflection rendering when transparent BGAndreaCatania2018-02-211-28/+39
| | | | (cherry picked from commit c34f18accecfb6f1e257668b7a4746a11a44ad9f)
* Fixes gravity calculation for kinematic bodies in BulletNeil Moore2018-02-211-1/+2
| | | | (cherry picked from commit 5fb8a6a6c223561e1e7a11699eae8aca68f8abd6)
* Actually fix the db/dc renaming messHein-Pieter van Braam2018-02-212-2/+2
| | | | Local builds save lives :)
* revert the renaming _tree_db_selected functionHein-Pieter van Braam2018-02-212-4/+4
|
* Update warning about C# supportRémi Verschelde2018-02-211-3/+4
| | | | (cherry picked from commit 24cf4fe062b06205d5fcf3e8824eb14f0fbb0246)
* Fixed "Open" button being enabled when nothing is selected in a FileDialog ↵Michael Alexsander Silva Dias2018-02-211-10/+6
| | | | | | while in "Open folder" mode. (cherry picked from commit db80d56388d15c5c70154a68169c4a6d56437c52)
* gltf: improve embedded data discoveryFlorian Zwoch2018-02-211-1/+2
| | | | | | Some editors seems to use the image resource's mime type (e.g. "image/png") for data embedded uris instead of "application/octet-stream". (cherry picked from commit 1abf464b59f66811f21e8ca02114327295841ada)
* Enable snapping when control key pressedChaosus2018-02-212-1/+5
| | | | (cherry picked from commit 24c170555d57ccbbb270f02d0b5d3e98f99b8729)
* Fixed disappearing text on filedialog buttonsMax2018-02-211-4/+4
| | | | (cherry picked from commit 6a48f952ca6969dcbf8e79f11a3859ca426bfba0)
* [Mono] Fixed "expression did not evaluate to a constant" compiler error for ↵Nathan Warden2018-02-211-3/+4
| | | | | | visual studio. (cherry picked from commit 72fe70272d540afca691143d3a4f029176e37087)
* Fix a rendering bug with screen_textureBojidar Marinov2018-02-211-6/+4
| | | | (cherry picked from commit ea57a19b34df4d60e740987f858ae225bbd4cc53)