mirror of
https://github.com/Palakis/obs-websocket.git
synced 2024-08-30 18:12:16 +00:00
general: version bump
This commit is contained in:
parent
e2d261259d
commit
4ada388828
@ -635,7 +635,7 @@
|
||||
<key>OVERWRITE_PERMISSIONS</key>
|
||||
<false/>
|
||||
<key>VERSION</key>
|
||||
<string>4.2.1</string>
|
||||
<string>4.3.0</string>
|
||||
</dict>
|
||||
<key>PROJECT_COMMENTS</key>
|
||||
<dict>
|
||||
|
@ -2,8 +2,8 @@
|
||||
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
||||
|
||||
#define MyAppName "obs-websocket"
|
||||
#define MyAppVersion "4.2.1"
|
||||
#define MyAppPublisher "Stéphane Lepin"
|
||||
#define MyAppVersion "4.3.0"
|
||||
#define MyAppPublisher "St<EFBFBD>phane Lepin"
|
||||
#define MyAppURL "http://github.com/Palakis/obs-websocket"
|
||||
|
||||
[Setup]
|
||||
|
@ -13,7 +13,7 @@
|
||||
* @return {String} `obs-websocket-version` obs-websocket plugin version.
|
||||
* @return {String} `obs-studio-version` OBS Studio program version.
|
||||
* @return {String} `available-requests` List of available request types, formatted as a comma-separated list string (e.g. : "Method1,Method2,Method3").
|
||||
*
|
||||
*
|
||||
* @api requests
|
||||
* @name GetVersion
|
||||
* @category general
|
||||
@ -109,7 +109,7 @@ void WSRequestHandler::HandleAuthenticate(WSRequestHandler* req) {
|
||||
* @api requests
|
||||
* @name SetHeartbeat
|
||||
* @category general
|
||||
* @since unreleased
|
||||
* @since 4.3.0
|
||||
*/
|
||||
void WSRequestHandler::HandleSetHeartbeat(WSRequestHandler* req) {
|
||||
if (!req->hasField("enable")) {
|
||||
@ -134,7 +134,7 @@ void WSRequestHandler::HandleAuthenticate(WSRequestHandler* req) {
|
||||
* @api requests
|
||||
* @name SetFilenameFormatting
|
||||
* @category general
|
||||
* @since unreleased
|
||||
* @since 4.3.0
|
||||
*/
|
||||
void WSRequestHandler::HandleSetFilenameFormatting(WSRequestHandler* req) {
|
||||
if (!req->hasField("filename-formatting")) {
|
||||
@ -159,7 +159,7 @@ void WSRequestHandler::HandleSetFilenameFormatting(WSRequestHandler* req) {
|
||||
* @api requests
|
||||
* @name GetFilenameFormatting
|
||||
* @category general
|
||||
* @since unreleased
|
||||
* @since 4.3.0
|
||||
*/
|
||||
void WSRequestHandler::HandleGetFilenameFormatting(WSRequestHandler* req) {
|
||||
OBSDataAutoRelease response = obs_data_create();
|
||||
|
@ -29,7 +29,7 @@
|
||||
* @api requests
|
||||
* @name GetSceneItemProperties
|
||||
* @category scene items
|
||||
* @since unreleased
|
||||
* @since 4.3.0
|
||||
*/
|
||||
void WSRequestHandler::HandleGetSceneItemProperties(WSRequestHandler* req) {
|
||||
if (!req->hasField("item")) {
|
||||
@ -155,7 +155,7 @@ void WSRequestHandler::HandleGetSceneItemProperties(WSRequestHandler* req) {
|
||||
* @api requests
|
||||
* @name SetSceneItemProperties
|
||||
* @category scene items
|
||||
* @since unreleased
|
||||
* @since 4.3.0
|
||||
*/
|
||||
void WSRequestHandler::HandleSetSceneItemProperties(WSRequestHandler* req) {
|
||||
if (!req->hasField("item")) {
|
||||
@ -376,7 +376,7 @@ void WSRequestHandler::HandleResetSceneItem(WSRequestHandler* req) {
|
||||
* @name SetSceneItemRender
|
||||
* @category scene items
|
||||
* @since 0.3
|
||||
* @deprecated Since unreleased. Prefer the use of SetSceneItemProperties.
|
||||
* @deprecated Since 4.3.0. Prefer the use of SetSceneItemProperties.
|
||||
*/
|
||||
void WSRequestHandler::HandleSetSceneItemRender(WSRequestHandler* req) {
|
||||
if (!req->hasField("source") ||
|
||||
@ -425,7 +425,7 @@ void WSRequestHandler::HandleSetSceneItemRender(WSRequestHandler* req) {
|
||||
* @name SetSceneItemPosition
|
||||
* @category scene items
|
||||
* @since 4.0.0
|
||||
* @deprecated Since unreleased. Prefer the use of SetSceneItemProperties.
|
||||
* @deprecated Since 4.3.0. Prefer the use of SetSceneItemProperties.
|
||||
*/
|
||||
void WSRequestHandler::HandleSetSceneItemPosition(WSRequestHandler* req) {
|
||||
if (!req->hasField("item") ||
|
||||
@ -474,7 +474,7 @@ void WSRequestHandler::HandleSetSceneItemPosition(WSRequestHandler* req) {
|
||||
* @name SetSceneItemTransform
|
||||
* @category scene items
|
||||
* @since 4.0.0
|
||||
* @deprecated Since unreleased. Prefer the use of SetSceneItemProperties.
|
||||
* @deprecated Since 4.3.0. Prefer the use of SetSceneItemProperties.
|
||||
*/
|
||||
void WSRequestHandler::HandleSetSceneItemTransform(WSRequestHandler* req) {
|
||||
if (!req->hasField("item") ||
|
||||
@ -529,7 +529,7 @@ void WSRequestHandler::HandleSetSceneItemTransform(WSRequestHandler* req) {
|
||||
* @name SetSceneItemCrop
|
||||
* @category scene items
|
||||
* @since 4.1.0
|
||||
* @deprecated Since unreleased. Prefer the use of SetSceneItemProperties.
|
||||
* @deprecated Since 4.3.0. Prefer the use of SetSceneItemProperties.
|
||||
*/
|
||||
void WSRequestHandler::HandleSetSceneItemCrop(WSRequestHandler* req) {
|
||||
if (!req->hasField("item")) {
|
||||
|
@ -14,7 +14,7 @@
|
||||
* @api requests
|
||||
* @name GetSourcesList
|
||||
* @category sources
|
||||
* @since unreleased
|
||||
* @since 4.3.0
|
||||
*/
|
||||
void WSRequestHandler::HandleGetSourcesList(WSRequestHandler* req) {
|
||||
OBSDataArrayAutoRelease sourcesArray = obs_data_array_create();
|
||||
@ -81,7 +81,7 @@ void WSRequestHandler::HandleGetSourcesList(WSRequestHandler* req) {
|
||||
* @api requests
|
||||
* @name GetSourcesTypesList
|
||||
* @category sources
|
||||
* @since unreleased
|
||||
* @since 4.3.0
|
||||
*/
|
||||
void WSRequestHandler::HandleGetSourceTypesList(WSRequestHandler* req) {
|
||||
OBSDataArrayAutoRelease idsArray = obs_data_array_create();
|
||||
@ -399,7 +399,7 @@ void WSRequestHandler::HandleGetSyncOffset(WSRequestHandler* req) {
|
||||
* @api requests
|
||||
* @name GetSourceSettings
|
||||
* @category sources
|
||||
* @since unreleased
|
||||
* @since 4.3.0
|
||||
*/
|
||||
void WSRequestHandler::HandleGetSourceSettings(WSRequestHandler* req) {
|
||||
if (!req->hasField("sourceName")) {
|
||||
@ -447,7 +447,7 @@ void WSRequestHandler::HandleGetSourceSettings(WSRequestHandler* req) {
|
||||
* @api requests
|
||||
* @name SetSourceSettings
|
||||
* @category sources
|
||||
* @since unreleased
|
||||
* @since 4.3.0
|
||||
*/
|
||||
void WSRequestHandler::HandleSetSourceSettings(WSRequestHandler* req) {
|
||||
if (!req->hasField("sourceName") || !req->hasField("sourceSettings")) {
|
||||
|
@ -39,7 +39,7 @@ using OBSOutputAutoRelease =
|
||||
OBSRef<obs_output_t*, ___output_dummy_addref, obs_output_release>;
|
||||
|
||||
#define PROP_AUTHENTICATED "wsclient_authenticated"
|
||||
#define OBS_WEBSOCKET_VERSION "4.2.1"
|
||||
#define OBS_WEBSOCKET_VERSION "4.3.0"
|
||||
|
||||
#define blog(level, msg, ...) blog(level, "[obs-websocket] " msg, ##__VA_ARGS__)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user