Skip to content

Commit

Permalink
Update org links
Browse files Browse the repository at this point in the history
  • Loading branch information
flustix committed Sep 11, 2024
1 parent 25bd06a commit 57c70a5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fluXis.Desktop/VelopackUpdatePerformer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public void Perform(bool silent, bool beta)
}

logger.Add("Checking for updates...");
var mgr = new UpdateManager(new GithubSource("https://github.com/TeamFluXis/fluXis", "", beta));
var mgr = new UpdateManager(new GithubSource("https://github.com/InventiveRhythm/fluXis", "", beta));

var update = mgr.CheckForUpdates();

Expand Down
2 changes: 1 addition & 1 deletion fluXis.Game/Screens/Menu/MenuScreen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ private void load(GameHost host, TextureStore textures)
new MenuLinkButton
{
Icon = FontAwesome6.Brands.GitHub,
Action = () => host.OpenUrlExternally("https://github.com/TeamFluXis/fluXis"),
Action = () => host.OpenUrlExternally("https://github.com/InventiveRhythm/fluXis"),
Text = "GitHub"
},
new MenuLinkButton
Expand Down
2 changes: 1 addition & 1 deletion fluXis.Game/Updater/UpdateChecker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public UpdateChecker(ReleaseChannel channel)

private string fetchLatestVersion()
{
const string url = "https://api.github.com/repos/TeamFluXis/fluXis/releases";
const string url = "https://api.github.com/repos/InventiveRhythm/fluXis/releases";
var request = new WebRequest(url);
request.AddHeader("User-Agent", "fluXis.Updater");
request.Method = HttpMethod.Get;
Expand Down

0 comments on commit 57c70a5

Please sign in to comment.