Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-11-15 | Mono/C#: Initial exporter support for AOT compilation | Ignacio Etcheverry | |
2019-09-25 | Merge pull request #32051 from qarmin/some_error_explanation | Rémi Verschelde | |
Added some obvious errors explanations | |||
2019-09-25 | Added some obvious errors explanations | qarmin | |
2019-09-08 | Mono: Fix unable to create log file due to str_format bug | Ignacio Etcheverry | |
2019-08-09 | Replace 'ERR_EXPLAIN' with 'ERR_FAIL_*_MSG' in 'modules/mono' | Ignacio Etcheverry | |
And 'CRASH_*_MSG' as well. Also make error messages puntuation and quotation more consistent. | |||
2019-07-09 | Merge pull request #30428 from neikeq/gitcheckout-b | Rémi Verschelde | |
Misc Mono Fixes | |||
2019-07-08 | Fix --generate-mono-glue bug when directory doesn't exist | Ignacio Etcheverry | |
DirAccess::get_full_path(path) only works if the path exists. Implement our own abspath function. | |||
2019-07-07 | Fixes minor issues found by static analyzer | qarmin | |
2019-07-03 | Mono: Android build and shared libraries fixes | Ignacio Etcheverry | |
Fix location of Mono's shared libraries. Fix build failing if the directory 'platform/android/java/libs/{target}/{abi}' doesn't exist. | |||
2019-06-26 | Some code changed with Clang-Tidy | qarmin | |
2019-05-05 | Fix generation of Mono Glue for Visual Studio 2017+ | ShyRed | |
vsnprintf definition should only be changed when MSC version is older than 2013. The version check and fix is taken from StringUtils.h of assimp. | |||
2019-05-02 | Ignore a warning in _get_socket_error (-Wlogical-op). | marxin | |
drivers/unix/net_socket_posix.cpp: In member function 'NetSocketPosix::NetError NetSocketPosix::_get_socket_error()': drivers/unix/net_socket_posix.cpp:197:22: warning: logical 'or' of equal expressions [-Wlogical-op] 197 | if (errno == EAGAIN || errno == EWOULDBLOCK) | ^ and: modules/mono/utils/string_utils.cpp: In function 'int {anonymous}::sfind(const String&, int)': modules/mono/utils/string_utils.cpp:68:48: error: logical 'or' of collectively exhaustive tests is always true [-Werror=logical-op] found = src[read_pos] == 's' || (c >= '0' || c <= '4'); ~~~~~~~~~^~~~~~~~~~~ | |||
2019-04-30 | Fix missing argument for vsnprintf_s | Ignacio Etcheverry | |
2019-04-25 | C# bindings generator cleanup | Ignacio Etcheverry | |
- Normal log messages are no longer warnings. - BindingsGenerator is no longer a singleton. - Added a log function. | |||
2019-04-08 | Merge pull request #27711 from neikeq/ifdef-clang-tidy | Rémi Verschelde | |
Replace a few #if/#elif with #ifdef and "#elif defined" | |||
2019-04-06 | Mono: Buildsystem support for finding MSBuild from VS2019 | Ignacio Etcheverry | |
2019-04-05 | Replace a few #if/#elif with #ifdef and "#elif defined" | Ignacio Etcheverry | |
2019-03-20 | Add support for new MSBuild directory naming introduced in VS 2019. | Sebastian Hartte | |
2019-02-15 | Don't print 'Cannot find Mono in the registry' if bundled with Godot | Ignacio Etcheverry | |
Closes #24753 | |||
2019-02-10 | Fix check to determine if [[noreturn]] attribute is usable | Ignacio Etcheverry | |
2019-02-03 | Merge pull request #25478 from neikeq/rr | Ignacio Etcheverry | |
Mono: Fix MonoPosixHelper not being found | |||
2019-02-03 | Mono: Cleanup | Ignacio Etcheverry | |
2019-01-27 | Mono: Test Windows binaries with lowercase extension | Rémi Verschelde | |
To help users writing good cross-platform code, Godot's `FileAccessWindows:open()` will issue a warning on case mismatch, which happens here with capitalized extensions given by `PATHEXT` compared to actual file extensions which are lowercase 99% of the time. Fixes #25368. | |||
2019-01-22 | Mono: Fix hot reload build errors and cleanup | Ignacio Etcheverry | |
2019-01-01 | Update copyright statements to 2019 | Rémi Verschelde | |
Happy new year to the wonderful Godot community! | |||
2019-01-01 | Fix missing/malformed license headers | Rémi Verschelde | |
2018-11-30 | C#: Improve tool script support and fix reloading issues | Ignacio Etcheverry | |
2018-11-08 | Improve the C# API projects generation | Ignacio Etcheverry | |
- Now there is only one solution that contains both GodotSharp and GodotSharpEditor project. Previously we had one solution for each project - GodotSharpEditor reference GodotShatp with a 'ProjectReference'. Previously it was a 'Reference' to the assembly - This also simplifies the command line option to generate this solution: 'godot --generate-cs-api <OutputDir>' | |||
2018-10-25 | Parse C# script namespace and class | Ignacio Etcheverry | |
- Added a very simple parser that can extract the namespace and class name of a C# script. | |||
2018-10-17 | C#: Optimize struct marshalling | Ignacio Etcheverry | |
- We no longer box struct to return them from internal calls. - Use reinterpret_cast if the managed struct layout is the same as the native struct. | |||
2018-10-03 | Fix GCC compiler warning in mono module | Ignacio Etcheverry | |
- thread_local.h: 'delegating constructors only available with -std=c++11 or -std=gnu++11' - mono_reg_utils.cpp: 'extra tokens at end of #endif directive' - mono_bottom_panel.cpp: '<fieldB> will be initialized after <fieldA> when initialized here' - bindings_generator.cpp: 'name lookup of 'i' changed (...) matches this 'i' under ISO standard rules (...) matches this 'i' under old rules (...)' | |||
2018-09-17 | Mono: Fix opening code editors in OSX and cleanup | Ignacio Etcheverry | |
2018-09-12 | Make core/ includes absolute, remove subfolders from include path | Rémi Verschelde | |
This allows more consistency in the manner we include core headers, where previously there would be a mix of absolute, relative and include path-dependent includes. | |||
2018-08-21 | Style: Fix issues that went past CI | Rémi Verschelde | |
2018-07-31 | fixed: windows mono compile (#20598) | Nick Hope | |
tidy: formatting. | |||
2018-07-29 | Fix Mono compilation on Windows/Ming | Hein-Pieter van Braam | |
(cherry picked from commit 83140541dc91c29a288d7dd71044780b50b2cc4b) | |||
2018-07-04 | Mono: Pending exceptions and cleanup | Ignacio Etcheverry | |
2018-05-02 | Fix editor detecting msbuild with a msvc 'tools only' install | Ignacio Etcheverry | |
2018-01-05 | Add missing copyright headers and fix formatting | Rémi Verschelde | |
Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module. | |||
2018-01-01 | Update copyright statements to 2018 | Rémi Verschelde | |
Happy new year to the wonderful Godot community! | |||
2017-12-07 | Style: Apply new clang-format 5.0 style to all files | Rémi Verschelde | |
2017-10-30 | Fix 'which' returning file without extension on Windows | Ignacio Etcheverry | |
2017-10-16 | Improve signature of signal target generated function | Ignacio Etcheverry | |
2017-10-03 | Added mono module | Ignacio Etcheverry | |