Skip to content
This repository has been archived by the owner on Mar 27, 2022. It is now read-only.

Commit

Permalink
Fix website URL
Browse files Browse the repository at this point in the history
  • Loading branch information
caoimhebyrne committed Oct 27, 2020
1 parent 5349eb2 commit 37698c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

group 'org.mediamod.updater'
version '1.0.0-BETA-5'
version '1.0.0-BETA-6'

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/mediamod/updater/MediaModUpdater.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public static void main(String... args) throws Exception {
} else {
frame.setContentPane(new ErrorPane("Failed to find necessary files. You can download the update manually below:", "Download", () -> {
try {
Desktop.getDesktop().browse(new URI("https://mediamod.conorthedev.me"));
Desktop.getDesktop().browse(new URI("https://mediamodmc.github.io/"));
} catch (Exception ignored) {
}
}));
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/mediamod/updater/utils/Metadata.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package org.mediamod.updater.utils;

public class Metadata {
public static final String VERSION = "1.0.0-BETA-5";
public static final String VERSION = "1.0.0-BETA-6";
}

0 comments on commit 37698c6

Please sign in to comment.