-
-
Notifications
You must be signed in to change notification settings - Fork 8
Implement provider protocol and enhance OBS property management #30
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
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
ffe64bd
docs(provider): specify the provider protocol
datagutt fa4570d
feat(obs-sys): declare obs_properties_get and obs_property_set_visible
datagutt a5f2953
feat(obs): let modified callbacks see the dialog and toggle visibility
datagutt 358f255
feat(irl-provider): add the plugin side of the provider protocol
datagutt 6211a93
feat(obs-sys): declare obs_property_name and obs_source_get_settings
datagutt be0bea9
feat(obs): hand callbacks their property id, expose a source's saved …
datagutt 3dec925
feat(irl-core): list the built-in providers
datagutt 092e0c9
feat(obs): return a handle from add_text and view a Properties as a P…
datagutt af39fdd
feat(irl-source): add the Provider dropdown and the ingest pickers
datagutt f464edc
build(workspace): assert the rustls provider stays ring
datagutt 3f34bf1
docs(provider): document the Provider dropdown and the crates behind it
datagutt 1451bdf
ci(workflows): move every action to a Node 24 release
datagutt 22db6be
build(deps): update the msvc hint in build-deps.sh
datagutt 922c4a5
chore: rename to IRL Source (it is enough to give credit in the actua…
datagutt 79a7d32
v2.1.0
datagutt 535020a
fix(provider): reject spoofed loopback URLs and keep the session
datagutt c8a4e36
v2.1.1
datagutt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win
Run
tls-providerin CI.Line 72 says that CI runs
make check. The build workflow runs neithermake checknormake tls-provider. A dependency feature change can therefore bypass this new TLS-provider gate in CI. Add amake tls-providerstep to.github/workflows/build.yml, or runmake checkthere.🤖 Prompt for AI Agents