summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-05-18Merge pull request #6941 from voithos/bezier-handle-deletion-shortcutRémi Verschelde
Add the ability to delete bezier path handles.
2017-05-18Merge pull request #8649 from neikeq/pr-ringbuffer-findRémi Verschelde
RingBuffer: Adds find() method
2017-05-18Merge pull request #8716 from Hinsbart/import-pluginsRémi Verschelde
Bring back EditorImportPlugin
2017-05-18Merge pull request #8756 from BastiaanOlij/mfi_support_3.0Rémi Verschelde
MFI gamepad support for iPhone
2017-05-18Merge pull request #8798 from RandomShaper/gdfs-ext-checkRémi Verschelde
Add extended check option to GDFunctionState::is_valid()
2017-05-17Adapt tutorials (Godot Docs) icon to new designRémi Verschelde
2017-05-17Use new Godot icon consistently everywhereRémi Verschelde
2017-05-17Fix two typos from previous commitRémi Verschelde
Also cleanup comments on variant types.
2017-05-17Add extended check option to GDFunctionState::is_valid()Pedro J. Estébanez
2017-05-17MFI gamepad support for iPhoneBastiaanOlij
2017-05-17Removal of Image from Variant, converted to a Resource.Juan Linietsky
2017-05-16Merge pull request #8778 from honix/masterRémi Verschelde
Particles potential crash fix 2
2017-05-16Particles potential crash fix 2honix
2017-05-16Merge pull request #8784 from bojidar-bg/editorconfig-trim-whitespaceRémi Verschelde
Add trim_trailing_whitespace to .editorconfig [ci skip]
2017-05-16Add trim_trailing_whitespace to .editorconfigBojidar Marinov
2017-05-16Merge pull request #8780 from RandomShaper/updgrade-android-build-toolsRémi Verschelde
Upgrade Android build tools to the latest
2017-05-16Upgrade Android build tools to the latestPedro J. Estébanez
2017-05-15Merge pull request #8775 from godotengine/revert-8772-masterAndreas Haas
Revert "Particles potential crash fix"
2017-05-15Revert "Particles potential crash fix"Andreas Haas
2017-05-15Merge pull request #8772 from honix/masterAndreas Haas
Particles potential crash fix
2017-05-15Particles potential crash fixhonix
2017-05-15Merge pull request #8761 from noshyaar/pr2Rémi Verschelde
AssetInstaller: fix toggling dir bug, scan after install
2017-05-15Merge pull request #8759 from AlexHoratio/masterRémi Verschelde
Fixed #8526, popup menu width now responds to submenu icon
2017-05-15Merge pull request #8732 from akien-mga/exhaustive-copyrightRémi Verschelde
Document exhaustive licensing info of all files
2017-05-15Merge pull request #8717 from damianday/masterRémi Verschelde
Fix natural sorting order in EditorFileDialog, FileDialog and EditorFileSystemDirectory
2017-05-14Merge pull request #8762 from honix/masterRémi Verschelde
Docs: ERR_EOF -> ERR_FILE_EOF
2017-05-14Merge pull request #8764 from BeayemX/fix-typoRémi Verschelde
Fixed typo 'one short connection' to 'one shot'
2017-05-14fixed typo 'one short connection' to 'one shot'Christian Winter
2017-05-14Fixed #8526, popup menu width now responds to submenu iconAlexHoratio
2017-05-14docs: ERR_EOF -> ERR_FILE_EOFhonix
2017-05-14New logo, in SVG formatJuan Linietsky
2017-05-14AssetInstaller: fix toggling dir bug, scan after installPoommetee Ketson
2017-05-13Merge pull request #8743 from karroffel/gdnative-reload-fixesThomas Herzog
[GDNative] fixed a reload bug
2017-05-13[GDNative] fixed a reload bugKarroffel
When there was no terminate function defined in the library the exported variables would not update. This fixes that.
2017-05-12Document exhaustive licensing info of all filesRémi Verschelde
Uses the machine-readable debian/copyright standard to be explicit about both the licenses and the corresponding copyright attributions for Godot source files and thirdparty libraries bundled in the source repository.
2017-05-12Merge pull request #8719 from Hinsbart/settings_caseRémi Verschelde
Project Settings: Use capitalized properties.
2017-05-12Merge pull request #8702 from josempans/bug_fixingRémi Verschelde
Fix click area for bool parameter
2017-05-12Merge pull request #8699 from Faless/ipv6_disabledRémi Verschelde
Fix Editor/Debugger connection problems.
2017-05-12Merge pull request #8696 from bojidar-bg/fix-path-autocompleteRémi Verschelde
Fix gdscript autocomplete showing only paths
2017-05-12Merge pull request #8682 from akien-mga/masterRémi Verschelde
Fix license formatting breaking GH detection
2017-05-12Fix natural sorting order in EditorFileDialog, FileDialog and ↵Damian Day
EditorFileSystemDirectory Make EditorFileDialog, FileDialog and EditorFileSystemDirectory alphanumerical sorting more natural Added a new method 'naturalnocasecmp_to' and comparator 'NaturalNoCaseComparator' to String. Fixes #8712.
2017-05-12Bring back EditorImportPluginAndreas Haas
This adds a new implementation of the EditorImportPlugin class, allowing to leverage the new importing system via tool scripts. Will be especially useful when used together with GDNative, to support formats like fbx :)
2017-05-12Merge pull request #8725 from volzhs/android-jni-masterRémi Verschelde
Fix compile error when use "android_add_jni_dir"
2017-05-12Merge pull request #8723 from volzhs/fix-android-masterRémi Verschelde
Fix possible memory leak for Android and update gradle
2017-05-12Fix compile error when use "android_add_jni_dir"volzhs
2017-05-12Update to latest gradlevolzhs
2017-05-12Fix possible memory leak for Androidvolzhs
/godot_dev/platform/android/java/src/com/google/android/vending/expansion/downloader/impl/DownloaderService.java:575: Error: The WIFI_SERVICE must be looked up on the Application context or memory will leak on devices < Android N. Try changing to .getApplicationContext() [WifiManagerLeak] mWifiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Explanation for issues of type "WifiManagerLeak": On versions prior to Android N (24), initializing the WifiManager via Context#getSystemService can cause a memory leak if the context is not the application context. Change context.getSystemService(...) to context.getApplicationContext().getSystemService(...). 1 errors, 0 warnings
2017-05-11Merge pull request #8720 from karroffel/gdnative-methodbind-varcallThomas Herzog
[GDNative] added varcall and print
2017-05-11[GDNative] added varcall and printKarroffel
2017-05-11Project Settings: Use capitalized properties.Andreas Haas
There's been some inconsistency between the ProjectSettings and EditorSettings: One would use "snake_case_properties", the other "Capitalized Properties". This fixes that by also using capitalized properties for the project settings. (It's actually the default, so the line setting it to false was just removed..) Was there a strong reason for using snake_case here in the first place?