-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
2,891 additions
and
2,764 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,20 @@ | ||
namespace ProtonPlus.Models.Runners { | ||
public class Proton_Sarek_Async : GitHub { | ||
public Proton_Sarek_Async (Group group) { | ||
Object (group: group, | ||
title: "Proton-Sarek (Async)", | ||
description: _("Steam compatibility tool based on Proton-GE with modifications for very old GPUs, with %s.").printf ("DXVK-Async"), | ||
endpoint: "https://api.github.com/repos/pythonlover02/Proton-Sarek/releases", | ||
asset_position: 0, | ||
request_asset_exclude: new string[] { "Sarek9-13" }); | ||
} | ||
|
||
public override string get_directory_name (string release_name) { | ||
return title + "_Async"; | ||
} | ||
|
||
public override string get_directory_name_reverse (string release_name) { | ||
return release_name; | ||
} | ||
} | ||
} |
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,20 @@ | ||
namespace ProtonPlus.Models.Runners { | ||
public class Proton_Sarek : GitHub { | ||
public Proton_Sarek (Group group) { | ||
Object (group: group, | ||
title: "Proton-Sarek", | ||
description: _("Steam compatibility tool based on Proton-GE with modifications for very old GPUs, with %s.").printf ("DXVK"), | ||
endpoint: "https://api.github.com/repos/pythonlover02/Proton-Sarek/releases", | ||
asset_position: 1, | ||
request_asset_exclude: new string[] { "Sarek9-13" }); | ||
} | ||
|
||
public override string get_directory_name (string release_name) { | ||
return title + "_Stable"; | ||
} | ||
|
||
public override string get_directory_name_reverse (string release_name) { | ||
return release_name; | ||
} | ||
} | ||
} |