-
Notifications
You must be signed in to change notification settings - Fork 99
Allow for optionally disabling SSL verification. #179
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
kenmcgaugh
wants to merge
32
commits into
AcademySoftwareFoundation:develop
Choose a base branch
from
kenmcgaugh:feature_disable_http_ssl_verify
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Allow for optionally disabling SSL verification. #179
kenmcgaugh
wants to merge
32
commits into
AcademySoftwareFoundation:develop
from
kenmcgaugh:feature_disable_http_ssl_verify
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…f the build directory. Signed-off-by: Philippe Leprince <[email protected]>
Configure proper rpath settings for macOS app bundles to ensure dynamic libraries are correctly located at runtime. This includes setting INSTALL_RPATH and using install_name_tool to fix library paths in both the app bundle and executable. Added a new CMake script to automatically fix library paths after build and updated macdeployqt integration to handle rpath changes for libglobal.dylib. Signed-off-by: Philippe Leprince <[email protected]>
…e wheel with shift modifier. - When using a mouse on MacOS laptops with trackpads, wheel.angleDelta.y always returns 0 when SHIFT is pressed, but the x component changes instead. Use x if y is 0 to enable zooming. - Note that the scrolling trackpad gesture changes the y value as expected. This change handles both cases. - Also limit scaleY between 0.6 and 2.0 to prevent unusable values. Signed-off-by: Philippe Leprince <[email protected]>
…ylib-rpath-in-mac-os-app-bundles 146: Resolve dylib rpath issues in MacOS app bundles
…mySoftwareFoundation#148-macos-timeline-sfift-scrollwheel-fix 148: fix timeline zoom behavior on MacOS laptops
Signed-off-by: Tony Dorfmeister <[email protected]>
…x/annotation-tools Fixes Drawing Annotation Tools
Signed-off-by: Tony Dorfmeister <[email protected]> Signed-off-by: Ted Waine <[email protected]>
Signed-off-by: Ted Waine <[email protected]>
Sync to DNEG internal repo
…ht difference when comparing full-range video to the same content encoded legal-range. Signed-off-by: Ken McGaugh <[email protected]>
…faults to Rec.601. However xSTUDIO was defaulting to Rec.709 when decoding video with unspecified colourspace info. This fixes that discrepancy and and now round-trips with ffmpeg and also matches the behaviour of OpenRV. Signed-off-by: Ken McGaugh <[email protected]>
Signed-off-by: Ken McGaugh <[email protected]>
XsGlobalDragDropHandler.qml: modified to accept "text/plain" for drag-and-drop. XsFileFunctions.qml: modified addMediaFromClipboard() to pass clipboard text through without modification. Previously it was prepending "file://" to every line, preventing custom URI's to be pasted. Note that clipboard text containing file paths still gets handled correctly in session_model_methods_ui.cpp. playlist_actor and timeline_actor: modified to query data_source plugins if a URI with a scheme other than "file", "http", or "https" is passed in. Signed-off-by: Ken McGaugh <[email protected]>
…atio so that clicking on an image in grid compare mode selects the correct media item. Signed-off-by: Ken McGaugh <[email protected]>
…i_pointer_select_media Fix pointer_select_media() on HiDPI device
…eg_colour_fix FFmpeg colour fixes
…ure_custom_thumbnails Feature to allow for custom thumbnail images.
…ure_custom_uri Modifications to allow data_source plugins to handle custom URI's.
Signed-off-by: Ken McGaugh <[email protected]>
4b886d5 to
8cde0df
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Within our internal production network, MacOS devices do not have access to certificates to allow for SSL verification and so all queries to our databases need to have SSL verification disabled. These changes do not affect the behaviour of any existing code, but allow us to create http_client_actor's from our plugins with SSL verification disabled.