Skip to content

Commit

Permalink
Autobuild
Browse files Browse the repository at this point in the history
  • Loading branch information
couleurm authored and github-actions[bot] committed Mar 3, 2024
1 parent 1c72558 commit c2cbe3c
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 31 deletions.
14 changes: 7 additions & 7 deletions Manifests.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[
{
"Name": "Optimize-LunarClient",
"Path": "/modules/Game & Program tuners/Optimize-LunarClient.ps1",
"Parameters": [
{
"Required": "false",
"Name": "Settings",
"Required": "false",
"Type": "Array",
"KeyValues": {
"Performance": "Turn off performance-hungry settings",
Expand All @@ -30,8 +30,8 @@
]
}
],
"Name": "Optimize-LunarClient",
"Description": "Tunes a selected Lunar Client profile to your liking, it has some good defaults everyone should have (no numbers in scoreboard, modern keybind handling, no achievements, transparent texture packs section, borderless fullscreen..)",
"Path": "/modules/Game & Program tuners/Optimize-LunarClient.ps1",
"Display Name": "Optimize Lunar Client",
"Platform": [
"Linux",
Expand All @@ -44,11 +44,11 @@
]
},
{
"Name": "Optimize-OBS",
"Path": "/modules/Game & Program tuners/Optimize-OBS.ps1",
"Parameters": [
{
"Required": "false",
"Name": "Encoder",
"Required": "false",
"Type": "String",
"KeyValues": {
"NVENC": "NVIDIA's Fastest encoder, it lets you record in hundreds of FPS easily",
Expand All @@ -65,15 +65,15 @@
]
},
{
"Required": "false",
"Name": "OBS64Path",
"Required": "false",
"Type": "String",
"KeyValues": {},
"Description": "If you've got a portable install or something, pass in the main OBS binary's path here"
}
],
"Name": "Optimize-OBS",
"Description": "Tune your OBS for a specific usecase in the snap of a finger!",
"Path": "/modules/Game & Program tuners/Optimize-OBS.ps1",
"Display Name": "Optimize OBS",
"Platform": [
"Linux",
Expand Down
48 changes: 24 additions & 24 deletions Master.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3480,7 +3480,6 @@ function Install-Voukoder {
) | Where-Object {Test-path $_} |

Get-ItemProperty | Where-Object Publisher -eq 'Daniel Stankewitz' |
Sort-Object DisplayName |
Select-Object -Property @{n='Name'; e='DisplayName' },
@{n='Version'; e='DisplayVersion'},
@{n='UninstallString'; e='UninstallString'}
Expand All @@ -3499,7 +3498,7 @@ function Install-Voukoder {
[Version]$LatestCoreVersion = $tag

$Core = Get-VoukoderProgram -Name "Voukoder*" -ErrorAction Ignore | # Find all programs starting with Voukoder
Where-Object Name -NotLike "*Connector*" # Exclude connectors
Where-Object Name -NotLike "*Connector*" | Where-Object Name -NotLike "*Pro*" # Exclude connectors and Voukoder Pro

if ($Core){

Expand Down Expand Up @@ -3595,7 +3594,11 @@ function Install-Voukoder {
$msiPath = "$env:TMP\Voukoder Connector-$Key.msi"
curl.exe -# -L $Connectors.$Key -o"$msiPath"
Write-Verbose "Installing $msiPath at $InnoFlag=$NLEDir" -Verbose
msiexec /i "$msiPath" /qb "$InnoFlag=`"$NLEDir`""
cmd /c "msiexec /i `"$msiPath`" /qb $InnoFlag=`"$NLEDir`" /log `"$env:TEMP\Voukoder $InnoFlag.txt`""
# msiexec /i "$msiPath" /qb "$InnoFlag=`"$NLEDir`""
if ($LASTEXITCODE){
Installer returned with error code $LASTEXITCODE
}
}

$CurrentConnector = (Get-VoukoderProgram -Name $PackageName)
Expand Down Expand Up @@ -3694,31 +3697,28 @@ function Install-Voukoder {

$VegasTemplates = @(

'https://cdn.discordapp.com/attachments/1039599872703213648/1039599904873517106/HEVC_NVENC_Upscale.sft2'
'https://cdn.discordapp.com/attachments/1039599872703213648/1039599905175502929/HEVC_NVENC.sft2'
'https://cdn.discordapp.com/attachments/1039599872703213648/1039599904609288255/HEVC_NVENC__Upscale.sft2'
'https://cdn.discordapp.com/attachments/1039599872703213648/1039599904353419284/H264_NVENC.sft2'
'https://cdn.discordapp.com/attachments/969870701798522901/972541639346225264/x265_Upscale.sft2'
'https://cdn.discordapp.com/attachments/969870701798522901/972541639560163348/x265.sft2'
'https://cdn.discordapp.com/attachments/969870701798522901/972541638943596574/x264_Upscale.sft2'
'https://cdn.discordapp.com/attachments/969870701798522901/972541639128129576/x264.sft2'
# 'https://cdn.discordapp.com/attachments/969870701798522901/972541638578667540/HEVC_NVENC_Upscale.sft2'
# 'https://cdn.discordapp.com/attachments/969870701798522901/972541638733885470/HEVC_NVENC.sft2'
# 'https://cdn.discordapp.com/attachments/969870701798522901/972541639744688198/H264_NVENC_Upscale.sft2'
# 'https://cdn.discordapp.com/attachments/969870701798522901/972541638356389918/H264_NVENC.sft2'
'https://github.com/couleur-tweak-tips/TweakList/releases/download/vegas-voukoder-presets/HEVC_NVENC_Upscale.sft2'
'https://github.com/couleur-tweak-tips/TweakList/releases/download/vegas-voukoder-presets/HEVC_NVENC.sft2'
'https://github.com/couleur-tweak-tips/TweakList/releases/download/vegas-voukoder-presets/HEVC_NVENC__Upscale.sft2'
'https://github.com/couleur-tweak-tips/TweakList/releases/download/vegas-voukoder-presets/H264_NVENC.sft2'
'https://github.com/couleur-tweak-tips/TweakList/releases/download/vegas-voukoder-presets/x265_Upscale.sft2'
'https://github.com/couleur-tweak-tips/TweakList/releases/download/vegas-voukoder-presets/x265.sft2'
'https://github.com/couleur-tweak-tips/TweakList/releases/download/vegas-voukoder-presets/x264_Upscale.sft2'
'https://github.com/couleur-tweak-tips/TweakList/releases/download/vegas-voukoder-presets/x264.sft2'

) | ForEach-Object {
[Ordered]@{($_ | File2Display) = $_}
}

$PremiereTemplates = @(
'https://cdn.discordapp.com/attachments/1039599872703213648/1039609690025369690/HEVC_NVENC__Upscale.epr'
'https://cdn.discordapp.com/attachments/1039599872703213648/1039609690369298432/HEVC_NVENC.epr'
'https://cdn.discordapp.com/attachments/1039599872703213648/1039609691992498218/H264_NVENC__Upscale.epr'
'https://cdn.discordapp.com/attachments/1039599872703213648/1039609692277706902/H264_NVENC.epr'
'https://cdn.discordapp.com/attachments/1039599872703213648/1039609690688061490/x264__Upscale.epr'
'https://cdn.discordapp.com/attachments/1039599872703213648/1039609690964893706/x264.epr'
'https://cdn.discordapp.com/attachments/1039599872703213648/1039609691380125827/x265__Upscale.epr'
'https://cdn.discordapp.com/attachments/1039599872703213648/1039609691682111548/x265.epr'
'https://github.com/couleur-tweak-tips/TweakList/releases/download/premiere-voukoder-presets/HEVC_NVENC__Upscale.epr'
'https://github.com/couleur-tweak-tips/TweakList/releases/download/premiere-voukoder-presets/HEVC_NVENC.epr'
'https://github.com/couleur-tweak-tips/TweakList/releases/download/premiere-voukoder-presets/H264_NVENC__Upscale.epr'
'https://github.com/couleur-tweak-tips/TweakList/releases/download/premiere-voukoder-presets/H264_NVENC.epr'
'https://github.com/couleur-tweak-tips/TweakList/releases/download/premiere-voukoder-presets/x264__Upscale.epr'
'https://github.com/couleur-tweak-tips/TweakList/releases/download/premiere-voukoder-presets/x264.epr'
'https://github.com/couleur-tweak-tips/TweakList/releases/download/premiere-voukoder-presets/x265__Upscale.epr'
'https://github.com/couleur-tweak-tips/TweakList/releases/download/premiere-voukoder-presets/x265.epr'
) | ForEach-Object {
[Ordered]@{($_ | File2Display) = $_}
}
Expand Down Expand Up @@ -3777,7 +3777,7 @@ function Install-Voukoder {
if (-Not(Test-Path ($TPDir = "$env:TMP\AE_Templates"))){
New-Item -ItemType Directory -Path $TPDir -Force | Out-Null
}
curl.exe -# -sSL https://cdn.discordapp.com/attachments/1039599872703213648/1039614649638858772/CTT_AE_VOUKODER_TEMPLATES.aom -o"$TPDir\CTT_AE_VOUKODER_TEMPLATES.aom"
curl.exe -# -sSL https://github.com/couleur-tweak-tips/TweakList/releases/download/after-effects-voukoder-presets/CTT_AE_VOUKODER_TEMPLATES.aom -o"$TPDir\CTT_AE_VOUKODER_TEMPLATES.aom"

Start-Process -FilePath explorer.exe -ArgumentList "/select,`"$TPDir\CTT_AE_VOUKODER_TEMPLATES.aom`""
$Tutorial = 'https://i.imgur.com/XCaJGoV.mp4'
Expand Down

0 comments on commit c2cbe3c

Please sign in to comment.