summaryrefslogtreecommitdiffstats
path: root/editor/export/editor_export_preset.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@6c05ec3d6732cac44cf85c91db7d3fd1075bcb23Spartan3222024-11-151-0/+4
|\
| * Allow setting custom initialization vector for FileAccessEncrypted. Add ↵bruvzg2024-11-131-0/+4
| | | | | | | | export setting to set static seed for PCK encryption initialization vectors.
* | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| |
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
|/ | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Add ability to export patch packsMikael Hermansson2024-09-251-0/+9
| | | | Co-authored-by: Poq Xert <poqxert@poqxert.ru>
* Allow adding custom export platforms using scripts / GDExtension.bruvzg2024-08-281-0/+7
|
* Add an `Advanced Options` toggle to the editor export presetFredia Huya-Kouadio2024-02-181-0/+4
|
* Allow export plugins to override export option valuesDavid Snopek2024-02-141-0/+2
|
* GDScript: Enable compression on exportGeorge Marques2024-02-081-1/+2
| | | | | | | | Besides the regular option to export GDScript as binary tokens, this also includes a compression option on top of it. The binary format needs to encode some information which generally makes it bigger than the source text. This option reduces that difference by using Zstandard compression on the buffer.
* GDScript: Reintroduce binary tokenization on exportGeorge Marques2024-02-081-0/+9
| | | | | | | | | | | | | | | | This adds back a function available in 3.x: exporting the GDScript files in a binary form by converting the tokens recognized by the tokenizer into a data format. It is enabled by default on export but can be manually disabled. The format helps with loading times since, the tokens are easily reconstructed, and with hiding the source code, since recovering it would require a specialized tool. Code comments are not stored in this format. The `--test` command can also include a `--use-binary-tokens` flag which will run the GDScript tests with the binary format instead of the regular source code by converting them in-memory before the test runs.
* Add a "version" project setting and use it in new export presetsHugo Locurcio2023-08-041-0/+7
| | | | | | | | | | This makes it easy to retrieve the project version at runtime for display purposes, while simplifying the export preset configuration. You can now leave the version empty unless you need to override it on a per-preset basis. Since export presets save the values of default values to the `export_presets.cfg` file, this change only affects export presets created after this commit was merged.
* Fix export options of scripted EditorExportPluginsRedworkDE2023-07-041-2/+3
|
* Store sensitive export options in dedicated credentials fileAndreas Raddau2023-05-101-0/+2
|
* [Export] Add readable descriptions and validation warnings to the export ↵bruvzg2023-04-191-0/+4
| | | | options.
* Merge pull request #70377 from dsnopek/server-export-mk2Rémi Verschelde2023-01-231-1/+20
|\ | | | | | | Add "dedicated server" export mode which can strip unneeded visual resources
| * Add "dedicated server" export mode which can strip unneeded visual resourcesDavid Snopek2023-01-231-1/+20
| |
* | Remove references to compiled GDScript in exportGeorge Marques2023-01-201-9/+0
|/ | | | | This feature was removed from GDScript so it should not be present on the interface nor in the saved export presets.
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* [macOS export] Simplify code signing options, add support for rcodesign tool ↵bruvzg2022-08-261-0/+1
| | | | for signing and notarization.
* Split up editor export code into multiple filesAaron Franke2022-07-261-0/+145