Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-06-30 | doc: Enforce default values for OS properties | Rémi Verschelde | |
Otherwise we end up fetching values from the current OS instance when running doctool, so they would change based on the system or even simply due to changes to the system clipboard. | |||
2019-06-30 | Fix uninitialized variables in Line2D, JSONParseResult and TileMap | Rémi Verschelde | |
2019-06-29 | Merge pull request #30177 from hbina/use_FALLTHROUGH_macro | Rémi Verschelde | |
Applied some of FALLTHROUGH macro usage from #30122 | |||
2019-06-29 | Many fallthrough switch cases now have the FALLTHROUGH macro to tell the ↵ | hbina085 | |
compiler that this is intended. | |||
2019-06-29 | Remove bogus nulls from generated default values | Bojidar Marinov | |
Also, fix crash in PluginScript destructor. | |||
2019-06-29 | Merge pull request #30112 from AgentEnder/master | Rémi Verschelde | |
AStar get_current_point enabled consideration | |||
2019-06-29 | Merge pull request #29380 from bojidar-bg/16086-docs-default-value | Rémi Verschelde | |
Add default values to the editor help, docs, and generated RST | |||
2019-06-29 | AStar get_closest_point/get_closest_position_in_segment enabled consideration | Craigory V Coppola | |
2019-06-28 | Merge pull request #30121 from DrMoriarty/encrypted_configfile | Rémi Verschelde | |
Add encrypted files support to ConfigFile | |||
2019-06-27 | Merge pull request #30135 from qarmin/fix_memory_leak_os | Rémi Verschelde | |
Fix small memory leak in OS.cpp | |||
2019-06-27 | Fix small memory leak in OS.cpp | qarmin | |
2019-06-27 | Add default values to the editor help, docs, and generated RST | Bojidar Marinov | |
Also, make spacing of "=" in the editor help a bit more consistent. Closes #16086 | |||
2019-06-27 | Add encrypted files support to ConfigFile | Vasiliy Makarov | |
Fix #26477 Add in ConfigFile this methods: load_encrypted(path, key) load_encrypted_pass(path, password) save_encrypted(path, key) save_encrypted_pass(path, password) | |||
2019-06-27 | Properly expose all Error constants to scripting languages | Rémi Verschelde | |
2019-06-27 | Merge pull request #30096 from akien-mga/doc-misc-updates | Rémi Verschelde | |
doc: Proofread and complete various nodes | |||
2019-06-27 | Merge pull request #29941 from qarmin/redundant_code_and_others | Rémi Verschelde | |
Remove redundant code, possible NULL pointers and others | |||
2019-06-27 | Bind is_point_in_polygon in Geometry singleton | Andrii Doroshenko (Xrayez) | |
2019-06-26 | doc: Proofread and complete various nodes | Rémi Verschelde | |
All 100% completed: MainLoop, Node, Object, Path, Performance, Reference, Resource, SceneState, SceneTree, UndoRedo. Also fixed some en_GB occurrences as the reference spelling is en_US. | |||
2019-06-26 | UndoRedo add version changed signal | Alexander Holland | |
added some functions to manage undo buttons | |||
2019-06-26 | Some code changed with Clang-Tidy | qarmin | |
2019-06-26 | doc: Document EncodedObjectAsID, expose its property | Rémi Verschelde | |
2019-06-24 | Fix PoolVector resize and subarray. | Fabio Alessandrelli | |
The first used to accept negative values, the second would crash if out of bound. | |||
2019-06-21 | Merge pull request #24448 from lukad/toggle-system-console | Rémi Verschelde | |
Add option to toggle console window | |||
2019-06-21 | Merge pull request #29935 from Faless/net/get_if_multicast_pr | Rémi Verschelde | |
Multicast, more network interfaces info | |||
2019-06-21 | Multicast support in NetSocket/PacketPeerUDP | Fabio Alessandrelli | |
2019-06-21 | Implement IP.get_local_interfaces. | Fabio Alessandrelli | |
Allow getting interfaces names and assigned names. On UWP this is not supported, and the function will return one interface for each local address (with interface name the local address itself). | |||
2019-06-20 | Merge pull request #29283 from qarmin/fix_some_always_same_values | Rémi Verschelde | |
Remove always true/false values | |||
2019-06-20 | Fix always true/false values | qarmin | |
2019-06-20 | Add option to toggle console window on Windows | Luka Dornhecker | |
This is an editor setting and its value can also be toggled using an entry in the Editor toolbar. The console will still appear briefly when starting the project manager or editor, as it's still compiled as console application. Does not impact exported games, which will still run without console in release and with console in debug mode. A project setting or export option could be added to disable it in debug mode if there's demand for it, but that would greatly reduce the usefulness of debug builds if Windows users can no longer report error and crash messages. Fixes #17889. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com> | |||
2019-06-19 | Made use of semicolons more consitent, fixed formatting | JohnJLight | |
2019-06-19 | Merge pull request #27237 from Chaosus/astar_2d | Rémi Verschelde | |
Added 2D functions to AStar | |||
2019-06-19 | Merge pull request #28648 from KoBeWi/substr-1 | Rémi Verschelde | |
Make second parameter of substr optional | |||
2019-06-19 | Merge pull request #29598 from GodotExplorer/uri-encode | Rémi Verschelde | |
Expose String.http_escape and String.http_unescape | |||
2019-06-18 | Unexpose subclasses of ResourceFormatLoader and -Saver | Rémi Verschelde | |
ResourceFormatLoader and ResourceFormatSaver are meant to be overridden to add support for different formats in ResourceLoader and ResourceSaver. Those should be exposed as they can be overridden in plugins. On the other hand, all predefined subclasses of those two base classes are only meant to register support for new file and resource types, but should not and cannot be used directly from script, so they should not be exposed. Also unexposed ResourceImporterOGGVorbis (and thus its base class ResourceImporter) which are editor-only. | |||
2019-06-18 | Merge pull request #29862 from Chaosus/fix_astar_crash | Yuri Roubinsky | |
Fix AStar set/is_point_disabled crash | |||
2019-06-18 | Fix AStar set/is_point_disabled crash | Chaosus | |
2019-06-17 | Merge pull request #29752 from bruvzg/window_size_limits | Rémi Verschelde | |
Add ability to limit maximum/minimum window size. | |||
2019-06-16 | i18n: Fix extract.py support for new TTRC | Rémi Verschelde | |
Also make compatible with Python 3. | |||
2019-06-15 | Add ability to limit maximum/minimum window size. | bruvzg | |
2019-06-14 | Merge pull request #29735 from sparkart/master | Rémi Verschelde | |
Limit Physics Process FPS above 0 | |||
2019-06-13 | Merge pull request #29488 from Daw11/astar-remove-node | Rémi Verschelde | |
Fix the performance of remove_point of AStar | |||
2019-06-13 | Limit Physics Process FPS above 0 | Emmanuel Barroga | |
Resolves: #19734 | |||
2019-06-13 | Added constants for the main buttons and axis used in VR | Bastiaan Olij | |
2019-06-12 | Merge pull request #29702 from KoBeWi/fix_random_crash | Rémi Verschelde | |
Validate parameters of randi_range() | |||
2019-06-12 | Validate parameters of randi_range() | Tomasz Chabora | |
2019-06-12 | Merge pull request #29616 from Calinou/humanize-size-clearer-rounding | Rémi Verschelde | |
Make humanized size rounding clearer by padding decimals with zeroes | |||
2019-06-12 | Merge pull request #27193 from toasteater/fix/pcg-randf | Rémi Verschelde | |
Improved uniformity of RandomPCG::randf. | |||
2019-06-12 | Merge pull request #29615 from Calinou/fix-editor-monitor-large-sizes | Rémi Verschelde | |
Fix display of large sizes in the editor monitors | |||
2019-06-12 | Merge pull request #29583 from Toshiwoz/master | Rémi Verschelde | |
Fix Vector3 slerp method by normalizing cross product | |||
2019-06-12 | Merge pull request #29465 from bruvzg/per_pixel_transp_impr | Rémi Verschelde | |
Removes redundant "splash" setting, improves per pixel transparency documentation. |