Age | Commit message (Collapse) | Author |
|
Improved error checking at EditorExportPlatformPC::export_project
|
|
AnimationPlayer: fix popups close on double click
|
|
Fix overwriting all common properties when using `Change Type` tool
|
|
AnimationPlayer: fix scrubbing after play backwards
|
|
Properly closing all files in Python build code
|
|
Fixes overlapping text labels in animation editor timeline
|
|
Fix wrong pan direction in animation player ui
|
|
Fix broken hover/select coloring of keys in animation editor
|
|
Update preview on filesystem change
|
|
Show error icon at "Output" in case of errors
|
|
Fix column width on AutoLoad table on hidpi displays
|
|
Build polygon clipper only in tools builds
|
|
ScriptTextEditor: fix capitalize offset
|
|
EditorNode: fix clicking ok keeps trying to save
|
|
Now the action name is quoted if it contains spaces. Also, quotation
mark (") is added to the forbidden character list for action names, as
it was also a bug.
Fix #17322
|
|
|
|
|
|
|
|
|
|
|
|
Check and recreate a file's preview, if it has changes to it in the filesystem.
|
|
|
|
|
|
|
|
|
|
|
|
If you change the type of an existing node, it checks if you have
modified the initial value of their properties before overwriting
their values in the new node.
For example, if you created a `Label` and changed it to
`LineEdit`, the `mouse_filter` property was created as `Ignore`
for the original `Label` node, and was maintained after changing
it to `LineEdit` causing not to work as expected. Now it checks if
`Ignore` is the default value for `Label` nodes, and as it is, the
property value is left unchanged, maintaining the default value
for `LineEdit`, which is `Stop`.
Fix #13955 and alike.
|
|
FIX to #17346. Compiled and tested.
|
|
Fix being able to create folder name with ending '.' on Windows
|
|
Merge the trailing dot test into existing test. Removed OS test.
|
|
|
|
|
|
In CanvasItemEditor, prioritize selected items when dragging
|
|
|
|
|
|
Added a one-liner to update the Create button disabled state when
selecting an item from the search results list.
Fixes #17265, long live the Realm!
|
|
|
|
(cherry picked from commit 65d214d3dafef696d99f6c23c7b941bbde1c1802)
|
|
|
|
|
|
|
|
support for in the future
|
|
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.
|
|
do not show line number and/or file if not defined
|
|
Refactor version macros and fix related bugs
|
|
Mono project export
|
|
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.
|
|
eventually make it possible to in the future.
|
|
Currently staying in sync with the 3.0 branch to give translators a chance
to increase the completion rate of their 3.0 translations for the stable
branch (translation template is synced with the master branch).
(cherry picked from commit 07e24619959af256c9e51304c396bccfa99e1b4c)
|
|
|