Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-03-06 | Explicitly set OpenGL profile to core (X11, Windows). | bruvzg | |
Enable GLES2 on Windows. | |||
2018-03-04 | Clean and expose get_audio/video_driver_* funcs on OS class | Marcelo Fernandez | |
2018-03-04 | SCons: Fix linking system pcre2 on server platform | Rémi Verschelde | |
Fixes #17245. | |||
2018-03-03 | Modify OSX can_export logic to match the logic from ↵ | Marcelo Fernandez | |
EditorExportPlatformPC::can_export | |||
2018-03-03 | Hack to force macOS window activation for non-bundled app. | bruvzg | |
2018-03-02 | Merge pull request #17158 from bruvzg/gles2_driver_select | Rémi Verschelde | |
[GLES2] Renderer selection improvement | |||
2018-03-02 | GLES2 renderer support on macOS. | bruvzg | |
2018-03-02 | Fix `--help` output, allow renderer override from command line ↵ | bruvzg | |
(`--video-driver`). | |||
2018-03-01 | Merge pull request #17133 from bruvzg/macos_fix_webm_optim | Rémi Verschelde | |
[Build] Fix WebM (libvpx) SIMD optimizations on macOS. | |||
2018-03-01 | add GLES 2 renderer for 2D | karroffel | |
This commit adds a new rendering backend, GLES2, and adds a project setting to enable it. Currently this backend can only be used on the X11 platform, but integrating into other platforms is planned. | |||
2018-03-01 | Merge pull request #17058 from marcelofg55/minmax_windows | Rémi Verschelde | |
Fixed Windows ignoring minimized/maximized status set by user | |||
2018-03-01 | Merge pull request #17137 from endragor/fix-audio-init-crash | Rémi Verschelde | |
Fix intermittent audio driver crash during startup on Android | |||
2018-03-01 | Fix intermittent audio driver crash during startup on Android | Ruslan Mustakov | |
set_pause can be called before the driver is initialized, and there already is a check for that. The problem is that the 'active' field was not initialied in the constructor, which lead to it having an undefined value. | |||
2018-03-01 | Fix WebM SIMD optimizations on macOS. | bruvzg | |
2018-03-01 | Fix server build on FreeBSD | Fabio Alessandrelli | |
2018-02-28 | Fix various valgrind reported uninitialized variable uses | Hein-Pieter van Braam | |
2018-02-27 | Android: Mark GLES3 as required in the manifest | Rémi Verschelde | |
Fixes #17076. | |||
2018-02-26 | Fixed Windows ignoring minimized/maximized status set by user | Marcelo Fernandez | |
2018-02-25 | Add missing return statements (iOS and server). | bruvzg | |
2018-02-24 | Merge pull request #16901 from jandrewlong/ios-restore-purchases | Rémi Verschelde | |
add restore purchases for ios | |||
2018-02-23 | Refactor version macros and fix related bugs | Rémi Verschelde | |
The previous logic with VERSION_MKSTRING was a bit unwieldy, so there were several places hardcoding their own variant of the version string, potentially with bugs (e.g. forgetting the patch number when defined). The new logic defines: - VERSION_BRANCH, the main 'major.minor' version (e.g. 3.1) - VERSION_NUMBER, which can be 'major.minor' or 'major.minor.patch', depending on whether the latter is defined (e.g. 3.1.4) - VERSION_FULL_CONFIG, which contains the version status (e.g. stable) and the module-specific suffix (e.g. mono) - VERSION_FULL_BUILD, same as above but with build/reference name (e.g. official, custom_build, mageia, etc.) Note: Slight change here, as the previous format had the build name *before* the module-specific suffix; now it's after - VERSION_FULL_NAME, same as before, so VERSION_FULL_BUILD prefixed with "Godot v" for readability Bugs fixed thanks to that: - Export templates version matching now properly takes VERSION_PATCH into account by relying on VERSION_FULL_CONFIG. - ClassDB hash no longer takes the build name into account, but limits itself to VERSION_FULL_CONFIG (build name is cosmetic, not relevant for the API hash). - Docs XML no longer hardcode the VERSION_STATUS, this was annoying. - Small cleanup in Windows .rc file thanks to new macros. | |||
2018-02-22 | add restore purchases for iOS | J Andrew Long | |
2018-02-22 | server: Add support for statically linking libgcc and libstdc++ | Rémi Verschelde | |
2018-02-21 | Fix typos with codespell | luz.paz | |
Found via `codespell -q 3 --skip="./thirdparty,./editor/translations" -I ../godot-word-whitelist.txt` Whitelist consists of: ``` ang doubleclick lod nd que te unselect ``` | |||
2018-02-20 | Link bcrypt lib in window and UWP | Fabio Alessandrelli | |
2018-02-19 | Fix previous commit, "bits" still needed for buildsystem | Rémi Verschelde | |
2018-02-19 | OSX: Remove unnecessary bits assignment | Rémi Verschelde | |
2018-02-19 | Merge pull request #16675 from ↵ | Rémi Verschelde | |
Iskustvo/improved_error_detectioin_in_move-to-trash_for_Linux [X11] Improving error detection in move_to_trash | |||
2018-02-19 | Merge pull request #16696 from BTaskaya/master | Rémi Verschelde | |
PEP3101 applied with changing old type string formatting as new ones | |||
2018-02-19 | Merge pull request #16763 from RandomShaper/improve-fullscreen | Hein-Pieter van Braam | |
Remove window decorations for fullscreen on X11 | |||
2018-02-19 | OSX: Remove support for 32-bit and fat binaries | Rémi Verschelde | |
Mac OS X is 64-bit only since 10.7 (Lion), which has reached End-Of-Life in October 2014. Therefore it no longer makes sense to support exporting 32-bit binaries for Mac OS X, and we can now default to 64-bit instead of bigger "fat" binaries. | |||
2018-02-18 | [X11] Improving error detection in move_to_trash | Iskustvo | |
2018-02-18 | Remove some debugging prints on Android | Hugo Locurcio | |
2018-02-17 | Merge pull request #16781 from eska014/html5-httpc | Rémi Verschelde | |
HTML5 HTTPClient fixes | |||
2018-02-17 | Flush HTTPClient response data only on request/close in HTML5 platform | Leon Krause | |
2018-02-17 | Warn when polling HTTPClient synchronously in HTML5 platform | Leon Krause | |
2018-02-17 | Disable insecure HTTP methods CONNECT and TRACE in HTML5 platform | Leon Krause | |
2018-02-16 | Remove window decorations for fullscreen on X11 | Pedro J. Estébanez | |
2018-02-16 | X11: Link libgcc statically with use_static_cpp option | Rémi Verschelde | |
We were already linking libstdc++ statically for official binaries, protecting us against most portability issues. But apparently since we started using GCC 7 for official builds, we also need to link libgcc statically for at least 32-bit builds to be portable. Fixes #16409. | |||
2018-02-16 | Fix HTML5 HTTPClient response header retrieval | Leon Krause | |
2018-02-16 | Fix HTML5 HTTPClient failure detection | Leon Krause | |
2018-02-15 | Add dummy audio driver, fix dummy rasterizer | K. S. Ernest (iFire) Lee | |
2018-02-15 | Fixes to OS_Server and DummyRasterizer to match new signatures | Fabio Alessandrelli | |
2018-02-15 | server platform now compiles and run on linux. | Fabio Alessandrelli | |
Seems to also be able to do exports of some demos I tried. | |||
2018-02-15 | Windows: Fix case of imm32 for case-sensitive MinGW build | Rémi Verschelde | |
Fixes #16713. | |||
2018-02-14 | PEP3101 applied with changing old type string formatting as new ones | BTaskaya | |
2018-02-14 | Merge pull request #15564 from RandomShaper/adpod-topmost | Rémi Verschelde | |
Add new window setting: always on top | |||
2018-02-14 | Merge pull request #15864 from GodotExplorer/pr-get_unique_id-desktop-impl | Rémi Verschelde | |
Implement more methods for OS on Desktop platforms | |||
2018-02-14 | Merge pull request #14804 from ColinKinloch/master | Rémi Verschelde | |
Fixed android arm64v8 | |||
2018-02-14 | Add signals and a check function for Android service connectivity. | Xavier Sellier | |
- Add a iap_connect and iap_disconnect events for android platform. - Add isConnected() function returning true if its connected to android service, false otherwise (cherry picked from commit 546b48813f2b75481d846957275f6d4eecd8de3c) |