summaryrefslogtreecommitdiffstats
path: root/core/ustring.h
Commit message (Collapse)AuthorAgeFilesLines
* Add missing copyright headers and fix formattingRémi Verschelde2018-01-051-0/+1
| | | | | | 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.
* Update copyright statements to 2018Rémi Verschelde2018-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* Merge pull request #14973 from poke1024/docs-word-selectionNoshyaar2018-01-011-0/+3
|\ | | | | Double-click word selection for RichTextLabel (i.e. docs)
| * Double-click word selection for RichTextLabel (i.e. docs)Bernhard Liebl2017-12-281-0/+3
| |
* | Merge pull request #14744 from poke1024/stringname-compareJuan Linietsky2017-12-271-0/+23
|\ \ | |/ |/| Avoid string allocations in AlphCompare
| * Avoid string allocations in AlphCompareBernhard Liebl2017-12-171-0/+23
| |
* | Merge pull request #14576 from poke1024/stringsRémi Verschelde2017-12-161-13/+20
|\ \ | | | | | | Some performance tweaking of string handling
| * | Some performance tweaking of string handlingpoke10242017-12-151-13/+20
| |/
* / Added third argument for String.split() function (see issue #14349)Dmitry Koteroff2017-12-151-1/+1
|/ | | | | | | | 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
* Allow configuring iOS exportRuslan Mustakov2017-11-211-0/+2
| | | | | | | | | | | | | | | | | - 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).
* Added String::dedent() to remove text indentationZher Huei Lee2017-11-011-0/+1
| | | | | | | 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.
* Fix get_node() and $ autocompletion when using single quotesUnknown2017-10-301-0/+4
|
* Use HTTPS URL for Godot's website in the headersRémi Verschelde2017-08-271-1/+1
|
* Synchronize parameter names in definition and declarationTwistedTwigleg2017-08-161-4/+4
| | | | Fixes #10244.
* Fix natural sorting order in EditorFileDialog, FileDialog and ↵Damian Day2017-05-121-0/+9
| | | | | | | | | | EditorFileSystemDirectory Make EditorFileDialog, FileDialog and EditorFileSystemDirectory alphanumerical sorting more natural Added a new method 'naturalnocasecmp_to' and comparator 'NaturalNoCaseComparator' to String. Fixes #8712.
* Add "Godot Engine contributors" copyright lineRémi Verschelde2017-04-081-0/+1
|
* A Whole New World (clang-format edition)Rémi Verschelde2017-03-051-93/+82
| | | | | | | | | | | | | | | | | | | | | | | | 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
* -renamed globals.h to global_config.cpp (this seems to have caused a few ↵Juan Linietsky2017-02-211-0/+2
| | | | | | modified files) -.pck and .zip exporting redone, seems to be working..
* Merge pull request #7002 from RandomShaper/vcs-friendlinessJuan Linietsky2017-01-251-0/+1
|\ | | | | Greater VCS friendliness
| * Improve .tscn VCSPedro J. Estébanez2017-01-161-0/+1
| | | | | | | | | | | | | | | | | | | | | | 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.
* | Merge pull request #7010 from AlexHolly/format-string2Juan Linietsky2017-01-141-0/+1
|\ \ | | | | | | advanced string format
| * | advanced string formatAlexHolly2016-11-011-0/+1
| |/
* | rename String.extension() -> String.get_extension() / String.basename() -> ↵Juan Linietsky2017-01-141-2/+2
| | | | | | | | String.get_basename()
* | Variant INT and REAL are now 64 bits (other types remain at 32)Juan Linietsky2017-01-081-0/+1
| |
* | Welcome in 2017, dear changelog reader!Rémi Verschelde2017-01-011-1/+1
|/ | | | | | | | That year should bring the long-awaited OpenGL ES 3.0 compatible renderer with state-of-the-art rendering techniques tuned to work as low as middle end handheld devices - without compromising with the possibilities given for higher end desktop games of course. Great times ahead for the Godot community and the gamers that will play our games!
* added implementation of is_valid_ip_address()Ariel Manzur2016-10-201-1/+2
|
* Fix typo for word_wrapvolzhs2016-09-301-1/+1
|
* Add sha256_buffer() function to StringGeorge Marques2016-06-231-0/+1
|
* Add similarity comparison to StringGeorge Marques2016-06-191-0/+2
| | | | | Uses the Sorensen-Dice coefficient to calculate similarity. This also adds String.bigrams() as a convenience function needed by the comparison.
* Remove CHARTYPE_16BITS unused checksJ08nY2016-06-191-4/+2
| | | | fix #5263
* Add sha256 to String and File/FileAccess.Bojidar Marinov2016-06-171-0/+2
| | | | Probably does #4166
* Add 'is_subsequence_of' function to StringGeorge Marques2016-06-121-0/+3
|
* -Added configuration warning system for nodesJuan Linietsky2016-05-171-0/+11
| | | | | -Added a new "add" and "instance" buttons for scene tree -Added a vformat() function to ease translation work
* Added possibility to strip left and right to strip_edges (#4594)Mattias Cibien2016-05-111-1/+1
|
* Modified editor strings to be translatable in the futureJuan Linietsky2016-05-031-0/+2
|
* remove trailing whitespaceHubert Jarosz2016-03-091-8/+8
|
* Fixed String::camelcase_to_underscore() so it works in all cases. Fixes PR #1650Julian Murgia - StraToN2016-02-171-1/+1
|
* added a new function to escape properly json, fixes #3282Juan Linietsky2016-01-101-0/+1
|
* -Replaced tinyjpg for jpgd (public domain), fixes progressive encoded jpgs ↵Juan Linietsky2016-01-031-1/+1
| | | | | | and speeds up. Closes #2040 -Removed support of loading BitMap as image, now it must be load as a pnm, also closes #2040
* Update copyright to 2016 in headersGeorge Marques2016-01-011-1/+1
|
* Fixes the make_doc.sh, <, > and & signs in descriptions that cause the ↵Aren Villanueva2015-11-191-0/+2
| | | | | | | | parser to break. Documentation for HTTPClient. Added a query_string_from_dict method to HTTPClient to create a x-www-form-urlencoded valid query string for GET and POST messages. String now has http_escape() and http_unescape() methods to help facilitate the above query_string_from_dict method.
* Show documentation for properties on hover.Juan Linietsky2015-08-251-0/+1
| | | | This works if the property has been documented (about half are at this point)
* Several performance improvements, mainly in loading and instancing scenes ↵Juan Linietsky2015-06-291-0/+1
| | | | | | | | and resources. A general speedup should be apparent, with even more peformance increase when compiling optimized. WARNING: Tested and it seems to work, but if something breaks, please report.
* Updated copyright year in all headersJuan Linietsky2015-04-181-1/+1
|
* Camel casing being capitalized only happens in the inspector now.Nathan Warden2015-03-231-0/+1
|
* Revert "Camelcased script variables will now capitalize in the inspector."Juan Linietsky2015-03-221-1/+2
|
* Merge pull request #1396 from Spooner/fix_sprintf_errorsJuan Linietsky2015-03-221-1/+1
|\ | | | | Fix sprintf errors
| * Correctly halt on error in sprintf parsing (fixes #1393)Bil Bas (Spooner)2015-02-191-1/+1
| |
* | Camelcased script variables will now capitalize in the inspector.Nathan Warden2015-02-191-2/+1
|/
* Completed implementing standard formatting.Bil Bas (Spooner)2015-02-011-1/+3
|