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 Jan 28, 2024
1 parent d726378 commit 185cadd
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 17 deletions.
18 changes: 9 additions & 9 deletions Manifests.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
[
{
"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",
"Parameters": [
{
"Name": "Settings",
"Required": "false",
"Type": "Array",
"Name": "Settings",
"KeyValues": {
"Performance": "Turn off performance-hungry settings",
"NoCosmetics": "Disable all emotes, cosmetics, wings, hats..",
Expand All @@ -32,6 +29,9 @@
]
}
],
"Path": "/modules/Game & Program tuners/Optimize-LunarClient.ps1",
"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..)",
"Name": "Optimize-LunarClient",
"Display Name": "Optimize Lunar Client",
"Platform": [
"Linux",
Expand All @@ -44,14 +44,11 @@
]
},
{
"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",
"Parameters": [
{
"Name": "Encoder",
"Required": "false",
"Type": "String",
"Name": "Encoder",
"KeyValues": {
"NVENC": "NVIDIA's Fastest encoder, it lets you record in hundreds of FPS easily",
"AMF": "AMD GPUs/Integrated GPUs encoder, not as good as NVENC but can still get out ~240FPS at most",
Expand All @@ -67,13 +64,16 @@
]
},
{
"Name": "OBS64Path",
"Required": "false",
"Type": "String",
"Name": "OBS64Path",
"KeyValues": {},
"Description": "If you've got a portable install or something, pass in the main OBS binary's path here"
}
],
"Path": "/modules/Game & Program tuners/Optimize-OBS.ps1",
"Description": "Tune your OBS for a specific usecase in the snap of a finger!",
"Name": "Optimize-OBS",
"Display Name": "Optimize OBS",
"Platform": [
"Linux",
Expand Down
17 changes: 9 additions & 8 deletions Master.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -295,14 +295,14 @@ function Get-ScoopApp {

$Repos = @{

main = @{org = 'ScoopInstaller';repo = 'main';branch = 'master'}
extras = @{org = 'ScoopInstaller';repo = 'extras';branch = 'master'}
utils = @{org = 'couleur-tweak-tips';repo = 'utils';branch = 'main'}
nirsoft = @{org = 'kodybrown' ;repo = 'scoop-nirsoft';branch = 'master'}
games = @{org = 'ScoopInstaller';repo = 'games';branch = 'master'}
'nerd-fonts' = @{org = 'ScoopInstaller';repo = 'nerd-fonts';branch = 'master'}
versions = @{org = 'ScoopInstaller';repo = 'versions';branch = 'master'}
java = @{org = 'ScoopInstaller';repo = 'java';branch = 'master'}
main = @{org = 'ScoopInstaller' ;repo = 'main' ;branch = 'master'}
extras = @{org = 'ScoopInstaller' ;repo = 'extras' ;branch = 'master'}
utils = @{org = 'couleur-tweak-tips' ;repo = 'utils' ;branch = 'main' }
nirsoft = @{org = 'kodybrown' ;repo = 'scoop-nirsoft' ;branch = 'master'}
'games' = @{org = 'Calinou' ;repo = 'scoop-games' ;branch = 'master'}
'nerd-fonts' = @{org = 'matthewjberger' ;repo = 'scoop-nerd-fonts' ;branch = 'master'}
versions = @{org = 'ScoopInstaller' ;repo = 'versions' ;branch = 'master'}
java = @{org = 'ScoopInstaller' ;repo = 'java' ;branch = 'master'}
}
$RepoNames = $Repos.Keys -Split('\r?\n')

Expand Down Expand Up @@ -344,6 +344,7 @@ function Get-ScoopApp {
}

}
# Wait-Debugger
scoop install $App
if ($LASTEXITCODE -ne 0){
$script:FailedToInstall += $App
Expand Down

0 comments on commit 185cadd

Please sign in to comment.