├── .clang-format ├── .gersemirc ├── .github ├── FUNDING.yml ├── actions │ ├── build-plugin │ │ └── action.yaml │ ├── check-changes │ │ └── action.yaml │ ├── package-plugin │ │ └── action.yaml │ ├── run-clang-format │ │ └── action.yaml │ ├── run-gersemi │ │ └── action.yaml │ └── setup-macos-codesigning │ │ └── action.yaml ├── copilot-instructions.md ├── scripts │ ├── .Aptfile │ ├── .Brewfile │ ├── Build-Windows.ps1 │ ├── Package-Windows.ps1 │ ├── build-macos │ ├── build-ubuntu │ ├── package-macos │ ├── package-ubuntu │ ├── utils.pwsh │ │ ├── Ensure-Location.ps1 │ │ ├── Expand-ArchiveExt.ps1 │ │ ├── Install-BuildDependencies.ps1 │ │ ├── Invoke-External.ps1 │ │ └── Logger.ps1 │ └── utils.zsh │ │ ├── check_macos │ │ ├── check_ubuntu │ │ ├── log_debug │ │ ├── log_error │ │ ├── log_group │ │ ├── log_info │ │ ├── log_output │ │ ├── log_status │ │ ├── log_warning │ │ ├── mkcd │ │ ├── set_loglevel │ │ └── setup_ubuntu └── workflows │ ├── build-project.yaml │ ├── check-format.yaml │ ├── dispatch.yaml │ ├── pr-pull.yaml │ └── push.yaml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CMakePresets.json ├── LICENSE ├── README.md ├── cmake ├── BuildInja.cmake ├── BuildJSONCONS.cmake ├── BuildLexbor.cmake ├── BuildMyCurl.cmake ├── BuildPugiXML.cmake ├── FetchWebsocketpp.cmake ├── common │ ├── bootstrap.cmake │ ├── buildnumber.cmake │ ├── buildspec_common.cmake │ ├── ccache.cmake │ ├── compiler_common.cmake │ ├── helpers_common.cmake │ └── osconfig.cmake ├── linux │ ├── compilerconfig.cmake │ ├── defaults.cmake │ ├── helpers.cmake │ └── toolchains │ │ ├── aarch64-linux-clang.cmake │ │ ├── aarch64-linux-gcc.cmake │ │ ├── x86_64-linux-clang.cmake │ │ └── x86_64-linux-gcc.cmake ├── macos │ ├── buildspec.cmake │ ├── compilerconfig.cmake │ ├── defaults.cmake │ ├── helpers.cmake │ ├── resources │ │ ├── ccache-launcher-c.in │ │ ├── ccache-launcher-cxx.in │ │ ├── create-package.cmake.in │ │ ├── distribution.in │ │ └── installer-macos.pkgproj.in │ └── xcode.cmake └── windows │ ├── buildspec.cmake │ ├── compilerconfig.cmake │ ├── defaults.cmake │ ├── helpers.cmake │ └── resources │ ├── installer-Windows.iss.in │ └── resource.rc.in ├── data └── locale │ └── en-US.ini ├── src ├── mapping-data.cpp ├── mapping-data.h ├── obs-source-util.cpp ├── obs-source-util.h ├── parsers │ ├── CMakeLists.txt │ ├── binary-data.cpp │ ├── errors.cpp │ ├── errors.h │ ├── html.cpp │ ├── jsonpath.cpp │ ├── jsonpointer.cpp │ ├── key-value.cpp │ ├── parsers.h │ ├── regex.cpp │ └── xml.cpp ├── plugin-main.c ├── plugin-support.c.in ├── plugin-support.h ├── request-data.cpp ├── request-data.h ├── string-util.h ├── ui │ ├── CollapseButton.h │ ├── CustomTextDocument.cpp │ ├── CustomTextDocument.h │ ├── InputWidget.cpp │ ├── InputWidget.h │ ├── InputsDialog.cpp │ ├── InputsDialog.h │ ├── RequestBuilder.cpp │ ├── RequestBuilder.h │ ├── inputsdialog.ui │ ├── inputwidget.ui │ ├── obs-ui-utils.cpp │ ├── obs-ui-utils.h │ ├── outputmapping.cpp │ ├── outputmapping.h │ ├── outputmapping.ui │ ├── requestbuilder.ui │ ├── text-render-helper.cpp │ └── text-render-helper.h ├── url-source-callbacks.cpp ├── url-source-callbacks.h ├── url-source-data.h ├── url-source-info.c ├── url-source-thread.cpp ├── url-source-thread.h ├── url-source.cpp ├── url-source.h ├── websocket-client.cpp └── websocket-client.h └── vendor └── nlohmann-json └── nlohmann └── json.hpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.clang-format -------------------------------------------------------------------------------- /.gersemirc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.gersemirc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [royshil] 2 | -------------------------------------------------------------------------------- /.github/actions/build-plugin/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/actions/build-plugin/action.yaml -------------------------------------------------------------------------------- /.github/actions/check-changes/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/actions/check-changes/action.yaml -------------------------------------------------------------------------------- /.github/actions/package-plugin/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/actions/package-plugin/action.yaml -------------------------------------------------------------------------------- /.github/actions/run-clang-format/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/actions/run-clang-format/action.yaml -------------------------------------------------------------------------------- /.github/actions/run-gersemi/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/actions/run-gersemi/action.yaml -------------------------------------------------------------------------------- /.github/actions/setup-macos-codesigning/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/actions/setup-macos-codesigning/action.yaml -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/scripts/.Aptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/scripts/.Aptfile -------------------------------------------------------------------------------- /.github/scripts/.Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/scripts/.Brewfile -------------------------------------------------------------------------------- /.github/scripts/Build-Windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/scripts/Build-Windows.ps1 -------------------------------------------------------------------------------- /.github/scripts/Package-Windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/scripts/Package-Windows.ps1 -------------------------------------------------------------------------------- /.github/scripts/build-macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/scripts/build-macos -------------------------------------------------------------------------------- /.github/scripts/build-ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/scripts/build-ubuntu -------------------------------------------------------------------------------- /.github/scripts/package-macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/scripts/package-macos -------------------------------------------------------------------------------- /.github/scripts/package-ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/scripts/package-ubuntu -------------------------------------------------------------------------------- /.github/scripts/utils.pwsh/Ensure-Location.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/scripts/utils.pwsh/Ensure-Location.ps1 -------------------------------------------------------------------------------- /.github/scripts/utils.pwsh/Expand-ArchiveExt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/scripts/utils.pwsh/Expand-ArchiveExt.ps1 -------------------------------------------------------------------------------- /.github/scripts/utils.pwsh/Install-BuildDependencies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/scripts/utils.pwsh/Install-BuildDependencies.ps1 -------------------------------------------------------------------------------- /.github/scripts/utils.pwsh/Invoke-External.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/scripts/utils.pwsh/Invoke-External.ps1 -------------------------------------------------------------------------------- /.github/scripts/utils.pwsh/Logger.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/scripts/utils.pwsh/Logger.ps1 -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/check_macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/scripts/utils.zsh/check_macos -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/check_ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/scripts/utils.zsh/check_ubuntu -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/log_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/scripts/utils.zsh/log_debug -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/log_error: -------------------------------------------------------------------------------- 1 | print -u2 -PR "::error::%F{1} ✖︎%f ${@}" 2 | -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/log_group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/scripts/utils.zsh/log_group -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/log_info: -------------------------------------------------------------------------------- 1 | print -PR "%F{4} =>%f %B${@}%b" 2 | -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/log_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/scripts/utils.zsh/log_output -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/log_status: -------------------------------------------------------------------------------- 1 | print -PR "%F{2} >%f ${@}" 2 | -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/log_warning: -------------------------------------------------------------------------------- 1 | print -PR "::warning::%F{3} => ${@}%f" 2 | -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/mkcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/scripts/utils.zsh/mkcd -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/set_loglevel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/scripts/utils.zsh/set_loglevel -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/setup_ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/scripts/utils.zsh/setup_ubuntu -------------------------------------------------------------------------------- /.github/workflows/build-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/workflows/build-project.yaml -------------------------------------------------------------------------------- /.github/workflows/check-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/workflows/check-format.yaml -------------------------------------------------------------------------------- /.github/workflows/dispatch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/workflows/dispatch.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-pull.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/workflows/pr-pull.yaml -------------------------------------------------------------------------------- /.github/workflows/push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.github/workflows/push.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/README.md -------------------------------------------------------------------------------- /cmake/BuildInja.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/BuildInja.cmake -------------------------------------------------------------------------------- /cmake/BuildJSONCONS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/BuildJSONCONS.cmake -------------------------------------------------------------------------------- /cmake/BuildLexbor.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/BuildLexbor.cmake -------------------------------------------------------------------------------- /cmake/BuildMyCurl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/BuildMyCurl.cmake -------------------------------------------------------------------------------- /cmake/BuildPugiXML.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/BuildPugiXML.cmake -------------------------------------------------------------------------------- /cmake/FetchWebsocketpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/FetchWebsocketpp.cmake -------------------------------------------------------------------------------- /cmake/common/bootstrap.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/common/bootstrap.cmake -------------------------------------------------------------------------------- /cmake/common/buildnumber.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/common/buildnumber.cmake -------------------------------------------------------------------------------- /cmake/common/buildspec_common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/common/buildspec_common.cmake -------------------------------------------------------------------------------- /cmake/common/ccache.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/common/ccache.cmake -------------------------------------------------------------------------------- /cmake/common/compiler_common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/common/compiler_common.cmake -------------------------------------------------------------------------------- /cmake/common/helpers_common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/common/helpers_common.cmake -------------------------------------------------------------------------------- /cmake/common/osconfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/common/osconfig.cmake -------------------------------------------------------------------------------- /cmake/linux/compilerconfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/linux/compilerconfig.cmake -------------------------------------------------------------------------------- /cmake/linux/defaults.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/linux/defaults.cmake -------------------------------------------------------------------------------- /cmake/linux/helpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/linux/helpers.cmake -------------------------------------------------------------------------------- /cmake/linux/toolchains/aarch64-linux-clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/linux/toolchains/aarch64-linux-clang.cmake -------------------------------------------------------------------------------- /cmake/linux/toolchains/aarch64-linux-gcc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/linux/toolchains/aarch64-linux-gcc.cmake -------------------------------------------------------------------------------- /cmake/linux/toolchains/x86_64-linux-clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/linux/toolchains/x86_64-linux-clang.cmake -------------------------------------------------------------------------------- /cmake/linux/toolchains/x86_64-linux-gcc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/linux/toolchains/x86_64-linux-gcc.cmake -------------------------------------------------------------------------------- /cmake/macos/buildspec.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/macos/buildspec.cmake -------------------------------------------------------------------------------- /cmake/macos/compilerconfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/macos/compilerconfig.cmake -------------------------------------------------------------------------------- /cmake/macos/defaults.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/macos/defaults.cmake -------------------------------------------------------------------------------- /cmake/macos/helpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/macos/helpers.cmake -------------------------------------------------------------------------------- /cmake/macos/resources/ccache-launcher-c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/macos/resources/ccache-launcher-c.in -------------------------------------------------------------------------------- /cmake/macos/resources/ccache-launcher-cxx.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/macos/resources/ccache-launcher-cxx.in -------------------------------------------------------------------------------- /cmake/macos/resources/create-package.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/macos/resources/create-package.cmake.in -------------------------------------------------------------------------------- /cmake/macos/resources/distribution.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/macos/resources/distribution.in -------------------------------------------------------------------------------- /cmake/macos/resources/installer-macos.pkgproj.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/macos/resources/installer-macos.pkgproj.in -------------------------------------------------------------------------------- /cmake/macos/xcode.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/macos/xcode.cmake -------------------------------------------------------------------------------- /cmake/windows/buildspec.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/windows/buildspec.cmake -------------------------------------------------------------------------------- /cmake/windows/compilerconfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/windows/compilerconfig.cmake -------------------------------------------------------------------------------- /cmake/windows/defaults.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/windows/defaults.cmake -------------------------------------------------------------------------------- /cmake/windows/helpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/windows/helpers.cmake -------------------------------------------------------------------------------- /cmake/windows/resources/installer-Windows.iss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/windows/resources/installer-Windows.iss.in -------------------------------------------------------------------------------- /cmake/windows/resources/resource.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/cmake/windows/resources/resource.rc.in -------------------------------------------------------------------------------- /data/locale/en-US.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/data/locale/en-US.ini -------------------------------------------------------------------------------- /src/mapping-data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/mapping-data.cpp -------------------------------------------------------------------------------- /src/mapping-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/mapping-data.h -------------------------------------------------------------------------------- /src/obs-source-util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/obs-source-util.cpp -------------------------------------------------------------------------------- /src/obs-source-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/obs-source-util.h -------------------------------------------------------------------------------- /src/parsers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/parsers/CMakeLists.txt -------------------------------------------------------------------------------- /src/parsers/binary-data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/parsers/binary-data.cpp -------------------------------------------------------------------------------- /src/parsers/errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/parsers/errors.cpp -------------------------------------------------------------------------------- /src/parsers/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/parsers/errors.h -------------------------------------------------------------------------------- /src/parsers/html.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/parsers/html.cpp -------------------------------------------------------------------------------- /src/parsers/jsonpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/parsers/jsonpath.cpp -------------------------------------------------------------------------------- /src/parsers/jsonpointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/parsers/jsonpointer.cpp -------------------------------------------------------------------------------- /src/parsers/key-value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/parsers/key-value.cpp -------------------------------------------------------------------------------- /src/parsers/parsers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/parsers/parsers.h -------------------------------------------------------------------------------- /src/parsers/regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/parsers/regex.cpp -------------------------------------------------------------------------------- /src/parsers/xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/parsers/xml.cpp -------------------------------------------------------------------------------- /src/plugin-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/plugin-main.c -------------------------------------------------------------------------------- /src/plugin-support.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/plugin-support.c.in -------------------------------------------------------------------------------- /src/plugin-support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/plugin-support.h -------------------------------------------------------------------------------- /src/request-data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/request-data.cpp -------------------------------------------------------------------------------- /src/request-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/request-data.h -------------------------------------------------------------------------------- /src/string-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/string-util.h -------------------------------------------------------------------------------- /src/ui/CollapseButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/ui/CollapseButton.h -------------------------------------------------------------------------------- /src/ui/CustomTextDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/ui/CustomTextDocument.cpp -------------------------------------------------------------------------------- /src/ui/CustomTextDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/ui/CustomTextDocument.h -------------------------------------------------------------------------------- /src/ui/InputWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/ui/InputWidget.cpp -------------------------------------------------------------------------------- /src/ui/InputWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/ui/InputWidget.h -------------------------------------------------------------------------------- /src/ui/InputsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/ui/InputsDialog.cpp -------------------------------------------------------------------------------- /src/ui/InputsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/ui/InputsDialog.h -------------------------------------------------------------------------------- /src/ui/RequestBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/ui/RequestBuilder.cpp -------------------------------------------------------------------------------- /src/ui/RequestBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/ui/RequestBuilder.h -------------------------------------------------------------------------------- /src/ui/inputsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/ui/inputsdialog.ui -------------------------------------------------------------------------------- /src/ui/inputwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/ui/inputwidget.ui -------------------------------------------------------------------------------- /src/ui/obs-ui-utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/ui/obs-ui-utils.cpp -------------------------------------------------------------------------------- /src/ui/obs-ui-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/ui/obs-ui-utils.h -------------------------------------------------------------------------------- /src/ui/outputmapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/ui/outputmapping.cpp -------------------------------------------------------------------------------- /src/ui/outputmapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/ui/outputmapping.h -------------------------------------------------------------------------------- /src/ui/outputmapping.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/ui/outputmapping.ui -------------------------------------------------------------------------------- /src/ui/requestbuilder.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/ui/requestbuilder.ui -------------------------------------------------------------------------------- /src/ui/text-render-helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/ui/text-render-helper.cpp -------------------------------------------------------------------------------- /src/ui/text-render-helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/ui/text-render-helper.h -------------------------------------------------------------------------------- /src/url-source-callbacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/url-source-callbacks.cpp -------------------------------------------------------------------------------- /src/url-source-callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/url-source-callbacks.h -------------------------------------------------------------------------------- /src/url-source-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/url-source-data.h -------------------------------------------------------------------------------- /src/url-source-info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/url-source-info.c -------------------------------------------------------------------------------- /src/url-source-thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/url-source-thread.cpp -------------------------------------------------------------------------------- /src/url-source-thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/url-source-thread.h -------------------------------------------------------------------------------- /src/url-source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/url-source.cpp -------------------------------------------------------------------------------- /src/url-source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/url-source.h -------------------------------------------------------------------------------- /src/websocket-client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/websocket-client.cpp -------------------------------------------------------------------------------- /src/websocket-client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/src/websocket-client.h -------------------------------------------------------------------------------- /vendor/nlohmann-json/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royshil/obs-urlsource/HEAD/vendor/nlohmann-json/nlohmann/json.hpp --------------------------------------------------------------------------------