generated from ScoopInstaller/BucketTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved existing OBS plugin manifests, added more
- Loading branch information
1 parent
ade350b
commit 3eeed57
Showing
4 changed files
with
102 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"version": "0.1.4", | ||
"homepage": "https://github.com/exeldro/obs-source-clone", | ||
"description": "Add source to OBS that lets you clone sources to allow different filters than the original", | ||
"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" | ||
] | ||
}, | ||
"url": "https://obsproject.com/forum/resources/source-clone.1632/version/4881/download?file=93640#/dl.zip", | ||
"hash": "b27fe7e4b2d6b69b8fe2d7441fa1303249d2a737f6eb9312592b1dde30284225", | ||
"pre_install": [ | ||
" if ($architecture -eq '64bit') {", | ||
" Remove-Item \"$dir\\obs-plugins\\32bit\" -Recurse", | ||
" }", | ||
" elseif ($architecture -eq '32bit') {", | ||
" Remove-Item \"$dir\\obs-plugins\\64bit\" -Recurse", | ||
" }", | ||
"'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\\source-clone\" -Force -Recurse -ErrorAction SilentlyContinue", | ||
" Remove-Item \"$obs\\current\\obs-plugins\\32bit\\source-clone.*\" -Force -ErrorAction SilentlyContinue", | ||
" Remove-Item \"$obs\\current\\obs-plugins\\64bit\\source-clone.*\" -Force -ErrorAction SilentlyContinue", | ||
" }", | ||
"}" | ||
], | ||
"checkver": "github", | ||
"autoupdate": { | ||
"url": "https://obsproject.com/forum/resources/source-clone.1632/version/4881/download?file=93640#/dl.zip" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
"version": "1.7.0", | ||
"homepage": "https://github.com/phandasm/waveform", | ||
"description": "Audio spectral analysis plugin for OBS", | ||
"license": "GPL-3.0-only", | ||
"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", | ||
"versions/obs-studio27" | ||
] | ||
}, | ||
"architecture": { | ||
"64bit": { | ||
"url": "https://github.com/phandasm/waveform/releases/download/v1.7.0/Waveform_v1.7.0_x86_64.zip", | ||
"hash": "9a692a5bfbce9870cfd2f91c1321b38d353dd78c2b0ca953b9977c5702734ba2" | ||
} | ||
}, | ||
"pre_install": [ | ||
"'obs-studio', 'obs-studio-small', 'obs-studio27', '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-studio27', 'obs-studio-pre' | ForEach-Object {", | ||
" $obs = \"$(appdir $_ $global)\"", | ||
" if (Test-Path $obs) {", | ||
" info \"Uninstall for $_\"", | ||
" Remove-Item \"$obs\\current\\data\\obs-plugins\\waveform\" -Force -Recurse -ErrorAction SilentlyContinue", | ||
" Remove-Item \"$obs\\current\\obs-plugins\\64bit\\waveform.*\" -Force -ErrorAction SilentlyContinue", | ||
" }", | ||
"}" | ||
], | ||
"checkver": "github", | ||
"autoupdate": { | ||
"architecture": { | ||
"64bit": { | ||
"url": "https://github.com/phandasm/waveform/releases/download/v$version/Waveform_v$version_x86_64.zip" | ||
} | ||
} | ||
} | ||
} |