Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-10-15 | squish: Move to a module and split thirdparty lib | Rémi Verschelde | |
2016-10-15 | rtaudio: Split thirdparty files | Rémi Verschelde | |
2016-10-15 | mpc: Move to a module and split thirdparty libmpcdec | Rémi Verschelde | |
2016-10-15 | theora: Move to a module and split thirdparty lib | Rémi Verschelde | |
Same rationale as the previous commits. | |||
2016-10-15 | modules: Clone env in each module | Rémi Verschelde | |
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 | |
Same rationale as the previous commits. | |||
2016-10-15 | ogg/vorbis/opus: Make them modules and unbundle thirdparty libs | Rémi Verschelde | |
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 | |
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 | |
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 | |
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 | |
Similar rationale as in previous commit. | |||
2016-10-15 | png: Split library to thirdparty dir and allow unbundling | Rémi Verschelde | |
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-14 | Merge pull request #6827 from akien-mga/pr-bye-nedmalloc | Rémi Verschelde | |
Drop nedmalloc which is apparently not used anymore | |||
2016-10-14 | Merge pull request #6807 from volzhs/buttongroup-signal | George Marques | |
Add "button_selected" signal to ButtonGroup | |||
2016-10-14 | Drop nedmalloc which is apparently not used anymore | Rémi Verschelde | |
2016-10-14 | Merge pull request #6821 from akien-mga/pr-bye-speex | Rémi Verschelde | |
Remove speex support, it is obsoleted by opus | |||
2016-10-14 | Merge pull request #6820 from WalasPrime/fix_6803 | Rémi Verschelde | |
Fix #6803 - Particle2D params | |||
2016-10-14 | Merge pull request #6813 from Faless/fix_6801_bis | Rémi Verschelde | |
Re-Allow absolute paths, make them behave correctly | |||
2016-10-14 | Merge pull request #6793 from volzhs/save-branch | Rémi Verschelde | |
Replace a node with saved branch scene instance | |||
2016-10-14 | Merge pull request #6780 from RandomShaper/space-padded-line-numbers | Rémi Verschelde | |
Allow turning off zero-padding for line numbers | |||
2016-10-13 | Remove speex support, it is obsoleted by opus | Rémi Verschelde | |
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 | Merge pull request #6815 from RandomShaper/one-based-col-numbers-2 | George Marques | |
Adapt overlooked instances of zero-based column numbers | |||
2016-10-13 | Fixed Particle2D docs - radians to degrees for some params | Karol Walasek | |
2016-10-13 | Merge pull request #6809 from volzhs/graphedit-zoom | George Marques | |
Fix GraphEdit connection wire when zoom in/out | |||
2016-10-13 | Merge pull request #6814 from Hinsbart/animplayer | George Marques | |
Only show AnimationEditor automatically when an Animplayer is selected. | |||
2016-10-13 | Merge pull request #6782 from pkowal1982/load_icon | Rémi Verschelde | |
New load icon, removed unused open icon | |||
2016-10-13 | Merge pull request #6805 from volzhs/graphnode-resizable | George Marques | |
Expose resizable property of GraphNode in inspector | |||
2016-10-13 | Adapt overlooked instances of zero-based column numbers | Pedro J. Estébanez | |
2016-10-13 | Only show AnimationEditor automatically when an Animplayer is selected. | Andreas Haas | |
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 | |
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 | |
Also closes: #6801 This reverts commit e59820ac94b7c9706298d5559608937dfca332e5. | |||
2016-10-13 | Allow turing off zero-padding for line numbers | Pedro J. Estébanez | |
2016-10-13 | Fix GraphEdit connection wire when zoom in/out | volzhs | |
2016-10-13 | Add "button_selected" signal to ButtonGroup | volzhs | |
2016-10-13 | Expose resizable property of GraphNode in inspector | volzhs | |
2016-10-11 | Replace a node with saved branch scene instance | volzhs | |
2016-10-11 | Merge pull request #6788 from Hinsbart/region_refresh | Rémi Verschelde | |
Refresh TextureRegionEditor when region has been changed externally. | |||
2016-10-11 | Merge pull request #6791 from Hinsbart/frame_changed | Rémi Verschelde | |
Sprite: Fix inspector not showing changes on "frame" property. | |||
2016-10-11 | Sprite: Fix inspector not showing changes on "frame" property. | Andreas Haas | |
Fixes #6562 | |||
2016-10-11 | Refresh TextureRegionEditor when region has been changed externally. | Andreas Haas | |
Now the TextureRegionEditor updates when you change the region_rect either via the inspector or via undo/redo. Fixes #6772 | |||
2016-10-11 | Merge pull request #6783 from pkowal1982/buttonpressed | Rémi Verschelde | |
Fix #5959, contrasting texture for toggled button | |||
2016-10-11 | Merge pull request #6778 from Hinsbart/completion_z | Rémi Verschelde | |
Fix Script Editor drawing over Dialogs. | |||
2016-10-11 | Merge pull request #6777 from RandomShaper/revise-serial-naming | Rémi Verschelde | |
Revise serial naming behavior | |||
2016-10-11 | Merge pull request #6776 from RandomShaper/int_property_step | Rémi Verschelde | |
Allow step for integer properties | |||
2016-10-11 | Merge pull request #6775 from RandomShaper/one-based-col-numbers | Rémi Verschelde | |
Make text column numbers one-based | |||
2016-10-11 | Merge pull request #6762 from RandomShaper/improve-text-editor | Rémi Verschelde | |
Line length guideline setting plus some tidy-up | |||
2016-10-11 | Merge pull request #6694 from bojidar-bg/gdscript-newline-functions | Rémi Verschelde | |
Allow for linebreaks in function calls and definitions and yeild/signal. | |||
2016-10-11 | New load icon, removed unused open icon | Pawel Kowal | |
2016-10-10 | Merge pull request #6781 from volzhs/unnecessary-parentheses | Rémi Verschelde | |
Remove unnecessary parentheses [ci skip] | |||
2016-10-11 | Remove unnecessary parentheses | volzhs | |