Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-08-22 | Merge pull request #21229 from marcelofg55/ns_profiling | Rémi Verschelde | |
Implemented profiling functions for NativeScript | |||
2018-08-22 | Implemented profiling functions for NativeScript | Marcelo Fernandez | |
2018-08-21 | doc: Sync classref with current source | Rémi Verschelde | |
2018-08-20 | Add PROPERTY_HINT_PLACEHOLDER_TEXT for String properties | Rémi Verschelde | |
Use it to provide a better example for application identifiers on Android, iOS and macOS, where users thought they *had* to use this as a magic token. | |||
2018-08-15 | Add NativeScript support for script classes. | willnationsdev | |
2018-08-11 | [Core] Completely kill math_2d.h, change includes | Aaron Franke | |
2018-08-10 | [Core] Change math_2d includes to vector2 includes where relevant | Aaron Franke | |
2018-08-10 | Added system for GDScript warnings | George Marques | |
- Count and panel per script. - Ability to disable warnings per script using special comments. - Ability to disable warnings globally using Project Settings. - Option to treat enabled warnings as errors. | |||
2018-07-27 | Running builder (content generator) functions in subprocesses on Windows | Viktor Ferenczi | |
- Refactored all builder (make_*) functions into separate Python modules along to the build tree - Introduced utility function to wrap all invocations on Windows, but does not change it elsewhere - Introduced stub to use the builders module as a stand alone script and invoke a selected function There is a problem with file handles related to writing generated content (*.gen.h and *.gen.cpp) on Windows, which randomly causes a SHARING VIOLATION error to the compiler resulting in flaky builds. Running all such content generators in a new subprocess instead of directly inside the build script works around the issue. Yes, I tried the multiprocessing module. It did not work due to conflict with SCons on cPickle. Suggested workaround did not fully work either. Using the run_in_subprocess wrapper on osx and x11 platforms as well for consistency. In case of running a cross-compilation on Windows they would still be used, but likely it will not happen in practice. What counts is that the build itself is running on which platform, not the target platform. Some generated files are written directly in an SConstruct or SCsub file, before the parallel build starts. They don't need to be written in a subprocess, apparently, so I left them as is. | |||
2018-07-27 | Fixed nativescript getter and setter logic | Bastiaan Olij | |
2018-07-26 | doc: Sync classref with current source | Rémi Verschelde | |
Fix various missing arguments in bindings. | |||
2018-07-26 | Reduce unnecessary COW on Vector by make writing explicit | Hein-Pieter van Braam | |
This commit makes operator[] on Vector const and adds a write proxy to it. From now on writes to Vectors need to happen through the .write proxy. So for instance: Vector<int> vec; vec.push_back(10); std::cout << vec[0] << std::endl; vec.write[0] = 20; Failing to use the .write proxy will cause a compilation error. In addition COWable datatypes can now embed a CowData pointer to their data. This means that String, CharString, and VMap no longer use or derive from Vector. _ALWAYS_INLINE_ and _FORCE_INLINE_ are now equivalent for debug and non-debug builds. This is a lot faster for Vector in the editor and while running tests. The reason why this difference used to exist is because force-inlined methods used to give a bad debugging experience. After extensive testing with modern compilers this is no longer the case. | |||
2018-07-25 | Merge pull request #20370 from marcelofg55/gdnative_crash | Thomas Herzog | |
Fix possible crash at NativeScript::get_base_script | |||
2018-07-25 | Fix possible crash at NativeScript::get_base_script | Marcelo Fernandez | |
2018-07-24 | Removed unnecessary assignments | Wilson E. Alvarez | |
2018-07-20 | Add editor highlight for type-safe lines | George Marques | |
The line number is hightlighted to indicate that the line contains only type-safe code. | |||
2018-07-02 | Add a new notification to detect crashes on native scripts | Marcelo Fernandez | |
2018-06-29 | Merge pull request #19757 from Faless/gdnet_pr | Thomas Herzog | |
Network bindings for GDNative | |||
2018-06-27 | Add [Packet/Stream/Multiplayer]PeerGDNative | Fabio Alessandrelli | |
They provide an interface to implement PacketPeer, StreamPeer, and NetworkedMultiplayerPeer via GDNative. | |||
2018-06-21 | add NoCache wrapper to Command | Rhody Lugo | |
2018-06-19 | Add access for GDNative modules to some platform dependent internals on Android | Bastiaan Olij | |
2018-06-15 | [Pluginscript] Fix not working exports in editor | Emmanuel Leblond | |
2018-05-30 | SCons: Pass env to modules can_build method | Rémi Verschelde | |
This allows to disable modules based on the environment, in particular `env[tools]` which tells us if we are building the editor or not. | |||
2018-05-30 | Merge pull request #19255 from Faless/rpc_sync_mmore | Rémi Verschelde | |
RPCMode refactor, more sync modes (2) | |||
2018-05-29 | New sync keywords in GDScript, NativeScript, Mono | Fabio Alessandrelli | |
2018-05-29 | Refactor RPCMode enum and checks | Fabio Alessandrelli | |
2018-05-29 | Revert "RPCMode refactor, more sync modes" | Max Hilbrunner | |
2018-05-27 | [WIP] Adding version info to GDNative ARVR interfaces | Bastiaan Olij | |
2018-05-26 | New sync keywords in GDScript, NativeScript, Mono | Fabio Alessandrelli | |
2018-05-26 | Refactor RPCMode enum and checks | Fabio Alessandrelli | |
2018-05-10 | changed GDNative API json format | karroffel | |
2018-05-08 | Fix Variant leak in call_native | Pedro J. Estébanez | |
2018-04-30 | Fix lto builds on clang compilers | Hein-Pieter van Braam | |
The --no-lto option only works on GCC compilers. This breaks LTO builds on MacOS and iPhone when building the gdnative wrappers. -fno-lto works on both brands of compilers. | |||
2018-04-19 | Merge pull request #18119 from sheepandshepherd/nativescript_property_list | Rémi Verschelde | |
Fix NativeScript property list order | |||
2018-04-12 | Revert "Unify http- and percent- encode/decode" | Pedro J. Estébanez | |
This reverts commit b76ee30917c63211ac9e94a21bebbddf518d169f. | |||
2018-04-11 | Fix NativeScript property list | sheepandshepherd | |
2018-04-10 | doc: Sync classref with current source | Rémi Verschelde | |
2018-04-07 | Merge pull request #17583 from RandomShaper/enhance-uri-utils | Juan Linietsky | |
Enhance uri utils | |||
2018-04-07 | Correct profiling_frame naming in pluginscript | Emmanuel Leblond | |
2018-04-06 | Fix Pluginscript add_global_constant mandatory value check | Emmanuel Leblond | |
2018-04-06 | [NativeScript] replace error macros by simple returns | karroffel | |
2018-04-05 | Merge pull request #17980 from karroffel/nativescript-1.1-global-type-tags | Thomas Herzog | |
[NativeScript] added global type tag system | |||
2018-04-05 | [NativeScript] added global type tag system | karroffel | |
2018-04-04 | [GDNative] enable saving GDNativeLibrary as sub resource | karroffel | |
2018-04-04 | [GDNative] easier GDNativeLib handling | karroffel | |
2018-03-31 | [GDNative] fixed issue with library unloading order | karroffel | |
2018-03-31 | [GDNative] added GDCALLINGCONV to instance binding functions | karroffel | |
2018-03-27 | Unify http- and percent- encode/decode | Pedro J. Estébanez | |
There was a percent-prefixed version, which was exposed, and a http-prefixed version which was not (only to GDNative). This commit keeps the percent-prefixed versions, but with the http-prefixed implementations. | |||
2018-03-02 | NativeScript: Fix initialization in wrong scope | Rémi Verschelde | |
Regression from d702d7b335c0c9305e75131770c0ea739b70d813 which broke javascript build. | |||
2018-02-28 | Fix various valgrind reported uninitialized variable uses | Hein-Pieter van Braam | |