From af80b4298cfedbb14186cd33b12583aa497194e4 Mon Sep 17 00:00:00 2001 From: NightMean <5726996+NightMean@users.noreply.github.com> Date: Mon, 15 Sep 2025 21:07:19 +0200 Subject: [PATCH] Update domain URL for XperiFirm Domain for XperiFirm has changed to https://igoreisberg.com/xperifirm which now correctly downloads and extracts the latest version Alternative URL: https://xdaforums.com/t/tool-xperifirm-xperia-firmware-downloader-v5-7-1.2834142/ --- Flashtool/src/main/java/org/flashtool/util/XperiFirm.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Flashtool/src/main/java/org/flashtool/util/XperiFirm.java b/Flashtool/src/main/java/org/flashtool/util/XperiFirm.java index 4d3a7b5..2a5b9f2 100644 --- a/Flashtool/src/main/java/org/flashtool/util/XperiFirm.java +++ b/Flashtool/src/main/java/org/flashtool/util/XperiFirm.java @@ -45,9 +45,9 @@ public static void run(Shell parent) throws IOException,JDOMException { try { File f = new File(OS.getFolderUserFlashtool()+File.separator+"XperiFirm.exe.config"); if (f.exists()) f.delete(); - version = IOUtils.toString(new URL("http://www.iagucool.com/xperifirm/version"),Charset.forName("UTF-8")); + version = IOUtils.toString(new URL("https://igoreisberg.com/xperifirm/version.php"),Charset.forName("UTF-8")); version = version.substring(0,version.indexOf("|")); - downloadurl = IOUtils.toString(new URL("http://www.iagucool.com/xperifirm/download"),Charset.forName("UTF-8")); + downloadurl = IOUtils.toString(new URL("https://igoreisberg.com/xperifirm/download.php"),Charset.forName("UTF-8")); tf = new TextFile(OS.getFolderUserFlashtool()+File.separator+"XperiFirm.version","ISO8859-15"); tf.readLines(); if (!version.equals(tf.getLines().iterator().next())) { @@ -234,4 +234,4 @@ public static void createBundle(String sourcefolder,XMLFwInfo info) throws Excep tf.close(); } -} \ No newline at end of file +}