summaryrefslogtreecommitdiff
path: root/modules/gdnative
AgeCommit message (Collapse)Author
2018-01-07doc: Sync classref with current sourceRémi Verschelde
2018-01-06[GDNative] fix reloading of non-reloadable librarieskarroffel
2018-01-06Removed PBM bitmap loader, added abiliy to importi mages as bitmap. Fixes #14828Juan Linietsky
2018-01-06[GDNative] added reload propertykarroffel
2018-01-05Add missing copyright headers and fix formattingRé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-04Disable lto for gdnative wrapperEmmanuel Leblond
2018-01-01Merge pull request #15246 from vnen/uwp-gdnativeGeorge Marques
Make GDNative DLLs work on UWP
2018-01-01Make GDNative DLLs work on UWPGeorge Marques
2018-01-01Update copyright statements to 2018Rémi Verschelde
Happy new year to the wonderful Godot community!
2017-12-18Add plugin to edit GDNativeLibrarygeequlim
Rename GDNativeLibraryEditor to GDNativeLibrarySingletonEditor
2017-12-16Remove get_stack_bottomRuslan Mustakov
It's not used in godot-nim any longer and there were no other uses for it.
2017-12-15Add missing godot_get_stack_bottom and godot_get_global_constants in ↵Emmanuel Leblond
gdnative_api.json
2017-12-09Fix missing parenthesisRémi Verschelde
2017-12-09GDNative: Fix warning when gdnative/singletons is missingRémi Verschelde
2017-12-07Style: Apply new clang-format 5.0 style to all filesRémi Verschelde
2017-12-07Style: Apply clang-format again on all filesRémi Verschelde
Fixes issues introduced by newer clang-format versions or commits pushed directly without using the clang-format pre-commit hook.
2017-12-05Improve slang, especially in user-visible partsUnknown
2017-12-05Merge pull request #13992 from ISylvox/substract-to-subtractRémi Verschelde
Fix Typo: Substract to Subtract
2017-12-05Fixed typo: substract to subtractIndah Sylvia
2017-12-05GDNative: Save singletons only if there's a changeGeorge Marques
Ensures that the Project Settings are saved only if the list of singletons actually changed.
2017-11-30Changed the dynamic library open function to allow setting the path of the ↵Juan Linietsky
library to open extra libraries.
2017-11-28disable caching for targets using helper functionsRhody Lugo
2017-11-28Set real world position, not virtual world position!Bastiaan Olij
2017-11-28use the same cache for all branches for appveyorRhody Lugo
2017-11-25[GDNative] disable -fPIC flag with msvc compilerEmmanuel Leblond
2017-11-24doc: Remove setters and getters now exposed via properties/membersRémi Verschelde
2017-11-24doc: Update header version for 3.0-betaRémi Verschelde
2017-11-24doc: Sync classref with current sourceRémi Verschelde
2017-11-21Merge pull request #13130 from endragor/gdnative-android-exportRémi Verschelde
Proper GDNative export on Android
2017-11-21Merge pull request #12284 from bojidar-bg/allow-subproperty-setRémi Verschelde
Allow for getting/setting "dotted" properties of objects
2017-11-21Fix&prettify gdnative_api_struct.gen.h GDNATIVE_API_INIT macro generationEmmanuel Leblond
2017-11-21Allow for getting/setting indexed properties of objects using get/set_indexedBojidar Marinov
Performance is around the same as using pure set() through GDScript.
2017-11-21Proper GDNative export on AndroidRuslan Mustakov
2017-11-21Merge pull request #12590 from poke1024/bsearchRémi Verschelde
Add bsearch and bsearch_custom to Array
2017-11-21Revert this change, we need to export symbols on the library sideBastiaan Olij
2017-11-21Add bsearch and bsearch_custom to Arraypoke1024
2017-11-21Allow configuring iOS exportRuslan Mustakov
- EditorExportPlugin's _export_begin accepts all the arguments related to the current export (is_debug, path, flags). - EditorExportPlugin API is extended with methods allowing to configure iOS export: add_ios_framework, add_ios_plist_content, add_ios_linker_flags, add_ios_bundle_file. - iOS export template now contains Godot as a static library so that it can be linked with third-party Frameworks and GDNative static libraries. - Adds method to DirAccess for recursive copying of a directory. - Fixes iOS export to work with Xcode 9 (released recently).
2017-11-20Merge pull request #13094 from karroffel/gdnative-api-register-nativecallThomas Herzog
[GDNative] add a way to register call types
2017-11-20[GDNative] add a way to register call typesKarroffel
2017-11-20[GDNative] removed static linking fieldsKarroffel
2017-11-20[GDNative] removed godot_string_c_strKarroffel
2017-11-20[GDNative] loading error and version error procsKarroffel
2017-11-17Rename Rect3 to AABB.Ferenc Arn
Fixes #12973.
2017-11-16[GDNative] fix wrapper code generationKarroffel
2017-11-15doc: Sync classref with current sourceRémi Verschelde
2017-11-15doc: Make all module docs self-containedRémi Verschelde
2017-11-15doc: Remove revision.module_config from version stringRémi Verschelde
It is now "3.0-alpha" instead of "3.0.alpha.custom_build{,.mono}", limits unnecessary diffs.
2017-11-15Merge pull request #12949 from karroffel/gdnative-exportJuan Linietsky
[GDNative] export plugin
2017-11-15[GDNative] export pluginKarroffel
2017-11-14Merge pull request #12922 from eska014/engine-singletonsRémi Verschelde
Singleton management changes