Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
> Like It? [Star It](https://github.com/StartAutomating/obs-powershell)
> Love It? [Support It](https://github.com/sponsors/StartAutomating)

## obs-powershell 0.2.0.1:

* Fixing `Watch-OBS` (Fixes #216)
* Adding `CONTRIBUTING.md` (Fixes #204)
* Adding `CODE_OF_CONDUCT.md` (Fixes #205)

---

## obs-powershell 0.2:

* So Many Shaders!
Expand Down
9 changes: 9 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Code of Conduct

We have a simple and subjective code of conduct:

1. Be Respectful
2. Be Helpful
3. Do No Harm

Failure to follow the code of conduct may result in lack of support, blocks, or banishment.
7 changes: 7 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Contibuting

We welcome suggestions and careful contributions.

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)

To add a feature, please open an issue and create a pull request.
2 changes: 1 addition & 1 deletion Commands/Watch-OBS.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ $($ExecutionContext.SessionState.InvokeCommand.GetCommand('Send-OBS', 'Function'
if ($msg) {
$messageData = try { ConvertFrom-Json $msg -ErrorAction Ignore} catch { $_ }
$received = if ($messageData -isnot [Management.Automation.ErrorRecord]) {
$messageData | Receive-OBS -WebSocketToken $WebSocketToken -WebSocketUri $webSocketUri -SendEvent -Subscription $Subscription
$messageData | Receive-OBS -WebSocketToken $WebSocketToken -WebSocketUri $webSocketUri -SendEvent
} else {
$messageData
}
Expand Down
2 changes: 1 addition & 1 deletion allcommands.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -927,7 +927,7 @@ $($ExecutionContext.SessionState.InvokeCommand.GetCommand('Send-OBS', 'Function'
if ($msg) {
$messageData = try { ConvertFrom-Json $msg -ErrorAction Ignore} catch { $_ }
$received = if ($messageData -isnot [Management.Automation.ErrorRecord]) {
$messageData | Receive-OBS -WebSocketToken $WebSocketToken -WebSocketUri $webSocketUri -SendEvent -Subscription $Subscription
$messageData | Receive-OBS -WebSocketToken $WebSocketToken -WebSocketUri $webSocketUri -SendEvent
} else {
$messageData
}
Expand Down
8 changes: 8 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
> Like It? [Star It](https://github.com/StartAutomating/obs-powershell)
> Love It? [Support It](https://github.com/sponsors/StartAutomating)

## obs-powershell 0.2.0.1:

* Fixing `Watch-OBS` (Fixes #216)
* Adding `CONTRIBUTING.md` (Fixes #204)
* Adding `CODE_OF_CONDUCT.md` (Fixes #205)

---

## obs-powershell 0.2:

* So Many Shaders!
Expand Down
9 changes: 9 additions & 0 deletions docs/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Code of Conduct

We have a simple and subjective code of conduct:

1. Be Respectful
2. Be Helpful
3. Do No Harm

Failure to follow the code of conduct may result in lack of support, blocks, or banishment.
7 changes: 7 additions & 0 deletions docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Contibuting

We welcome suggestions and careful contributions.

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)

To add a feature, please open an issue and create a pull request.
632 changes: 316 additions & 316 deletions obs-powershell-Help.xml

Large diffs are not rendered by default.

12 changes: 10 additions & 2 deletions obs-powershell.ps.psd1
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
@{
ModuleVersion = '0.2'
ModuleVersion = '0.2.0.1'
RootModule = 'obs-powershell.psm1'
Description = 'Script your streams'
Guid = '1417123e-a932-439f-9b68-a7313cf1e170'
Author = 'James Brundage'
CompanyName = 'Start-Automating'
Copyright = '2022-2023 Start-Automating'
Copyright = '2022-2025 Start-Automating'
FormatsToProcess = 'obs-powershell.format.ps1xml'
TypesToProcess = 'obs-powershell.types.ps1xml'
PowerShellVersion = '7.0'
Expand All @@ -18,6 +18,14 @@
> Like It? [Star It](https://github.com/StartAutomating/obs-powershell)
> Love It? [Support It](https://github.com/sponsors/StartAutomating)

## obs-powershell 0.2.0.1:

* Fixing `Watch-OBS` (Fixes #216)
* Adding `CONTRIBUTING.md` (Fixes #204)
* Adding `CODE_OF_CONDUCT.md` (Fixes #205)

---

## obs-powershell 0.2:

* So Many Shaders!
Expand Down
12 changes: 10 additions & 2 deletions obs-powershell.psd1
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
@{
ModuleVersion = '0.2'
ModuleVersion = '0.2.0.1'
RootModule = 'obs-powershell.psm1'
Description = 'Script your streams'
Guid = '1417123e-a932-439f-9b68-a7313cf1e170'
Author = 'James Brundage'
CompanyName = 'Start-Automating'
Copyright = '2022-2023 Start-Automating'
Copyright = '2022-2025 Start-Automating'
FormatsToProcess = 'obs-powershell.format.ps1xml'
TypesToProcess = 'obs-powershell.types.ps1xml'
PowerShellVersion = '7.0'
Expand All @@ -18,6 +18,14 @@
> Like It? [Star It](https://github.com/StartAutomating/obs-powershell)
> Love It? [Support It](https://github.com/sponsors/StartAutomating)

## obs-powershell 0.2.0.1:

* Fixing `Watch-OBS` (Fixes #216)
* Adding `CONTRIBUTING.md` (Fixes #204)
* Adding `CODE_OF_CONDUCT.md` (Fixes #205)

---

## obs-powershell 0.2:

* So Many Shaders!
Expand Down