Age | Commit message (Collapse) | Author |
|
Now you have: extra, all (the default), moderate, no.
The old 'yes' option is still supported, but a warning will be printed and 'all' will be assumed.
The different options will translate to the following:
MSVC:
extra -> /Wall (implies /W4)
all -> /W3 + disable non-essential (*)
moderate -> /W2 + disable non-essential (*)
no -> /w
GCC/Clang:
extra -> -Wall -Wextra
all -> -Wall
moderate -> -Wall -Wno-unused
no -> -w
* = Truncations, narrowing conversions...: /wd4267 /wd4244 /wd4305 /wd4800
|
|
Revert "Particles potential crash fix"
|
|
|
|
Particles potential crash fix
|
|
|
|
AssetInstaller: fix toggling dir bug, scan after install
|
|
Fixed #8526, popup menu width now responds to submenu icon
|
|
Document exhaustive licensing info of all files
|
|
Fix natural sorting order in EditorFileDialog, FileDialog and EditorFileSystemDirectory
|
|
Docs: ERR_EOF -> ERR_FILE_EOF
|
|
Fixed typo 'one short connection' to 'one shot'
|
|
|
|
|
|
|
|
|
|
|
|
[GDNative] fixed a reload bug
|
|
When there was no terminate function defined in the library the exported variables would not update.
This fixes that.
|
|
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.
|
|
Project Settings: Use capitalized properties.
|
|
Fix click area for bool parameter
|
|
Fix Editor/Debugger connection problems.
|
|
Fix gdscript autocomplete showing only paths
|
|
Fix license formatting breaking GH detection
|
|
EditorFileSystemDirectory
Make EditorFileDialog, FileDialog and EditorFileSystemDirectory alphanumerical sorting more natural
Added a new method 'naturalnocasecmp_to' and comparator 'NaturalNoCaseComparator' to String.
Fixes #8712.
|
|
Fix compile error when use "android_add_jni_dir"
|
|
Fix possible memory leak for Android and update gradle
|
|
|
|
|
|
/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
|
|
[GDNative] added varcall and print
|
|
|
|
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?
|
|
removed multiscript
|
|
removes MultiScript which was re-added in #8502 (aka 4c14700).
This feature didn't turn out to be as useful as most expected. It causes more troubles than it does good.
|
|
Add error printing functions to GDNative
|
|
|
|
This fixes the issue #8551: VisualScript: can't change bool parameter in
function call
|
|
|
|
Possibly fixes various editor<->debugger connection related problems.
|
|
Ignore non-IP addresses for both windows and unix
|
|
Add some 🔥 to appease @reduz. Fixes #8692.
|
|
|
|
|
|
lock its own thread.
|
|
Improved freelook
|
|
RayCast2D: fix detached arrow tip
|
|
|
|
- Fix movement input affecting all viewports even when clicking outside
- Freelook up movement is now relative
- Prevent tool shortcut conflict when moving
- De-hardcode tool shortcuts (select, move, rotate, scale, wireframe)
- Movement speed depends on zoom distance (like panning)
- Mouse wheel controls speed (Blender-style) due to above point
- Added zoom distance indicator, hides after short delay
|
|
|