summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-07-01Environment: Refactor code for readability + moreRémi Verschelde
- Makes all boolean setters/getters consistent. - Fixes bug where `glow_hdr_bleed_scale` was not used. - Split CameraEffects to their own source file. - Reorder all Environment method and properties declarations, definitions and bindings to be consistent with each other and with the order of property bindings. - Bind missing enum values added with SDFGI. - Remove unused SDFGI enhance_ssr boolean. - Sync doc changes after SDFGI merge and other misc changes.
2020-07-01Merge pull request #40003 from YeldhamDev/tree_scroll_fixRémi Verschelde
Fix Tree's 'scroll_to_item()' not working correctly on some cases
2020-07-01Merge pull request #39985 from Calinou/uppercase-aces-tonemappingRémi Verschelde
Write "Aces" tonemapping in uppercase as it's an acronym
2020-06-30Fix Tree's 'scroll_to_item()' not working correctly on some casesMichael Alexsander
2020-06-30Merge pull request #39988 from bruvzg/macos_app_active_notificationsRémi Verschelde
[macOS] Add application become/resign active notifications.
2020-06-30Merge pull request #39994 from Faless/iteration/os_delayRémi Verschelde
Move frame delaying functions from Main to OS.
2020-06-30Merge pull request #39995 from Faless/js/restore_ci_junRémi Verschelde
Fix RasterizerDummy after SDF GI changes.
2020-06-30Fix RasterizerDummy after SDF GI changes.Fabio Alessandrelli
Re-enable JavaScript CI.
2020-06-30Move frame delaying functions from Main to OS.Fabio Alessandrelli
Will allow specific platforms to override it and avoid blocking on the main/GUI thread.
2020-06-30Merge pull request #39993 from reduz/make-dialogs-exclusiveRémi Verschelde
Make dialogs exclusive by default, fixes #37732
2020-06-30Make dialogs exclusive by default, fixes #37732Juan Linietsky
Also fix on set_visible, not creating exclusive children as it should.
2020-06-30Merge pull request #39990 from follower/revert-fuzzy-help-searchRémi Verschelde
Revert "Adds fuzzy search for help search dialog"
2020-07-01Revert "Adds fuzzy search for help search dialog"follower
This reverts commit 481dbceed0d0610a6c689e3be448b7953994763e. Current fuzzy search implementation results in too many non-useful results. Could be re-added after result sort/filter/score functionality is added. See #30072 for example existing implementation. Fixes: #39128 Reverts: #32043 Fixed format style conflicts: editor/editor_help_search.cpp
2020-06-30[macOS] Add application become/resign active notifications.bruvzg
2020-06-30Merge pull request #39986 from reduz/app-inout-notificationRémi Verschelde
Add a separate application focus/in notification
2020-06-30Merge pull request #38920 from paulherman/tgaRémi Verschelde
Expose loading TGA images in Image.
2020-06-30Add a separate application focus/in notification out from Window focus ↵Juan Linietsky
notification.
2020-06-30Write "Aces" tonemapping in uppercase as it's an acronymHugo Locurcio
2020-06-30Merge pull request #35633 from Xrayez/physics-shape-propertyRémi Verschelde
Expose shape property for shape query parameters classes
2020-06-30Merge pull request #39982 from hinlopen/create-dialog-preferredRémi Verschelde
Add Control to preferred types in Create Dialog
2020-06-30Add Control to preferred typesStijn Hinlopen
2020-06-30Merge pull request #39956 from madmiraal/fix-39919Rémi Verschelde
Fix CSG Visual Bug.
2020-06-30Merge pull request #39977 from bruvzg/fix_zip_file_mode_againRémi Verschelde
[macOS export] Set correct external file attributes, and creation time.
2020-06-30Merge pull request #39953 from neikeq/fix-missing-defval-regr-from-39827Rémi Verschelde
Fix missing DEFVAL in RenderingDevice.storage_buffer_create
2020-06-30[macOS export] Set correct external file attributes (Unix mode), and ↵bruvzg
creation time.
2020-06-29Merge pull request #39302 from simpuid/custom-monitorsRémi Verschelde
Added Custom Performance Monitor
2020-06-29Merge pull request #39894 from madmiraal/fix-39768Rémi Verschelde
Trigger broadphase update when changing collision layer/mask.
2020-06-29Use is_equal_approx() instead of vertex_snap when checking if ray isMarcel Admiraal
colliding with equiplanar CSG faces.
2020-06-29Create degenerate triangles when inserting an edge into a CSG face.Marcel Admiraal
They will be deleted when the faces are merged, but their edges are needed for merging faces.
2020-06-29Fix missing DEFVAL in RenderingDevice.storage_buffer_createIgnacio Etcheverry
2020-06-29Merge pull request #39934 from starryalley/fix-videoplayer-raceRémi Verschelde
VideoPlayer: fix possible race condition
2020-06-29Merge pull request #39945 from akien-mga/x11-XGetWindowProperty-memleakRémi Verschelde
X11: Ensure XGetWindowProperty data gets freed
2020-06-29Added Custom Performance Monitor and feature to read intermediate values of ↵simpu
Monitor Custom monitors can be added/removed/checked using `Performance.add_custom_monitor`/`Performance.remove_custom_monitor`/`Performance.has_custom_monitor` The value can be viewed in the `Monitor` tab of Debugger. Text before `/` is used to categorize the custom monitor. `EditorPerformanceProfiler` class is created to separate logic from `ScriptEditorDebugger` User can click on the graph of monitors to read the value at that point. Graph includes intermediate base lines.
2020-06-29X11: Ensure XGetWindowProperty data gets freedRémi Verschelde
And cleanup includes a bit.
2020-06-29Merge pull request #39938 from MCrafterzz/interpolatedcameraRémi Verschelde
Remove unused interpolate camera icon
2020-06-29Merge pull request #39824 from mrushyendra/snap_point_polygonRémi Verschelde
Fix possible accidental duplication of Polygon2D start point
2020-06-29Merge pull request #39922 from KoBeWi/preloadloadRémi Verschelde
Improve the preload and load descriptions
2020-06-29Merge pull request #39935 from mrushyendra/datetime_negativeRémi Verschelde
Fix weekday calculation in get_datetime_from_unix_time for negative times
2020-06-29Fix weekday calculation in get_datetime_from_unix_time for negative timesMaganty Rushyendra
Fix calculation for negative times to ensure Sundays are wrapped around to '0' instead of '7', making it consistent with the output for positive times.
2020-06-29VideoPlayer: fix possible race conditionMark Kuo
In set_stream() we write to 'playback' while accessing the same object in _mix_audio() in audio thread. Protect the 'write' part in set_stream() to avoid possible crash in _mix_audio() function.
2020-06-28Improve the preload and load descriptionsTomasz Chabora
2020-06-28Merge pull request #39916 from reduz/sdfgi-occRémi Verschelde
SDFGI: Slight occlusion improvements.
2020-06-28Slight occlusion improvements.Juan Linietsky
2020-06-28Merge pull request #39904 from m4gr3d/fix_focus_aware_option_masterRémi Verschelde
Fix the logic to enable focus awareness
2020-06-28Merge pull request #39910 from starryalley/fix-videoplayer-file-closeRémi Verschelde
VideoStreamGDNative: close file in cleanup()
2020-06-28VideoStreamGDNative: close file in cleanupMark Kuo
We should close the file handle when we are done.
2020-06-27Fix the logic to enable focus awarenessFredia Huya-Kouadio
2020-06-27Merge pull request #39896 from KoBeWi/image_galleryRémi Verschelde
Generate inspector preview for Image resources
2020-06-27Merge pull request #39885 from hinlopen/improve-quick-openRémi Verschelde
QuickOpen improvements
2020-06-27Generate inspector preview for Image resourcesTomasz Chabora