Skip to content

Commit

Permalink
Added obs-plugin-shutdown manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
instinctualjealousy committed Jun 16, 2024
1 parent 021b74b commit cccceab
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions bucket/obs-plugin-shutdown.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"version": "0.1.2",
"homepage": "https://github.com/norihiro/obs-shutdown-plugin",
"description": "Plugin for shutting down OBS Studio through websocket API",
"license": "GPL-2.0",
"notes": "If you don't have any obs-studio version installed in your computer, please install one of the following below. Then uninstall this app and install it again.",
"suggest": {
"OBS": [
"extras/obs-studio",
"extras/obs-studio-small",
"versions/obs-studio-pre"
]
},
"architecture": {
"64bit": {
"url": "https://github.com/norihiro/obs-shutdown-plugin/releases/download/0.1.2/obs-shutdown-plugin-0.1.2-obs28-Windows.zip",
"hash": "f00981660a64e59086efb75815ad774734a3c496dff4a28a2512334d6565ec77"
}
},
"pre_install": [
"'obs-studio', 'obs-studio-small', 'obs-studio-pre' | ForEach-Object {",
" $obs = \"$(appdir $_ $global)\"",
" if (Test-Path $obs) {",
" info \"Install for $_\"",
" Copy-Item \"$dir\\data\" \"$obs\\current\" -Recurse -ErrorAction SilentlyContinue",
" Copy-Item \"$dir\\obs-plugins\" \"$obs\\current\" -Recurse -ErrorAction SilentlyContinue",
" }",
"}"
],
"pre_uninstall": [
"'obs-studio', 'obs-studio-small', 'obs-studio-pre' | ForEach-Object {",
" $obs = \"$(appdir $_ $global)\"",
" if (Test-Path $obs) {",
" info \"Uninstall for $_\"",
" Remove-Item \"$obs\\current\\data\\obs-plugins\\obs-shutdown-plugin\" -Force -Recurse -ErrorAction SilentlyContinue",
" Remove-Item \"$obs\\current\\obs-plugins\\64bit\\obs-shutdown-plugin.*\" -Force -ErrorAction SilentlyContinue",
" }",
"}"
],
"checkver": "github",
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/norihiro/obs-shutdown-plugin/releases/download/$version/obs-shutdown-plugin-$version-obs28-Windows.zip"
}
}
}
}

0 comments on commit cccceab

Please sign in to comment.