Compare commits

..

3 Commits

Author SHA1 Message Date
c4cf817042 split at full stop 2023-10-09 22:34:05 +01:00
ba5da8dfef upd obsbasic hotkey list in tests 2023-10-09 22:29:18 +01:00
83577e2d61 adds projector methods with a deprecation warning
patch bump

closes #35
2023-10-09 22:06:18 +01:00
3 changed files with 32 additions and 19 deletions

View File

@ -1946,16 +1946,24 @@ class ReqClient:
""" """
Opens a projector for a specific output video mix. Opens a projector for a specific output video mix.
:param videoMixType: Type of mix to open The available mix types are:
:type videoMixType: str OBS_WEBSOCKET_VIDEO_MIX_TYPE_PREVIEW
:param monitorIndex: Monitor index, use GetMonitorList to obtain index OBS_WEBSOCKET_VIDEO_MIX_TYPE_PROGRAM
:type monitorIndex: int OBS_WEBSOCKET_VIDEO_MIX_TYPE_MULTIVIEW
:param projectorGeometry: Size/Position data for a windowed projector, in Qt Base64 encoded format. Mutually exclusive with monitorIndex
:type projectorGeometry: str :param video_mix_type: Type of mix to open.
:type video_mix_type: str
:param monitor_index: Monitor index, use GetMonitorList to obtain index
:type monitor_index: int
:param projector_geometry:
Size/Position data for a windowed projector, in Qt Base64 encoded format.
Mutually exclusive with monitorIndex
:type projector_geometry: str
""" """
warn( warn(
"open_video_mix_projector request serves to provide feature parity with 4.x. It is very likely to be changed/deprecated in a future release.", "open_video_mix_projector request serves to provide feature parity with 4.x. "
"It is very likely to be changed/deprecated in a future release.",
DeprecationWarning, DeprecationWarning,
stacklevel=2, stacklevel=2,
) )
@ -1972,16 +1980,19 @@ class ReqClient:
""" """
Opens a projector for a source. Opens a projector for a source.
:param sourceName: Name of the source to open a projector for :param source_name: Name of the source to open a projector for
:type sourceName: str :type source_name: str
:param monitorIndex: Monitor index, use GetMonitorList to obtain index :param monitor_index: Monitor index, use GetMonitorList to obtain index
:type monitorIndex: int :type monitor_index: int
:param projectorGeometry: Size/Position data for a windowed projector, in Qt Base64 encoded format. Mutually exclusive with monitorIndex :param projector_geometry:
:type projectorGeometry: str Size/Position data for a windowed projector, in Qt Base64 encoded format.
Mutually exclusive with monitorIndex
:type projector_geometry: str
""" """
warn( warn(
"open_source_projector request serves to provide feature parity with 4.x. It is very likely to be changed/deprecated in a future release.", "open_source_projector request serves to provide feature parity with 4.x. "
"It is very likely to be changed/deprecated in a future release.",
DeprecationWarning, DeprecationWarning,
stacklevel=2, stacklevel=2,
) )

View File

@ -1 +1 @@
version = "1.6.0" version = "1.6.1"

View File

@ -15,9 +15,9 @@ class TestRequests:
resp = req_cl.get_hot_key_list() resp = req_cl.get_hot_key_list()
obsbasic_hotkey_list = [ obsbasic_hotkey_list = [
"OBSBasic.SelectScene", "OBSBasic.SelectScene",
"OBSBasic.SelectScene", "OBSBasic.QuickTransition.1",
"OBSBasic.SelectScene", "OBSBasic.QuickTransition.2",
"OBSBasic.SelectScene", "OBSBasic.QuickTransition.3",
"OBSBasic.StartStreaming", "OBSBasic.StartStreaming",
"OBSBasic.StopStreaming", "OBSBasic.StopStreaming",
"OBSBasic.ForceStopStreaming", "OBSBasic.ForceStopStreaming",
@ -25,15 +25,17 @@ class TestRequests:
"OBSBasic.StopRecording", "OBSBasic.StopRecording",
"OBSBasic.PauseRecording", "OBSBasic.PauseRecording",
"OBSBasic.UnpauseRecording", "OBSBasic.UnpauseRecording",
"OBSBasic.SplitFile",
"OBSBasic.StartReplayBuffer", "OBSBasic.StartReplayBuffer",
"OBSBasic.StopReplayBuffer", "OBSBasic.StopReplayBuffer",
"OBSBasic.StartVirtualCam", "OBSBasic.StartVirtualCam",
"OBSBasic.StopVirtualCam", "OBSBasic.StopVirtualCam",
"OBSBasic.EnablePreview", "OBSBasic.EnablePreview",
"OBSBasic.DisablePreview", "OBSBasic.DisablePreview",
"OBSBasic.EnablePreviewProgram",
"OBSBasic.DisablePreviewProgram",
"OBSBasic.ShowContextBar", "OBSBasic.ShowContextBar",
"OBSBasic.HideContextBar", "OBSBasic.HideContextBar",
"OBSBasic.TogglePreviewProgram",
"OBSBasic.Transition", "OBSBasic.Transition",
"OBSBasic.ResetStats", "OBSBasic.ResetStats",
"OBSBasic.Screenshot", "OBSBasic.Screenshot",