diff --git a/ISSUE_TEMPLATE.md b/ISSUE_TEMPLATE.md index c53dd0d..79a6eaa 100644 --- a/ISSUE_TEMPLATE.md +++ b/ISSUE_TEMPLATE.md @@ -4,7 +4,7 @@ IF YOU ARE REPORTING A BROKEN DOWNLOAD LINK: There is nothing we can do with Dropbox breaking the links. -Go download it from the releases page here on GitHub, or rpw.ondrovo.com +Go download it from the releases page here on GitHub, or https://mcrpw.github.io/ ******************************************* <- Delete this notice before sending! diff --git a/README.md b/README.md index 5c19063..3cd0c1c 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Please read the help before asking questions, and go through the RPW menus. ## Links -- [**Official RPW website**](http://rpw.ondrovo.com) +- [**Official RPW website**](https://mcrpw.github.io/) - [MightyPork on Twitter](https://twitter.com/MightyPork) - [RPW on Twitter](https://twitter.com/RPWapp) - [Planet Minecraft post](http://www.planetminecraft.com/mod/tool-resourcepack-workbench---the-ultimate-pack-creator/) @@ -18,7 +18,7 @@ Please read the help before asking questions, and go through the RPW menus. **Q: RPW opens images in Paint instead of Gimp. How to fix?** -Please see issues [#53](https://github.com/MightyPork/rpw/issues/53) and [#58](https://github.com/MightyPork/rpw/issues/58). +Please see issues [#53](https://github.com/mcRPW/rpw/issues/53) and [#58](https://github.com/mcRPW/rpw/issues/58). **Q: How to import an existing pack?** diff --git a/pom.xml b/pom.xml index e537109..2416a7e 100644 --- a/pom.xml +++ b/pom.xml @@ -99,7 +99,7 @@ GitHub - https://github.com/MightyPork/rpw/issues + https://github.com/mcRPW/rpw/issues - https://github.com/MightyPork/rpw + https://github.com/mcRPW/rpw \ No newline at end of file diff --git a/resources/README.txt b/resources/README.txt index 90e4531..8b03430 100644 --- a/resources/README.txt +++ b/resources/README.txt @@ -18,9 +18,9 @@ ---------------------------------------------------------------------------- - Official website: rpw.ondrovo.com + Official website: https://mcrpw.github.io/ - GitHub repo: github.com/MightyPork/rpw + GitHub repo: github.com/mcRPW/rpw RPW news: @RPWapp (twitter) diff --git a/resources/data/export/pack-readme.txt b/resources/data/export/pack-readme.txt index 637ce6e..eb70e36 100644 --- a/resources/data/export/pack-readme.txt +++ b/resources/data/export/pack-readme.txt @@ -17,11 +17,11 @@ [Get RPW] - * Official website -> rpw.ondrovo.com + * Official website -> https://mcrpw.github.io/ [Contribute] - * RPW on GitHub -> github.com/MightyPork/rpw + * RPW on GitHub -> github.com/mcRPW/rpw [Twitter] diff --git a/src/net/mightypork/rpw/Paths.java b/src/net/mightypork/rpw/Paths.java index bee10af..c3ea82e 100644 --- a/src/net/mightypork/rpw/Paths.java +++ b/src/net/mightypork/rpw/Paths.java @@ -53,11 +53,11 @@ public class Paths { // public static final String URL_DONATE = "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=B9X6Q5QU7FKPC"; public static final String URL_UPDATE_FILE = "https://raw.githubusercontent.com/MightyPork/rpw/master/changelog.txt"; - public static final String URL_RPW_WEB = "http://rpw.ondrovo.com"; - public static final String URL_GITHUB_REPO = "https://github.com/MightyPork/rpw/"; - public static final String URL_GITHUB_BUGS = "https://github.com/MightyPork/rpw/issues/new"; + public static final String URL_RPW_WEB = "https://mcrpw.github.io/"; + public static final String URL_GITHUB_REPO = "https://github.com/mcRPW/rpw/"; + public static final String URL_GITHUB_BUGS = "https://github.com/mcRPW/rpw/issues/new"; - public static final String URL_GITHUB_RELEASES = "https://github.com/MightyPork/rpw/releases"; + public static final String URL_GITHUB_RELEASES = "https://github.com/mcRPW/rpw/releases"; public static File getProjectBackupFolder(String identifier) { return OsUtils.getAppDir(Paths.DIR_PROJECT_BACKUP_TMP + "-" + identifier, true); diff --git a/src/net/mightypork/rpw/gui/windows/messages/DialogCrash.java b/src/net/mightypork/rpw/gui/windows/messages/DialogCrash.java index 8c2e262..ec11598 100644 --- a/src/net/mightypork/rpw/gui/windows/messages/DialogCrash.java +++ b/src/net/mightypork/rpw/gui/windows/messages/DialogCrash.java @@ -124,7 +124,7 @@ protected void addActions() { @Override public void actionPerformed(ActionEvent e) { try { - DesktopApi.browse(new URL("https://github.com/MightyPork/rpw/issues/new").toURI()); + DesktopApi.browse(new URL("https://github.com/mcRPW/rpw/issues/new").toURI()); } catch (final Exception exc) { Alerts.error(self(), "Sorry, something went wrong."); }