| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2016-10-20 | added windows support for ipv6, cleaned up unix code | Ariel Manzur | 11 | -122/+175 | |
| 2016-10-19 | address type for http client | Ariel Manzur | 2 | -4/+5 | |
| 2016-10-19 | fixed some byte order and parsing problems | Ariel Manzur | 3 | -21/+52 | |
| 2016-10-18 | adding ipv6 | Ariel Manzur | 17 | -126/+444 | |
| 2016-10-16 | Theora: Don't compile unnecessary files, rename "x86_opt_*" | Błażej Szczygieł | 6 | -34/+33 | |
| 2016-10-15 | png: Try to fix neon issue on iphone armv7 | Rémi Verschelde | 1 | -22/+24 | |
| 2016-10-15 | drivers: Refactor SCsub and drop redundant env_drivers clone | Rémi Verschelde | 11 | -60/+60 | |
| The reordering of the SConscript includes allows to ensure that stuff like the builtin zlib headers will be available for libpng. Also moved glew back into global env, otherwise windows seems not to find it... Kind of shooting in the dark with this multi-env setup. | |||||
| 2016-10-15 | freetype: Make it a module and split thirdparty library | Rémi Verschelde | 510 | -882/+178 | |
| Comment out the weird workaround for building on Windows at it might not be needed anymore. Testing needed to confirm. | |||||
| 2016-10-15 | chibi: Move to a module | Rémi Verschelde | 52 | -12/+84 | |
| 2016-10-15 | zlib: Split thirdparty files, simplify scons option | Rémi Verschelde | 36 | -49/+57 | |
| 2016-10-15 | glew: Split thirdparty files and isolate env | Rémi Verschelde | 16 | -19/+115 | |
| Not fully happy about the way this one interacts with the various platforms. Maybe the platform_config.h should be generated by the SCsub instead of passing a define just to know where is the header. | |||||
| 2016-10-15 | squish: Update to upstream 1.14 | Rémi Verschelde | 25 | -3643/+3912 | |
| Sources are untouched, tarball from https://sourceforge.net/projects/libsquish | |||||
| 2016-10-15 | squish: Move to a module and split thirdparty lib | Rémi Verschelde | 37 | -60/+144 | |
| 2016-10-15 | rtaudio: Split thirdparty files | Rémi Verschelde | 7 | -4/+33 | |
| 2016-10-15 | mpc: Move to a module and split thirdparty libmpcdec | Rémi Verschelde | 34 | -54/+157 | |
| 2016-10-15 | theora: Move to a module and split thirdparty lib | Rémi Verschelde | 88 | -178/+199 | |
| Same rationale as the previous commits. | |||||
| 2016-10-15 | modules: Clone env in each module | Rémi Verschelde | 17 | -93/+94 | |
| This allows to pass include paths and flags only to a given thirdparty library, thus preventing conflicts between their files (e.g. between opus and openssl which both provide modes.h. This also has the nice effect of making the compilation command smaller for each module as it no longer related to all other modules, only the final linking brings them together. This however requires adding manually the ogg include path in opus and vorbis when building against the builtin ogg, since it is no longer in the global env. Also simplified template 'thirdparty_<module>_sources' to 'thirdparty_sources'. "Core" modules like cscript, gdscript, gridmap, ik and virtual_script still use the main env_modules, but it could be changed if need be. | |||||
| 2016-10-15 | openssl: Move to a module and split thirdparty lib | Rémi Verschelde | 960 | -737/+839 | |
| Same rationale as the previous commits. | |||||
| 2016-10-15 | ogg/vorbis/opus: Make them modules and unbundle thirdparty libs | Rémi Verschelde | 408 | -1400/+4223 | |
| Took the opportunity to undo the Godot changed made to the opus source. The opus module should eventually be built in its own environment to avoid polluting others with too many include dirs and defines. TODO: Fix the platform/ stuff for opus. | |||||
| 2016-10-15 | webp: Make it a module and unbundle libwebp thirdparty files | Rémi Verschelde | 162 | -250/+287 | |
| Note that there are two Godot-specific changes made to libwebp for the javascript/HTML5 platform. They are documented in the README.md. | |||||
| 2016-10-15 | dds/etc1/pbm/pvr: Make those modules and split thirdparty files | Rémi Verschelde | 55 | -126/+433 | |
| They are not particularly packaged in Linux distros so we do not facilitate unbundling via SCons. There could be done if/when there is interest. Also s/pnm/pbm/, long-lived typo :) | |||||
| 2016-10-15 | enet: Split enet thirdparty files and allow unbundling | Rémi Verschelde | 26 | -11/+107 | |
| Building against shared libraries only implemented for Linux X11 so far. TODO: Document Godot's modifications of upstream enet. | |||||
| 2016-10-15 | jpg: Make it a module and split jpgd thirdparty files | Rémi Verschelde | 13 | -35/+112 | |
| Similar rationale as in previous commit. | |||||
| 2016-10-15 | png: Split library to thirdparty dir and allow unbundling | Rémi Verschelde | 35 | -61/+203 | |
| Uses the new structure agreed upon in #6157, but the thirdparty/ folder does not behave following a logic similar to that of modules/ yet. The png driver can't be moved to a module as discussed in #6157, as it's required by core together with a few other ImageLoader implementations (see drivers/register_driver_types.cpp:register_core_driver_types()) Dropped the possibility to disable PNG support, it's a core component of Godot. | |||||
| 2016-10-15 | Fix GraphEdit connection wire when resizing GraphNode | volzhs | 1 | -0/+1 | |
| 2016-10-14 | Added support for tooltips in ButtonArray. Fixes #6597 | Zher Huei Lee | 2 | -7/+47 | |
| 2016-10-14 | Drop nedmalloc which is apparently not used anymore | Rémi Verschelde | 14 | -8003/+2 | |
| 2016-10-13 | Remove speex support, it is obsoleted by opus | Rémi Verschelde | 110 | -28804/+1 | |
| As mentioned by upstream, Xiph.Org [0]: > The Speex codec has been obsoleted by Opus. It will continue to be > available, but since Opus is better than Speex in all aspects, > users are encouraged to switch. [0] http://www.speex.org/ | |||||
| 2016-10-13 | Fixed Particle2D docs - radians to degrees for some params | Karol Walasek | 1 | -2/+2 | |
| 2016-10-13 | Documentation of RPC-related methods and classes | Karol Walasek | 1 | -0/+16 | |
| 2016-10-13 | Adapt overlooked instances of zero-based column numbers | Pedro J. Estébanez | 1 | -5/+5 | |
| 2016-10-13 | Only show AnimationEditor automatically when an Animplayer is selected. | Andreas Haas | 1 | -1/+1 | |
| Previous behaviour was to show it when an AnimationPlayer has been detected in the scene, now you actually have to select it. Fixes #6213 | |||||
| 2016-10-13 | Properly handle absolute paths in Globals::localize_path | Fabio Alessandrelli | 1 | -1/+1 | |
| This give a proper fix for #4280 - #3106 , allowing absolute paths that starts from the file system, not the resource folder | |||||
| 2016-10-13 | Revert "Add warning when (pre)loading paths with leading / (#4280 - #3106)" | Fabio Alessandrelli | 2 | -12/+0 | |
| Also closes: #6801 This reverts commit e59820ac94b7c9706298d5559608937dfca332e5. | |||||
| 2016-10-13 | Allow turing off zero-padding for line numbers | Pedro J. Estébanez | 4 | -1/+16 | |
| 2016-10-13 | Fix GraphEdit connection wire when zoom in/out | volzhs | 1 | -5/+6 | |
| 2016-10-13 | Add "button_selected" signal to ButtonGroup | volzhs | 1 | -0/+4 | |
| 2016-10-13 | Expose resizable property of GraphNode in inspector | volzhs | 1 | -0/+1 | |
| 2016-10-12 | Fixes for ButtonArray | Zher Huei Lee | 1 | -2/+12 | |
| Fixed hover sometimes not resetting when mouse leaves widget. Fixed text position not taking into account stylebox's content margins. | |||||
| 2016-10-12 | Fixes hash float negative 0 problem | Răzvan Cosmin Rădulescu | 1 | -1/+4 | |
| Before this was giving an error: var a = {Vector2(1, 0): 5, Vector2(-1, 0): 7} print(a) print(a[Vector2(1, 0)]) print(a[-Vector2(1, 0)]) This simple commit fixes the issue. | |||||
| 2016-10-11 | Correct OS architecture detection | Anthony Fieroni | 1 | -8/+9 | |
| Signed-off-by: Anthony Fieroni <bvbfan@abv.bg> | |||||
| 2016-10-11 | Replace a node with saved branch scene instance | volzhs | 2 | -1/+30 | |
| 2016-10-11 | Sprite: Fix inspector not showing changes on "frame" property. | Andreas Haas | 1 | -0/+1 | |
| Fixes #6562 | |||||
| 2016-10-11 | Refresh TextureRegionEditor when region has been changed externally. | Andreas Haas | 2 | -0/+9 | |
| Now the TextureRegionEditor updates when you change the region_rect either via the inspector or via undo/redo. Fixes #6772 | |||||
| 2016-10-11 | New load icon, removed unused open icon | Pawel Kowal | 5 | -0/+85 | |
| 2016-10-11 | Remove unnecessary parentheses | volzhs | 1 | -2/+2 | |
| 2016-10-10 | Fix #5959, contrasting texture for toggled button | Pawel Kowal | 1 | -0/+0 | |
| 2016-10-10 | Fix Script Editor drawing over Dialogs. | Andreas Haas | 2 | -2/+14 | |
| Resets the z-index when focus is lost and the completion is shown. Fixes #6769 | |||||
| 2016-10-10 | Revise serial naming behavior | Pedro J. Estébanez | 1 | -9/+22 | |
| 2016-10-10 | Allow step for integer properties | Pedro J. Estébanez | 1 | -6/+6 | |
| Small readability improvement | |||||
