Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename OSX to macOS and iPhoneOS to iOS. | bruvzg | 2022-07-21 | 1 | -1673/+0 |
| | |||||
* | Add static methods for creating Image and ImageTexture | kobewi | 2022-07-08 | 1 | -4/+2 |
| | |||||
* | [macOS export] Unref FileAccess to ensure chmod is successful. | bruvzg | 2022-07-02 | 1 | -0/+1 |
| | |||||
* | Add readable export errors. | bruvzg | 2022-06-08 | 1 | -32/+81 |
| | |||||
* | Replace most uses of Map by HashMap | reduz | 2022-05-16 | 1 | -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! | ||||
* | Fix ZipIO crash when reused (and possible leaks). | bruvzg | 2022-05-11 | 1 | -2/+4 |
| | |||||
* | Narrow FileAccess scope to prevent deadlocks. | bruvzg | 2022-04-12 | 1 | -14/+16 |
| | |||||
* | Make FileAccess and DirAccess classes reference counted. | bruvzg | 2022-04-11 | 1 | -38/+25 |
| | |||||
* | Fix some issues found by cppcheck. | bruvzg | 2022-04-06 | 1 | -0/+3 |
| | |||||
* | Merge pull request #58455 from bruvzg/export_script | Rémi Verschelde | 2022-03-18 | 1 | -9/+40 |
|\ | |||||
| * | [Export] Add "export console script" option for Linux, macOS, and Windows ↵ | bruvzg | 2022-03-14 | 1 | -9/+40 |
| | | | | | | | | exports. | ||||
* | | Implement GDExtension export plugin. | bruvzg | 2022-03-16 | 1 | -13/+22 |
|/ | |||||
* | Improve app name and system permission message localization. | bruvzg | 2022-03-04 | 1 | -12/+106 |
| | | | | | | | Add localizable string (Dictionary<Lang Code, String>) property editor and property hint. Add localized "app name" property to the project settings. Add localized permission and copyright properties to the macOS and iOS export settings. Remove some duplicated ("app name") and deprecated ("info") macOS and iOS export properties. | ||||
* | [macOS and iOS export] Add localized application name to the translation ↵ | bruvzg | 2022-03-04 | 1 | -0/+5 |
| | | | | .plist files. | ||||
* | i18n: Sync editor translations with Weblate | Rémi Verschelde | 2022-02-16 | 1 | -9/+9 |
| | | | | | | Minor proofreading of new OSX export strings. (cherry picked from commit 9f09251027a485f14740dce7b753e962d26bff78) | ||||
* | Editor: Cleanup some includes dependencies | Rémi Verschelde | 2022-02-15 | 1 | -2/+5 |
| | | | | | | | | | | | Removes some unnecessary includes from `editor_node.h`, and instead add those where they're used. Removes unnecessary `editor_node.h` includes in various editor classes. Renames `dynamicfont` to `dynamic_font` in a couple files. Misc cleanup while jumping through that rabbit hole. | ||||
* | Improve compilation speed (forward declarations/includes cleanup) | Hendrik Brucker | 2022-02-12 | 1 | -0/+1 |
| | |||||
* | [macOS] Add empty translation files to the exported app bundle, to allow ↵ | bruvzg | 2022-02-03 | 1 | -0/+18 |
| | | | | translation detection by the OS. | ||||
* | [Export] Instead of removing unsupported options, hide it. | bruvzg | 2022-01-22 | 1 | -16/+33 |
| | |||||
* | [macOS export] Implements ad-hoc signing on Linux/Windows, adds extra ↵ | bruvzg | 2022-01-18 | 1 | -98/+279 |
| | | | | privacy settings, entitlements warnings and error checking. | ||||
* | [macOS export] Improve code signing/notarization options validation. | bruvzg | 2022-01-10 | 1 | -12/+52 |
| | |||||
* | Merge pull request #56517 from bruvzg/fix_export_utf8 | Rémi Verschelde | 2022-01-05 | 1 | -1/+1 |
|\ | |||||
| * | Fix decoding UTF-8 filenames on unzipping. | bruvzg | 2022-01-05 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #56047 from piiertho/feature/osx-sign-directory | Rémi Verschelde | 2022-01-05 | 1 | -15/+106 |
|\ \ | |/ |/| | |||||
| * | OSX: Add signing of directory structure in Library when exporting for OSX. | Pierre-Thomas Meisels | 2021-12-28 | 1 | -15/+106 |
| | | | | | | | | OSX: Add exporting of folder structure in PlugIns when exporting for OSX. | ||||
* | | Update copyright statements to 2022 | Rémi Verschelde | 2022-01-03 | 1 | -2/+2 |
|/ | | | | Happy new year to the wonderful Godot community! | ||||
* | Replace String comparisons with "", String() to is_empty() | Nathan Franke | 2021-12-09 | 1 | -4/+4 |
| | | | | | | Also: - Adds two stress tests to test_string.h - Changes to .empty() on std::strings | ||||
* | Don't return reference on copy assignment operators | Rémi Verschelde | 2021-11-30 | 1 | -2/+4 |
| | | | | | | | | | | | | | We prefer to prevent using chained assignment (`T a = b = c = T();`) as this can lead to confusing code and subtle bugs. According to https://en.wikipedia.org/wiki/Assignment_operator_(C%2B%2B), C++ allows any arbitrary return type, so this is standard compliant. This could be re-assessed if/when we have an actual need for a behavior more akin to that of the C++ STL, for now this PR simply changes a handful of cases which were inconsistent with the rest of the codebase (`void` return type was already the most common case prior to this commit). | ||||
* | [Export] Read and ZIP project files in 16K chunks instead of reading the ↵ | bruvzg | 2021-11-06 | 1 | -2/+15 |
| | | | | whole file at once. | ||||
* | clang-format: Various fixes to comments alignment from `clang-format` 13 | Rémi Verschelde | 2021-10-28 | 1 | -5/+5 |
| | | | | All reviewed manually and occasionally rewritten to avoid bad auto formatting. | ||||
* | Fix specific warnings issues by Clang | K. S. Ernest (iFire) Lee | 2021-10-14 | 1 | -2/+0 |
| | | | | Found by `scons dev=yes` on llvm-mingw. | ||||
* | [macOS, sandbox] Add export option to embed and sign helper executables. | bruvzg | 2021-09-27 | 1 | -5/+48 |
| | |||||
* | Replace HTTP links with HTTPS for sites with HTTPS versions | Aaron Franke | 2021-08-22 | 1 | -2/+2 |
| | |||||
* | Use the Unicode multiplication symbol where relevant | Hugo Locurcio | 2021-08-12 | 1 | -8/+8 |
| | |||||
* | Split osx platform export template into multiple files | Sergey Minakov | 2021-08-12 | 1 | -0/+1085 |