| Commit message (Collapse) | Author | Age | Files | Lines |
| | |
|
| |
|
|
| |
(cherry picked from commit f00b2dfc555304b4e9bca0dd84103e074f34b573)
|
| |
|
|
|
|
|
|
|
|
|
|
| |
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)
|
| |
|
|
|
|
| |
This reverts commit bcbe7a8a6f442153dddc48f879027e49c8ecf5db.
Need to push a fix and retag 3.0.1-stable, sorry.
|
| |
|
|
| |
The start of the next patch release. Wooooooooooo
|
| |
|
|
|
|
|
|
| |
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!
|
| | |
|
| | |
|
| |
|
|
|
|
| |
[ci skip]
(cherry picked from commit 2c22c9dcfbad9639fb9254eb822f9f930cf852db)
|
| |
|
|
| |
(cherry picked from commit 95b8984d5f453f4fc324a9221982abecf3fb4ce9)
|
| |
|
|
|
|
|
|
| |
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.
|
| |
|
|
| |
(cherry picked from commit c250a9a9f9e3af665daf89c0cbbdaa4cea2a6a83)
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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)
|
| |\
| |
| | |
Removed whitespaces around arguments of functions.
|
| |/
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
| |
(cherry picked from commit be7bfdfac30b3772fde6058d470b81b480f03be7)
|
| | |
|
| | |
|
| |
|
|
| |
(cherry picked from commit 661ab3c88e7a8bfe69acd90dae7574a11afcea84)
|
| |
|
|
|
|
| |
fix for #16404
(cherry picked from commit f38e819fc1114858c2b5f46b435d2d4c99c7852f)
|
| |
|
|
| |
(cherry picked from commit 7368978a48127a4c238f51bd0dbdf4c8d091809f)
|
| |
|
|
|
|
|
|
| |
Some flags were still parsed but either did nothing or broke everything.
No reason to parse them.
(cherry picked from commit dd198262779c20fcb96a1b7484c77e21f4cf4ba1)
|
| |
|
|
| |
(cherry picked from commit 6861886f706af841442d599570d5f163cf0688ce)
|
| |
|
|
| |
(cherry picked from commit d35e48622800f6686dbdfba380e25170005dcc2b)
|
| |
|
|
|
|
| |
Also RTR "Time Left:"
(cherry picked from commit d2e3607fa069924945b1eabed6ebfe8c5a6a0ecc)
|
| |
|
|
|
|
|
|
| |
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)
|
| |
|
|
|
|
|
|
|
| |
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)
|
| |
|
|
| |
(cherry picked from commit 32e3f257ace9b24df47510e036f80438bfe9a177)
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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)
|
| |
|
|
| |
(cherry picked from commit f4f92b55e102487527fc7f1c7d8ebc1df73c01a7)
|
| |
|
|
| |
(cherry picked from commit 234b86e6b2d6ca22e0be6b5225b3763c057546cc)
|
| |
|
|
| |
(cherry picked from commit db2a1544c01e7f52a0a95b58509419c6de949e5d)
|
| |
|
|
|
|
| |
includes new enum, MeshInstance2D, Skeleton2D, Cut, Copy and Paste icons.
(cherry picked from commit cecf2743648c0d48e20b243cb0353c6a0d660c0a)
|
| |
|
|
| |
(cherry picked from commit 8f04a13c98cf5107c6bad76b1dfa9c95f9a71115)
|
| |
|
|
| |
(cherry picked from commit cc902cf9ab34ef06084fb23831c2fecbafb90784)
|
| |
|
|
|
|
| |
get_doubleCloses #16160
(cherry picked from commit d2f1c87063162b284d2e13139eb4ec6bcd9662d4)
|
| |
|
|
| |
(cherry picked from commit 77b1320fb43d92e9090c675714d49fb07201a4c7)
|
| |
|
|
| |
(cherry picked from commit d327f75392b97bee4ad3debd4560cc7c06fc68ab)
|
| |
|
|
|
|
| |
As this will change bindings API this will have to wait for 3.1
This reverts commit 187c40d64dd733ea77b27d96416ab7ad106069b9.
|
| |
|
|
| |
(cherry picked from commit c34f18accecfb6f1e257668b7a4746a11a44ad9f)
|
| |
|
|
| |
(cherry picked from commit 5fb8a6a6c223561e1e7a11699eae8aca68f8abd6)
|
| |
|
|
| |
Local builds save lives :)
|
| | |
|
| |
|
|
| |
(cherry picked from commit 24cf4fe062b06205d5fcf3e8824eb14f0fbb0246)
|
| |
|
|
|
|
| |
while in "Open folder" mode.
(cherry picked from commit db80d56388d15c5c70154a68169c4a6d56437c52)
|
| |
|
|
|
|
| |
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)
|
| |
|
|
| |
(cherry picked from commit 24c170555d57ccbbb270f02d0b5d3e98f99b8729)
|
| |
|
|
| |
(cherry picked from commit 6a48f952ca6969dcbf8e79f11a3859ca426bfba0)
|
| |
|
|
|
|
| |
visual studio.
(cherry picked from commit 72fe70272d540afca691143d3a4f029176e37087)
|
| |
|
|
| |
(cherry picked from commit ea57a19b34df4d60e740987f858ae225bbd4cc53)
|