summaryrefslogtreecommitdiffstats
path: root/platform/linuxbsd/export
Commit message (Collapse)AuthorAgeFilesLines
* Split up editor export code into multiple filesAaron Franke2022-07-262-1/+2
|
* Merge pull request #63096 from aaronfranke/exp-template-namesRémi Verschelde2022-07-261-1/+1
|\
| * Update export template names for Windows, Mac, and LinuxAaron Franke2022-07-221-1/+1
| |
* | Code quality: Fix header guards consistencyRémi Verschelde2022-07-251-1/+1
|/ | | | | Adds `header_guards.sh` bash script, used in CI to validate future changes. Can be run locally to fix invalid header guards.
* Add static methods for creating Image and ImageTexturekobewi2022-07-081-6/+1
|
* Add readable export errors.bruvzg2022-06-082-5/+17
|
* [Editor] LinuxBSD export reports Linux as OS name.Fabio Alessandrelli2022-05-241-1/+1
| | | | | | | | | This is in line with what's reported by the `OS` class on GNU/Linux, and is required by the extension exporter to identify the correct library. For BSD, we should either finish splitting the platform (into platform/bsd) or register a separate exporter with OS name BSD and proper templates detection.
* Replace most uses of Map by HashMapreduz2022-05-161-1/+1
| | | | | | | | | | | | * Map is unnecessary and inefficient in almost every case. * Replaced by the new HashMap. * Renamed Map to RBMap and Set to RBSet for cases that still make sense (order matters) but use is discouraged. There were very few cases where replacing by HashMap was undesired because keeping the key order was intended. I tried to keep those (as RBMap) as much as possible, but might have missed some. Review appreciated!
* Make FileAccess and DirAccess classes reference counted.bruvzg2022-04-111-8/+4
|
* Generate export template file names instead of having a fixed setAaron Franke2022-03-223-4/+5
|
* Change extension for Linux 32-bit x86 exports to x86_32Aaron Franke2022-03-211-1/+1
|
* Move extension logic to EditorExportPlatformLinuxBSDAaron Franke2022-03-212-0/+24
|
* Move fixup_embedded_pck to EditorExportPlatform classesAaron Franke2022-03-203-108/+106
|
* [Export] Add "export console script" option for Linux, macOS, and Windows ↵bruvzg2022-03-143-5/+123
| | | | exports.
* Update copyright statements to 2022Rémi Verschelde2022-01-032-4/+4
| | | | Happy new year to the wonderful Godot community!
* Make platform feature tag names lowercaseHugo Locurcio2021-08-311-1/+1
| | | | | | | | | | | | | | Feature tag names are still case-sensitive, but this makes built-in feature tags more consistent. - `Windows` -> `windows` - `OSX` -> `osx` - `LinuxBSD` -> `linuxbsd` - `Android` -> `android` - `iOS` -> `ios` - `HTML5` -> `html5` - `JavaScript` -> `javascript` - `UWP` -> `uwp`
* Rename `instance()`->`instantiate()` when it's a verbLightning_A2021-06-191-2/+2
|
* Core: Move DirAccess and FileAccess to `core/io`Rémi Verschelde2021-06-111-1/+1
| | | | | File handling APIs are typically considered part of I/O, and we did have most `FileAccess` implementations in `core/io` already.
* Update copyright statements to 2021Rémi Verschelde2021-01-012-4/+4
| | | | | | | | | | | | | | Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆
* Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-141-3/+0
| | | | | | | | | | | | | | Which means that reduz' beloved style which we all became used to will now be changed automatically to remove the first empty line. This makes us lean closer to 1TBS (the one true brace style) instead of hybridating it with some Allman-inspired spacing. There's still the case of braces around single-statement blocks that needs to be addressed (but clang-format can't help with that, but clang-tidy may if we agree about it). Part of #33027.
* Effective DisplayServer separation, rename X11 -> LinuxBSDJuan Linietsky2020-03-262-0/+205