- Refactor all internal variables to camelCase
- Use obs pointers with *AutoRelease classes for automatic refcounting
- Important: some pointers require prior investigation to determine if refcounting is needed, or which
between OBSRef and *AutoRelease should be used.
* Added a Heartbeat in WSEvents (.cpp and .h updated)
Lines where the coded is added are marked with "//mod-0x =============" (x denotes a number).
* Updated the Heartbeat:
- Default it is off, and via JSON request can be switched on.
- The Heartbeat has configurable elements. Each individual element can be requested via a JSON request to be added to the Heartbeat.
- Maximum elements are in this example JSON update:
{
"current-profile": "#2-PGH",
"current-scene": "#2-HG",
"pulse": true,
"recording": false,
"streaming": false,
"total-record-time": 0,
"total-stream-time": 0,
"update-type": "Heartbeat"
}
* Cleaning
* Process all Palakis his comment/advice, and added 3 key/value pairs.
* Processed cleaning up comments as proposed by Stephane.
* Still found tabs in the comment header, and replaced by spaces.
* FUNCTIONAL MODIFICATION:
- Removed selective content of Heartbeat, and show all key/value parameters.
- Only request left is "on" or "off" selection of heartbeat.
FIX:
- Show streaming/recording related data only when streaming/recording is active, due to OBS showing wrong values when not active.
* Changed request type to start the Heartbeat to a boolean parameter.
* Delete ZERO_CHECK.log
* Delete obs-websocket_autogen.log
* Delete obs-websocket.log
* Adding support for changing streaming server settings
* Updates after initial code review for customized rtmp settings
* Updating PROTOCOL.MD documentment for streaming service settings
* Changes based on code review