Compare commits

..

20 Commits

Author SHA1 Message Date
740c346b3b add temporary logs 2025-06-03 18:19:27 -05:00
c9116e2a52 use changelog url format variable in more places + remove stable url format variable 2025-06-03 18:17:02 -05:00
91248bdd32 Remove inner try on Updater.CheckGitLabVersionAsync & apply formatting to file 2025-06-03 17:56:11 -05:00
64ecd514f2 Add long request time tolerance 2025-06-03 17:44:36 -05:00
8aabdd8714 make package name look nicer 2025-06-03 17:34:30 -05:00
1bf31c91b6 checkout code before trying to get the current repo's commit lol 2025-06-03 04:56:13 -05:00
bf5326ec87 installing it into path before using it is causing issues in stable pipeline but not canary for some reason 2025-06-03 04:45:11 -05:00
6e1e081d90 fix mac stable file path 2025-06-03 04:19:25 -05:00
8b58416003 provide github token env var 2025-06-03 04:15:19 -05:00
24f2d91800 Merge branch 'master' into gitlab-releases/part1 2025-06-03 04:07:11 -05:00
783b761745 i think this needs to be on the main branch before i can run it 2025-06-03 04:03:33 -05:00
559d9b4db0 stable release test workflow 2025-06-03 04:00:06 -05:00
787a14ed2b move version checking into a single method to unify updater logic across the app 2025-06-03 03:09:50 -05:00
d0c055ccb8 fix fallback url for stable changelogs being the current release channel 2025-06-03 02:58:01 -05:00
72935bdbb6 forgot some things & remove redundant method on github release channel 2025-06-03 02:55:25 -05:00
0df51e24dd initial impl of gitlab updating
should be version agnostic
2025-06-03 02:48:18 -05:00
4b003498a3 wrong command enum name 2025-06-02 22:34:50 -05:00
23b2576ded fix mac AGAIN 2025-06-02 22:12:53 -05:00
3f653626c8 attempt 2 (yeah downloading a linux binary on windows won't work who could have guessed (certainly not I!)) 2025-06-02 22:03:14 -05:00
052510ae1a Add GitLab package publishing to canary script 2025-06-02 21:50:10 -05:00
2 changed files with 2 additions and 2 deletions

View File

@ -193,7 +193,7 @@ namespace ARMeilleure.Translation.PTC
_infosStream.Seek(0L, SeekOrigin.Begin);
bool foundBadFunction = false;
for (int index = 0; index < _infosStream.Length / Unsafe.SizeOf<InfoEntry>(); index++)
for (int index = 0; index < GetEntriesCount(); index++)
{
InfoEntry infoEntry = DeserializeStructure<InfoEntry>(_infosStream);
foreach (ulong address in blacklist)

View File

@ -131,7 +131,7 @@ namespace Ryujinx.Ava.Systems
public override string ToString() => $"{Group}/{Project}";
public string GetLatestReleaseApiUrl() =>
$"https://git.ryujinx.app/api/v4/projects/{Id}/releases/permalink/latest";
$"https://git.ryujinx.app/api/v4/{Id}/releases/permalink/latest";
}
}
}