summaryrefslogtreecommitdiff
path: root/core/io
AgeCommit message (Collapse)Author
2017-08-26Cleanup tons of obsolete commented out codeRémi Verschelde
Mostly in EditorNode, dropping some obsolete editor plugins and also a cleanup of ProjectSettings/EditorSettings.
2017-08-24Convert Object::cast_to() to the static versionHein-Pieter van Braam
Currently we rely on some undefined behavior when Object->cast_to() gets called with a Null pointer. This used to work fine with GCC < 6 but newer versions of GCC remove all codepaths in which the this pointer is Null. However, the non-static cast_to() was supposed to be null safe. This patch makes cast_to() Null safe and removes the now redundant Null checks where they existed. It is explained in this article: https://www.viva64.com/en/b/0226/
2017-08-22Merge pull request #10340 from Rubonnek/remove-unnecessary-assignmentsRémi Verschelde
Removed unnecessary assignments
2017-08-21Merge pull request #10351 from neikeq/enums-are-for-the-weakJuan Linietsky
ClassDB: Provide the enum name of integer constants
2017-08-21Merge pull request #10433 from djrm/pr_svg_supportRémi Verschelde
SVG support
2017-08-21Removed unnecessary assignmentsWilson E. Alvarez
2017-08-21Fix binary object marshalling, closes #9472Juan Linietsky
2017-08-20ClassDB: Provide the enum name of integer constantsIgnacio Etcheverry
2017-08-20Added support for SVGDaniel J. Ramirez
2017-08-18-Properly check limits to objects sent (regarding to size), fixes #9034Juan Linietsky
-Changed the way objects are marshalled and sent to the debugger -Editing debugged objects happens in the remote inspector now
2017-08-17Add closest_power_of_2 func and implement mix_rate/latency on OS XMarcelo Fernandez
2017-08-16Synchronize parameter names in definition and declarationTwistedTwigleg
Fixes #10244.
2017-08-16Merge pull request #10264 from Rubonnek/use-const-referenceRémi Verschelde
Use const reference where favorable
2017-08-15Merge pull request #10334 from Faless/fix_spbuffer_utf8kubecz3k
Fix StreamPeer put_utf8_string not working
2017-08-15Removing a Resource also deletes imported files.Andreas Haas
2017-08-14Use const reference where favorableWilson E. Alvarez
2017-08-14Ability to save objects to binary formatJuan Linietsky
2017-08-14Fix StreamPeer put_utf8_string not workingFabio Alessandrelli
2017-08-12Fix broken stream reading in StreamPeerBufferRaymoo
2017-08-11Merge pull request #10163 from ISylvox/resoucre-to-resourceRémi Verschelde
Core/io: Fix typo in resource_format_binary
2017-08-11Merge pull request #9987 from Rubonnek/move-members-to-initilization-listRémi Verschelde
Moved member variables from constructor to initialization list
2017-08-10Removes type information from method bindsIgnacio Etcheverry
2017-08-08Moved member variables from constructor to initialization listWilson E. Alvarez
2017-08-08Set some reasonable limits for sending information to the debugger, closes #5848Juan Linietsky
2017-08-08core/io: fix typo 'resoucre' to 'resource'Indah Sylvia
2017-07-30Style: Apply clang-format on all filesRémi Verschelde
Thus fixing some invalid changes that had still made it to the master branch.
2017-07-26Fix various property not found errorsPoommetee Ketson
2017-07-23Add object type hint for docsPoommetee Ketson
2017-07-19-Renamed GlobalConfig to ProjectSettings, makes more sense.Juan Linietsky
-Added system for feature overrides, it's pretty cool :)
2017-07-19Add object type hint for docsPoommetee Ketson
2017-07-17-Reorganized all properties of project settings (Sorry, Again).Juan Linietsky
(Lot's of bloat accumulated, so it was time for clean up.) -Made EditorSettings and ProjectSettings search more useful (search in sections too)
2017-07-17Merge pull request #9634 from vnen/gzip-compressionRémi Verschelde
Add GZIP compression support
2017-07-15Lots of work on Audio & Physics engine:Juan Linietsky
-Added new 3D stream player node -Added ability for Area to capture sound from streams -Added small features in physics to be able to properly guess distance to areas for sound -Fixed 3D CollisionObject so shapes are added the same as in 2D, directly from children -Fixed KinematicBody API to make it the same as 2D.
2017-07-13Add GZIP compression supportGeorge Marques
- Fix a wrong call in PoolByteArray::compress
2017-07-12Ignore fuzzy translationsPoommetee Ketson
2017-06-28Reworked translation systemJuan Linietsky
-Label and Button reload translation on the fly -Resources are loaded and reload depending on locale
2017-06-16-Fix freezes caused by etccomp2, closes #9183Juan Linietsky
-Normalmaps are now detected and imported as RGTC, both in S3TC and ETC2, this improves their quality.
2017-06-13Don't append standard ports to the request header.Martin Capitanio
Breaks the SSL communication with some servers, do the same that the other curl, wget, firefox & co clients do. Fixes #9146
2017-06-11Expose zstd and zlib compression levels as global config.Ferenc Arn
2017-06-11Merge pull request #9104 from tagcup/zstdJuan Linietsky
Add zstd compression support.
2017-06-11Added EditorPlugin.remove_import_plugin()Zher Huei Lee
Allows addons with import extensions to clean up properly on removal.
2017-06-09renamed all Rect3.pos to Rect3.positionalexholly
2017-06-08Add zstd compression support.Ferenc Arn
zstd has much better compression speed and ratio, and better decompression speed than currently available methods. Also set zstd as the default compression method for Compression as well as FileAccessCompressed functions.
2017-06-04renamed all Rect2.pos to Rect2.positionalexholly
2017-05-30Several fixes related to PBR and EnvironmentJuan Linietsky
2017-05-20Removal of InputEvent as built-in Variant type..Juan Linietsky
this might cause bugs I haven't found yet..
2017-05-17Fix two typos from previous commitRémi Verschelde
Also cleanup comments on variant types.
2017-05-17Removal of Image from Variant, converted to a Resource.Juan Linietsky
2017-05-08Fixed the IP resolver code blocking the main thread, it uses a Mutex now to ↵Marcelo Fernandez
lock its own thread.
2017-05-05Merge pull request #8642 from RandomShaper/fix-pack-get-curr-dirRémi Verschelde
Fix infinite loop in DirAccessPack::get_current_dir()