From 5d7fba88fa5294bbb9fcbd135f5793b937771c24 Mon Sep 17 00:00:00 2001 From: CoocooFroggy <45371102+CoocooFroggy@users.noreply.github.com> Date: Wed, 16 Mar 2022 01:17:16 -0400 Subject: [PATCH] =?UTF-8?q?FutureRestore=20GUI=20=E2=80=94=20v1.97.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update links to new fork --- README.md | 6 +++--- src/main/java/FutureRestoreWorker.java | 4 ++-- src/main/java/Main.java | 2 +- src/main/java/MainMenu.java | 12 ++++++------ 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index c5ae73c..4c97586 100644 --- a/README.md +++ b/README.md @@ -64,10 +64,10 @@ Download from [releases](https://github.com/CoocooFroggy/FutureRestore-GUI/relea See [how to use FutureRestore](https://ios.cfw.guide/futurerestore). -1. Download FutureRestore automatically through the **Download FutureRestore** button, or manually from [m1stadev's fork](https://github.com/m1stadev/futurerestore/releases). +1. Download FutureRestore automatically through the **Download FutureRestore** button, or manually from [Cryptic & m1sta's fork](https://github.com/futurerestore/futurerestore/releases). 2. Select your **blob** (SHSH2) file. 3. Select your **target firmware** (iPSW) file. -4. Choose your desired arguments. See [this table](https://github.com/m1stadev/futurerestore#help) for an explanation of arguments. +4. Choose your desired arguments. See [this table](https://github.com/futurerestore/futurerestore#help) for an explanation of arguments. 5. Baseband and SEP (choose 1 each): 1. If the latest Baseband and/or SEP firmware is compatible with your target version, select **Latest Baseband**/**Latest SEP**. 2. Otherwise, choose **Manual Baseband**/**Manual SEP**, and select your desired **Baseband** and **SEP** (BBFW and IM4P), along with a BuildManifest (.PList). @@ -79,7 +79,7 @@ See [how to use FutureRestore](https://ios.cfw.guide/futurerestore). ## Third-Party Assets -Download FutureRestore using the button included in the GUI, or manually from [here](https://github.com/m1stadev/futurerestore/releases). Download target iPSW from [iPSW.me](https://ipsw.me) or [iPSW.dev](https://ipsw.dev). +Download FutureRestore using the button included in the GUI, or manually from [here](https://github.com/futurerestore/futurerestore/releases). Download target iPSW from [iPSW.me](https://ipsw.me) or [iPSW.dev](https://ipsw.dev). ## Troubleshooting diff --git a/src/main/java/FutureRestoreWorker.java b/src/main/java/FutureRestoreWorker.java index e94537b..2f755eb 100644 --- a/src/main/java/FutureRestoreWorker.java +++ b/src/main/java/FutureRestoreWorker.java @@ -150,9 +150,9 @@ public static void runFutureRestore(String futureRestoreFilePath, ArrayList getLatestFrBetaDownload(String operatingSystem, String archi Map linkNameMap = new HashMap<>(); - String content = getRequestUrl("https://api.github.com/repos/m1stadev/futurerestore/actions/artifacts"); + String content = getRequestUrl("https://api.github.com/repos/futurerestore/futurerestore/actions/artifacts"); Gson gson = new Gson(); Map result = gson.fromJson(content, Map.class); @@ -916,7 +916,7 @@ Map getLatestFrBetaDownload(String operatingSystem, String archi // Pop-up saying "no binaries for your OS available" noFrForOSPopup("No FutureRestore beta asset found for your operating system.\n" + - "Try a release version instead, or manually download a beta for your OS.\n", "https://github.com/m1stadev/futurerestore/actions"); + "Try a release version instead, or manually download a beta for your OS.\n", "https://github.com/futurerestore/futurerestore/actions"); return linkNameMap; } @@ -954,7 +954,7 @@ public static String getRequestUrl(String urlString) throws IOException { } private Map getLatestFrGithub() throws IOException { - String content = getRequestUrl("https://api.github.com/repos/m1stadev/futurerestore/releases"); + String content = getRequestUrl("https://api.github.com/repos/futurerestore/futurerestore/releases"); Gson gson = new Gson(); ArrayList> result = gson.fromJson(content, ArrayList.class);