Skip to content

Commit

Permalink
update links and version
Browse files Browse the repository at this point in the history
  • Loading branch information
KTibow committed Dec 4, 2022
1 parent 4a13d1c commit 10307ec
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 13 deletions.
11 changes: 4 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# SkyClien't Installer Java
![GitHub release (latest by date)](https://img.shields.io/github/downloads/koxx12-dev/skyclient-installer-java/latest/total?style=flat-square)
![GitHub all releases](https://img.shields.io/github/downloads/koxx12-dev/skyclient-installer-java/total?style=flat-square)\
Skyclien't installer but in java

### [Windows Skyclient](https://github.com/nacrt/SkyblockClient)
### [Skyclient Repo](https://github.com/nacrt/SkyblockClient-REPO)
# SkyClient Installer Java

![GitHub release (latest by date)](https://img.shields.io/github/downloads/koxx12-dev/skyclient-installer-java/latest/total?style=flat-square)
![GitHub all releases](https://img.shields.io/github/downloads/koxx12-dev/skyclient-installer-java/total?style=flat-square)\
SkyClient installer but in java
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ plugins {

archivesBaseName = 'Skyclient-Universal-Installer'
group = "io.github.koxx12-dev"
version = '2.0.3'
version = '2.0.4'

compileJava {
sourceCompatibility = targetCompatibility = "1.8"
Expand Down
Empty file modified gradlew
100644 → 100755
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ public class SkyclientUniversal {
}
}

public static String version = "2.0.3";
public static String version = "2.0.4";
public static Gson gson = new Gson().newBuilder().setPrettyPrinting().create();
public static String baseRepo = "https://raw.githubusercontent.com/nacrt/SkyblockClient-REPO/main";
public static String baseCdn = "https://cdn.jsdelivr.net/gh/nacrt/SkyblockClient-REPO@main";
public static String baseRepo = "https://raw.githubusercontent.com/SkyblockClient/SkyblockClient-REPO/main";
public static String baseCdn = "https://cdn.jsdelivr.net/gh/SkyblockClient/SkyblockClient-REPO@main";
public static ModData[] mods = gson.fromJson(Http.get(baseRepo+"/files/mods.json"), ModData[].class);
public static PackData[] packs = gson.fromJson(Http.get(baseRepo+"/files/packs.json"), PackData[].class);
public static File cache = new File(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -231,10 +231,10 @@ public Installer() {
File forgeJson = new File(SkyclientUniversal.minecraft, "/versions/1.8.9-forge1.8.9-11.15.1.2318-1.8.9/1.8.9-forge1.8.9-11.15.1.2318-1.8.9.json");

forgeLib.getParentFile().mkdirs();
Http.download("https://github.com/nacrt/SkyblockClient-REPO/raw/main/files/forge/forge-1.8.9-11.15.1.2318-1.8.9.jar", forgeLib.getAbsolutePath());
Http.download("https://github.com/SkyblockClient/SkyblockClient-REPO/raw/main/files/forge/forge-1.8.9-11.15.1.2318-1.8.9.jar", forgeLib.getAbsolutePath());

forgeJson.getParentFile().mkdirs();
Http.download("https://github.com/nacrt/SkyblockClient-REPO/raw/main/files/forge/1.8.9-forge1.8.9-11.15.1.2318-1.8.9.json", forgeJson.getAbsolutePath());
Http.download("https://github.com/SkyblockClient/SkyblockClient-REPO/raw/main/files/forge/1.8.9-forge1.8.9-11.15.1.2318-1.8.9.json", forgeJson.getAbsolutePath());
}

//show a installation complete popup with installation details
Expand Down

0 comments on commit 10307ec

Please sign in to comment.