summaryrefslogtreecommitdiffstats
path: root/editor/editor_builders.py
Commit message (Collapse)AuthorAgeFilesLines
* Update pre-commit hooks configuration to use `ruff` instead of `black`Jakub Marcowski2024-05-211-0/+1
|
* SCons: Colorize warnings/errors during generationThaddeus Crews2024-04-281-6/+6
|
* Fix POT generation missing some strings when built-in ones are enabledMichael Alexsander2024-03-121-3/+7
|
* SCons: Remove `run_in_subprocess` dependencyThaddeus Crews2024-03-111-13/+5
|
* SCons: Ensure `with` statement where applicableThaddeus Crews2024-03-101-94/+91
|
* Enforce `\n` eol for Python writesThaddeus Crews2024-03-091-2/+2
| | | | • Ensure utf-8 encoding if previously unspecified
* Add option to add built-in strings in the POT generationMichael Alexsander2024-02-281-0/+4
|
* Reorganize code related to editor themingYuri Sizov2024-01-161-28/+1
| | | | | | | | | | | | | This change introduces a new EditorThemeManager class to abstract theme generatio and its subroutines. Logic related to EditorTheme, EditorColorMap, and editor icons has been extracted into their respective files with includes cleaned up. All related files have been moved to a separate folder to better scope them in the project. This includes relevant generated files as well.
* CI: Update static checks to black 23.3.0Rémi Verschelde2023-06-191-3/+0
| | | | And apply it to the codebase, removing empty lines at the start of blocks.
* Invalidate the DocCache when updating the xml docsRedworkDE2023-05-281-0/+1
|
* Prepare for moving editor and classref translations to godot-editor-l10n repoHaoyu Qiu2023-02-071-0/+4
| | | | | | | | | - Separate editor interface and property translations. - Add property translation in TranslationServer. - The split and merge of the POT/PO/Makefiles and extract scripts is done directly in godot-editor-l10n, the files will be removed in the next commit. - Remove the hardcoded "to_include" lists from the SCsub, we'll only commit the files which are ready to inclue.
* ci: add Python static analysis check via mypyJiri Suchan2022-09-301-4/+1
|
* [Editor build] Use smaller .mo files instead of .po, if gettext is available.bruvzg2022-03-241-2/+36
|
* Use maximum zlib compression when generating editor translation headersHugo Locurcio2021-10-291-2/+6
| | | | | With comments stripped, this reduces the combined generated translation size from 28.7 MB to 28.4 MB (-240 KB).
* Use a DynamicFont for the default project themeHugo Locurcio2021-05-171-1/+1
| | | | | | | | | | | | | | | | | This makes font oversampling work out of the box, while also increasing the supported character set's size. The default font is now larger as well to better fit today's screen resolutions. The OpenSans SemiBold font was chosen for two reasons: - Small file size, yet its character set supports Latin-1 and Cyrillic text. - A heavier font weight looks better in most "game" scenarios and is more readable against mixed-color backgrounds. This is considered a breaking change as it changes the default font's metrics, which will likely affect how Control nodes are laid out in scenes (unless a custom font is in use).
* Remove unused Python local variables.Marcel Admiraal2020-09-111-1/+0
|
* Replace more occurrences of NULL with nullptrRémi Verschelde2020-04-021-1/+1
|
* SCons: Format buildsystem files with psf/blackRémi Verschelde2020-03-301-3/+6
| | | | | | | | | | | | | | | | | | | | | Configured for a max line length of 120 characters. psf/black is very opinionated and purposely doesn't leave much room for configuration. The output is mostly OK so that should be fine for us, but some things worth noting: - Manually wrapped strings will be reflowed, so by using a line length of 120 for the sake of preserving readability for our long command calls, it also means that some manually wrapped strings are back on the same line and should be manually merged again. - Code generators using string concatenation extensively look awful, since black puts each operand on a single line. We need to refactor these generators to use more pythonic string formatting, for which many options are available (`%`, `format` or f-strings). - CI checks and a pre-commit hook will be added to ensure that future buildsystem changes are well-formatted.
* SCons: Drop support for Python 2Rémi Verschelde2020-03-251-9/+8
| | | | | | We now require SCons 3.0+ (first version with Python 3 support), and we set min required Python 3 version to 3.5 (3.4 and earlier are EOL).
* i18n: Add support for translating the class referenceRémi Verschelde2020-03-201-7/+16
| | | | | | | | | | | | | | - Parse `.po` files from `doc/translations/*.po` like already done with `editor/translations/*.po`. - Add logic to register a doc translation mapping in `TranslationServer` and `EditorSettings`. - Add `DTR()` to lookup the doc translation mapping (similar to `TTR()`). Strings are automatically dedented and stripped of whitespace to ensure that they would match the translation catalog. - Use `DTR()` to translate relevant strings in `EditorHelp`, `EditorInspector`, `CreateDialog`, `ConnectionsDialog`. - Small simplification to `TranslationLoaderPO`, the path argument was not really meaningful.
* Some small fixes to warnings in python scriptsunknown2019-07-111-4/+4
|
* Remove unused importsHendrikto2019-04-061-1/+1
|
* Bundle SSL certs with the templates.Fabio Alessandrelli2018-09-151-26/+0
| | | | | | If this is undesired it can be avoided by specifying builtin_certs=no . Bundled SSL certs will be used unless you specify an override in: Project Settings -> SSL -> Certificates .
* Removed some unneeded generated headers from the editor directory SCsub.Ibrahn Sahir2018-09-011-262/+0
| | | | | These headers are currently built in (and included from) the core directory. Removing the editor directory versions to avoid confusion.
* Running builder (content generator) functions in subprocesses on WindowsViktor Ferenczi2018-07-271-0/+412
- Refactored all builder (make_*) functions into separate Python modules along to the build tree - Introduced utility function to wrap all invocations on Windows, but does not change it elsewhere - Introduced stub to use the builders module as a stand alone script and invoke a selected function There is a problem with file handles related to writing generated content (*.gen.h and *.gen.cpp) on Windows, which randomly causes a SHARING VIOLATION error to the compiler resulting in flaky builds. Running all such content generators in a new subprocess instead of directly inside the build script works around the issue. Yes, I tried the multiprocessing module. It did not work due to conflict with SCons on cPickle. Suggested workaround did not fully work either. Using the run_in_subprocess wrapper on osx and x11 platforms as well for consistency. In case of running a cross-compilation on Windows they would still be used, but likely it will not happen in practice. What counts is that the build itself is running on which platform, not the target platform. Some generated files are written directly in an SConstruct or SCsub file, before the parallel build starts. They don't need to be written in a subprocess, apparently, so I left them as is.