chore: version 1.2.4.b2-panorama1, drop WASDMenuAPI project

- ModuleVersion 1.2.4.b2-panorama1; the startup version check and its download link now use
  git.zio.sh/cs2/jRandomSkills releases instead of upstream's GitHub
- updater.json lists the release
- Remove the unused WASDMenuAPI project from the solution and repo, and its README credit
This commit is contained in:
Astra 2026-09-24 21:37:07 +01:00
parent 793370a55f
commit 7810c6e302
18 changed files with 10 additions and 584 deletions

View file

@ -44,7 +44,7 @@ namespace src
public override string ModuleName => "[CS2] [ jRandomSkills ]";
public override string ModuleAuthor => "D3X (Original), Juzlus (Modifier), ByDexterTR (Contributor)";
public override string ModuleDescription => "Plugin adds random skills every round for CS2 by D3X. Modified by Juzlus.";
public override string ModuleVersion => "1.2.4.b2";
public override string ModuleVersion => "1.2.4.b2-panorama1";
public override void Load(bool hotReload)
{
@ -250,7 +250,7 @@ namespace src
Console.ForegroundColor = (ConsoleColor)CS2ConsoleColors.Red;
Console.WriteLine($"\n#########################################################");
Console.WriteLine($"# Download the new version from: #");
Console.WriteLine($"# https://github.com/Juzlus/jRandomSkills/releases #");
Console.WriteLine($"# https://git.zio.sh/cs2/jRandomSkills/releases #");
Console.WriteLine($"#########################################################");
}
@ -356,7 +356,7 @@ namespace src
{
using HttpClient client = new();
client.DefaultRequestHeaders.UserAgent.Add(new System.Net.Http.Headers.ProductInfoHeaderValue("jRandomSkills", "1.0"));
const string URL = "https://api.github.com/repos/Juzlus/jRandomSkills/releases/latest";
const string URL = "https://git.zio.sh/api/v1/repos/cs2/jRandomSkills/releases/latest";
try
{