| Commit message (Collapse) | Author | Age | Files | Lines |
| |\
| |
| | |
Added rsplit() method to String class
|
| | |
| |
| |
| | |
Docs updated
|
| |\ \
| | |
| | | |
Adjust decimal precision
|
| | | |
| | |
| | |
| | | |
Increase the number of significant digits when converting from double to string.
|
| | | | |
|
| |\ \ \
| | | |
| | | | |
Add string trim_prefix, trim_suffix, lstrip and rstrip methods
|
| | | | | |
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
- StringName::StringName(const StringName &p_name)
Non-static class member _data is not initialized in this constructor nor in any functions that it calls.
- StringName::_Data()
Non-static class member idx is not initialized in this constructor nor in any functions that it calls.
- String::num_uint64(...)
This less-than-zero comparison of an unsigned value is never true. n % base < 0UL.
- String::hex_to_int(...) and String::hex_to_int64(...)
Execution cannot reach this statement (deadcode)
|
| |/ / /
| | |
| | |
| | | |
This reverts commit b76ee30917c63211ac9e94a21bebbddf518d169f.
|
| | | |
| | |
| | |
| | | |
Fixes #17875.
|
| |/ /
| |
| |
| |
| | |
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.
|
| | | |
|
| | | |
|
| | |
| |
| |
| | |
Using v1.11.0 from https://github.com/lucasdemarchi/codespell
|
| | |
| |
| |
| | |
Added tutorial display in doc.
|
| | | |
|
| | |
| |
| |
| |
| |
| | |
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.
|
| | |
| |
| |
| | |
Happy new year to the wonderful Godot community!
|
| |\ \
| | |
| | | |
Double-click word selection for RichTextLabel (i.e. docs)
|
| | | | |
|
| |\ \ \
| |/ /
|/| | |
Avoid string allocations in AlphCompare
|
| | | | |
|
| |\ \ \
| |_|/
|/| | |
Some performance tweaking of string handling
|
| | |/ |
|
| |/
|
|
|
|
|
|
| |
Remove negative limit, leave only positive and make it reflect behaviour like in Python
Also limit renamed to maxsplit to match Python one.
Also docs updated.
Fix indent
|
| | |
|
| |
|
|
|
|
| |
wrong function,
leading to unnecesary copy on writes and reduced performance.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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).
|
| | |
|
| |
|
|
|
|
|
| |
This functions similarly to Python's textwrap.dedent()
It's also been applied to doc_data.cpp to remove extra whitespace while
parsing the XML.
|
| | |
|
| | |
|
| |
|
|
| |
The second in my quest to make Godot 3.x compile with -Werror on GCC7
|
| |
|
|
| |
The first in my quest to make Godot 3.x compile with -Werror on GCC7
|
| | |
|
| | |
|
| |
|
|
| |
Fixes #10244.
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
| |
EditorFileSystemDirectory
Make EditorFileDialog, FileDialog and EditorFileSystemDirectory alphanumerical sorting more natural
Added a new method 'naturalnocasecmp_to' and comparator 'NaturalNoCaseComparator' to String.
Fixes #8712.
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
I can show you the code
Pretty, with proper whitespace
Tell me, coder, now when did
You last write readable code?
I can open your eyes
Make you see your bad indent
Force you to respect the style
The core devs agreed upon
A whole new world
A new fantastic code format
A de facto standard
With some sugar
Enforced with clang-format
A whole new world
A dazzling style we all dreamed of
And when we read it through
It's crystal clear
That now we're in a whole new world of code
|
| |\
| |
| | |
Fix zero padding formatting
|
| | | |
|
| |/
|
|
|
|
| |
modified files)
-.pck and .zip exporting redone, seems to be working..
|
| |\
| |
| | |
Greater VCS friendliness
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Serialize dictionaries adding newlines between key-value pairs
Serialize group lists also with newlines in between
Serialize string properties escaping only " and \ (needed for a good diff experience with built-in scripts and shaders)
Bonus:
Make AnimationPlayer serialize its blend times always sorted so their order is predictable in the .tscn file.
This PR is back-compat; won't break the load of existing files.
|