Skip to content

Commit

Permalink
Mirror Lönn versions list API
Browse files Browse the repository at this point in the history
  • Loading branch information
maddie480 committed May 10, 2024
1 parent 52163e1 commit 24f33d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@ and only contains the latest changes.
Its purpose is to be shown in Olympus when updating.

#changelog#
∙ [Linux] Support for launching Celeste using the Flatpak version of Steam
∙ Added mod presets to the "Manage Installed Mods" menu
∙ Use maddie480.ovh mirror instead of api.github.com for Lönn version listing, since GitHub has strict rate limits
2 changes: 1 addition & 1 deletion sharp/CmdGetLoennLatestVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class CmdGetLoennLatestVersion : Cmd<Tuple<string, string>> {

public override Tuple<string, string> Run() {
try {
HttpWebRequest req = (HttpWebRequest) WebRequest.Create("https://api.github.com/repos/CelestialCartographers/Loenn/releases/latest");
HttpWebRequest req = (HttpWebRequest) WebRequest.Create("https://maddie480.ovh/celeste/loenn-versions");
req.UserAgent = "Olympus";
req.Timeout = 10000;
req.ReadWriteTimeout = 10000;
Expand Down

0 comments on commit 24f33d2

Please sign in to comment.