Skip to content

Commit f5b2dd3

Browse files
Merge pull request #217 from StartAutomating/obs-fix
obs-powershell 0.2.0.1
2 parents bb515e8 + 00fc1f0 commit f5b2dd3

11 files changed

+386
-322
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
> Like It? [Star It](https://github.com/StartAutomating/obs-powershell)
22
> Love It? [Support It](https://github.com/sponsors/StartAutomating)
33
4+
## obs-powershell 0.2.0.1:
5+
6+
* Fixing `Watch-OBS` (Fixes #216)
7+
* Adding `CONTRIBUTING.md` (Fixes #204)
8+
* Adding `CODE_OF_CONDUCT.md` (Fixes #205)
9+
10+
---
11+
412
## obs-powershell 0.2:
513

614
* So Many Shaders!

CODE_OF_CONDUCT.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Code of Conduct
2+
3+
We have a simple and subjective code of conduct:
4+
5+
1. Be Respectful
6+
2. Be Helpful
7+
3. Do No Harm
8+
9+
Failure to follow the code of conduct may result in lack of support, blocks, or banishment.

CONTRIBUTING.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Contibuting
2+
3+
We welcome suggestions and careful contributions.
4+
5+
To suggest something, please [open an issue](https://github.com/StartAutomating/obs-powershell/issues) or start a [discussion](https://github.com/StartAutomating/obs-powershell/discussion)
6+
7+
To add a feature, please open an issue and create a pull request.

Commands/Watch-OBS.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ $($ExecutionContext.SessionState.InvokeCommand.GetCommand('Send-OBS', 'Function'
101101
if ($msg) {
102102
$messageData = try { ConvertFrom-Json $msg -ErrorAction Ignore} catch { $_ }
103103
$received = if ($messageData -isnot [Management.Automation.ErrorRecord]) {
104-
$messageData | Receive-OBS -WebSocketToken $WebSocketToken -WebSocketUri $webSocketUri -SendEvent -Subscription $Subscription
104+
$messageData | Receive-OBS -WebSocketToken $WebSocketToken -WebSocketUri $webSocketUri -SendEvent
105105
} else {
106106
$messageData
107107
}

allcommands.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -927,7 +927,7 @@ $($ExecutionContext.SessionState.InvokeCommand.GetCommand('Send-OBS', 'Function'
927927
if ($msg) {
928928
$messageData = try { ConvertFrom-Json $msg -ErrorAction Ignore} catch { $_ }
929929
$received = if ($messageData -isnot [Management.Automation.ErrorRecord]) {
930-
$messageData | Receive-OBS -WebSocketToken $WebSocketToken -WebSocketUri $webSocketUri -SendEvent -Subscription $Subscription
930+
$messageData | Receive-OBS -WebSocketToken $WebSocketToken -WebSocketUri $webSocketUri -SendEvent
931931
} else {
932932
$messageData
933933
}

docs/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
> Like It? [Star It](https://github.com/StartAutomating/obs-powershell)
22
> Love It? [Support It](https://github.com/sponsors/StartAutomating)
33
4+
## obs-powershell 0.2.0.1:
5+
6+
* Fixing `Watch-OBS` (Fixes #216)
7+
* Adding `CONTRIBUTING.md` (Fixes #204)
8+
* Adding `CODE_OF_CONDUCT.md` (Fixes #205)
9+
10+
---
11+
412
## obs-powershell 0.2:
513

614
* So Many Shaders!

docs/CODE_OF_CONDUCT.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Code of Conduct
2+
3+
We have a simple and subjective code of conduct:
4+
5+
1. Be Respectful
6+
2. Be Helpful
7+
3. Do No Harm
8+
9+
Failure to follow the code of conduct may result in lack of support, blocks, or banishment.

docs/CONTRIBUTING.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Contibuting
2+
3+
We welcome suggestions and careful contributions.
4+
5+
To suggest something, please [open an issue](https://github.com/StartAutomating/obs-powershell/issues) or start a [discussion](https://github.com/StartAutomating/obs-powershell/discussion)
6+
7+
To add a feature, please open an issue and create a pull request.

obs-powershell-Help.xml

Lines changed: 316 additions & 316 deletions
Large diffs are not rendered by default.

obs-powershell.ps.psd1

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
@{
2-
ModuleVersion = '0.2'
2+
ModuleVersion = '0.2.0.1'
33
RootModule = 'obs-powershell.psm1'
44
Description = 'Script your streams'
55
Guid = '1417123e-a932-439f-9b68-a7313cf1e170'
66
Author = 'James Brundage'
77
CompanyName = 'Start-Automating'
8-
Copyright = '2022-2023 Start-Automating'
8+
Copyright = '2022-2025 Start-Automating'
99
FormatsToProcess = 'obs-powershell.format.ps1xml'
1010
TypesToProcess = 'obs-powershell.types.ps1xml'
1111
PowerShellVersion = '7.0'
@@ -18,6 +18,14 @@
1818
> Like It? [Star It](https://github.com/StartAutomating/obs-powershell)
1919
> Love It? [Support It](https://github.com/sponsors/StartAutomating)
2020
21+
## obs-powershell 0.2.0.1:
22+
23+
* Fixing `Watch-OBS` (Fixes #216)
24+
* Adding `CONTRIBUTING.md` (Fixes #204)
25+
* Adding `CODE_OF_CONDUCT.md` (Fixes #205)
26+
27+
---
28+
2129
## obs-powershell 0.2:
2230
2331
* So Many Shaders!

obs-powershell.psd1

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
@{
2-
ModuleVersion = '0.2'
2+
ModuleVersion = '0.2.0.1'
33
RootModule = 'obs-powershell.psm1'
44
Description = 'Script your streams'
55
Guid = '1417123e-a932-439f-9b68-a7313cf1e170'
66
Author = 'James Brundage'
77
CompanyName = 'Start-Automating'
8-
Copyright = '2022-2023 Start-Automating'
8+
Copyright = '2022-2025 Start-Automating'
99
FormatsToProcess = 'obs-powershell.format.ps1xml'
1010
TypesToProcess = 'obs-powershell.types.ps1xml'
1111
PowerShellVersion = '7.0'
@@ -18,6 +18,14 @@
1818
> Like It? [Star It](https://github.com/StartAutomating/obs-powershell)
1919
> Love It? [Support It](https://github.com/sponsors/StartAutomating)
2020
21+
## obs-powershell 0.2.0.1:
22+
23+
* Fixing `Watch-OBS` (Fixes #216)
24+
* Adding `CONTRIBUTING.md` (Fixes #204)
25+
* Adding `CODE_OF_CONDUCT.md` (Fixes #205)
26+
27+
---
28+
2129
## obs-powershell 0.2:
2230
2331
* So Many Shaders!

0 commit comments

Comments
 (0)