Skip to content

Commit

Permalink
Replace uMod with gMod (#476)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexMacocian authored Nov 10, 2023
1 parent 76b89ca commit a372eb5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Daybreak/Daybreak.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<LangVersion>preview</LangVersion>
<ApplicationIcon>Daybreak.ico</ApplicationIcon>
<IncludePackageReferencesDuringMarkupCompilation>true</IncludePackageReferencesDuringMarkupCompilation>
<Version>0.9.8.144</Version>
<Version>0.9.8.145</Version>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<UserSecretsId>cfb2a489-db80-448d-a969-80270f314c46</UserSecretsId>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
Expand Down
4 changes: 2 additions & 2 deletions Daybreak/Services/UMod/UModService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ namespace Daybreak.Services.UMod;
public sealed class UModService : IUModService
{
private const string TagPlaceholder = "[TAG_PLACEHOLDER]";
private const string ReleaseUrl = "https://github.com/AlexMacocian/uMod/releases/download/[TAG_PLACEHOLDER]/uMod.dll";
private const string ReleasesUrl = "https://api.github.com/repos/AlexMacocian/uMod/git/refs/tags";
private const string ReleaseUrl = "https://github.com/DubbleClick/gMod/releases/download/[TAG_PLACEHOLDER]/gMod.dll";
private const string ReleasesUrl = "https://api.github.com/repos/DubbleClick/gMod/git/refs/tags";
private const string UModDirectory = "uMod";
private const string UModDll = "uMod.dll";
private const string UModModList = "modlist.txt";
Expand Down

0 comments on commit a372eb5

Please sign in to comment.