summaryrefslogtreecommitdiffstats
path: root/editor/export/editor_export_platform.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@d09d82d433b03bb3773fd2a8cc8d6ccc2f8739ceSpartan3222024-11-261-0/+2
|\
| * Fix issue #97207 by filtering extension_list.cfgmendrak2024-11-211-0/+2
| | | | | | | | | | | | | | | | The implemented solution to the problem of the error message appearing when an excluded GDExtension in an export of a project, is to filter the lines in the extension_list.cfg file to only include those that are in the paths actually included for export. If there are no entries remaining, don't write the file at all.
* | Merge commit godotengine/godot@6c05ec3d6732cac44cf85c91db7d3fd1075bcb23Spartan3222024-11-151-6/+6
|\|
| * Allow setting custom initialization vector for FileAccessEncrypted. Add ↵bruvzg2024-11-131-6/+6
| | | | | | | | export setting to set static seed for PCK encryption initialization vectors.
* | Merge commit godotengine/godot@cb411fa960f0b7fdbd97dcdb4c90f9346360ee0eSpartan3222024-11-121-2/+6
|\|
| * Add ability for PCK patches to remove filesJuan2024-11-111-2/+6
| | | | | | | | Co-authored-by: Mikael Hermansson <mikael@hermansson.io>
* | 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-2/+18
| | | | Co-authored-by: Poq Xert <poqxert@poqxert.ru>
* Style: Apply new `clang-format` changesThaddeus Crews2024-09-201-1/+1
|
* Allow adding custom export platforms using scripts / GDExtension.bruvzg2024-08-281-22/+83
|
* Fix loading GDExtension dependencies on AndroidFredia Huya-Kouadio2024-04-191-1/+1
|
* Revert pack trimming introduced by #82084Mikael Hermansson2024-04-101-3/+2
|
* Merge uid_cache.bin and global_script_class_cache.cfg after mounting PCKsDavid Nikdel2024-03-061-2/+3
| | | | | | | | | | | | fixes godotengine#82061 fixes godotengine#61556 Also, distinguish between main pack and DLC packs. It's desirable to downloaded content to be as small as possible. This change avoids bloating non-main pack files with new versions of resources that are all read on startup and never used again. They have no effect if loaded after startup. - project.godot/project.binary file - extension_list.cfg - app icon and boot_splash - .ico and .icns files (these can still be opted in for DLC by listing them explicitly in the include filter)
* Add const lvalue ref to editor/* container parametersMuller-Castro2024-02-261-2/+2
|
* Display a warning if device CPU architecture is not active in the export preset.Alexander Hartmann2024-02-231-0/+1
|
* Expose EditorExportPlatform::get_os_name()Aaron Franke2023-09-071-0/+3
|
* Add a button in the export dialog to fix missing texture formatsAaron Franke2023-08-171-2/+0
|
* Extract and reorganize texture resource classesHendrik Brucker2023-07-141-0/+1
|
* Allow exporting release Android builds without a debug keystoreMichael Alexsander2023-06-191-2/+2
|
* Store sensitive export options in dedicated credentials fileAndreas Raddau2023-05-101-0/+3
|
* Redo how the remote filesystem worksJuan Linietsky2023-05-081-0/+2
| | | | | | | | | Instead of reading files over the network, the new version uses a local file cache and only updates files when it changes. The original remote filesystem was created 14 years ago, when ethernet was faster than hard drives or even flash. Also, mobile devices have a very small amount of storage. Nowadays, this is no longer the case so the approach is changed to using a persistent cache in the target device. Co-authored-by: m4gr3d
* [Export] Add readable descriptions and validation warnings to the export ↵bruvzg2023-04-191-4/+7
| | | | options.
* Refactor high quality texture importJuan Linietsky2023-01-301-0/+1
| | | | | | | | | | | | | | | * Only two texture import modes for low/high quality now: * S3TC/BPTC * ETC2/ASTC * Makes sense given this is the general preferred and most compatible combination in most platforms. * Removed lossy_quality from VRAM texture compression options. It was unused everywhere. * Added a new "high_quality" option to texture import. When enabled, it uses BPTC/ASTC (BC7/ASTC4x4) instead of S3TC/ETC2 (DXT1-5/ETC2,ETCA). * Changed MacOS export settings so required texture formats depend on the architecture selected. This solves the following problems: * Makes it simpler to import textures as high quality, without having to worry about the specific format used. * As the editor can now run on platforms such as web, Mac OS with Apple Silicion and Android, it should no longer be assumed that S3TC/BPTC is available by default for it.
* Merge pull request #70377 from dsnopek/server-export-mk2Rémi Verschelde2023-01-231-0/+2
|\ | | | | | | 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-0/+2
| |
* | Merge pull request #63312 from bruvzg/one_clickRémi Verschelde2023-01-131-1/+9
|\ \ | |/ |/| | | [Export] Add one-click deploy over SSH for the desktop exports.
| * [Export] Add one-click deploy over SSH for the desktop exports.bruvzg2022-12-291-1/+9
| | | | | | | | | | | | Add one-click deploy over SSH for the desktop exports. Add ZIP export option for Linux and Windows. Change export plugin icons to SVG format.
* | 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".
* [.NET Export] Improve .NET export process.bruvzg2022-10-071-0/+1
| | | | | | | | | | [macOS export] Fix incorrect file placement, search paths and architecture detection. [macOS export] Automatically detect executable files and set +x flag. [macOS export] Automatically apply "Disable Library Validation" entitlements when required. [macOS export] Remove old Mono export code. Fix folder tree creation for shared objects export. Add arch suffix to the exported .NET "data" folder name. Remove old Mono code from .NET "data" folder lookup.
* Fix typo - "collison" -> "collision"danboo2022-09-291-1/+1
|
* Add support for scene/resource customization in export pluginsJuan Linietsky2022-09-011-0/+16
| | | | | | | | | | | | | | | EditorExportPlugin adds a set of callbacks to allow customizing scenes, resources or subresources in all files exported: * Can take scene files, resource files and subresources in all of them. * Uses a cache for the converted files if nothing changes, so this work only happens if a file is modified. * Uses hashing to differentiate export configuration caches. * Removed the previous conversion code to binary, as this one uses existing stuff. This API is useful in several scenarios: * Needed by the "server" export platform to get rid of textures, meshes, audio, etc. * Needed by text to binary converters. * Needed by eventual optimizations such as shader precompiling on export, mesh merging and optimization, etc. This is a draft, feedback is very welcome.
* [macOS export] Simplify code signing options, add support for rcodesign tool ↵bruvzg2022-08-261-6/+8
| | | | for signing and notarization.
* Refactor the export checking logic to improve separation of concernsFredia Huya-Kouadio2022-08-141-1/+3
|
* Remove duplicate data structure for export featuresAaron Franke2022-08-091-6/+1
|
* Make some editor export methods constAaron Franke2022-07-291-3/+3
|
* Split up editor export code into multiple filesAaron Franke2022-07-261-0/+221