Skip to content
This repository has been archived by the owner on Nov 20, 2024. It is now read-only.

Commit

Permalink
Update to 2024.7
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldieeins committed Jul 3, 2024
1 parent 4dfedb1 commit f17e230
Show file tree
Hide file tree
Showing 81 changed files with 87 additions and 82 deletions.
12 changes: 6 additions & 6 deletions application-main/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<parent>
<groupId>com.zyneonstudios</groupId>
<artifactId>application-parent</artifactId>
<version>2024.6</version>
<version>2024.7</version>
</parent>

<artifactId>application-main</artifactId>
<version>2024.6.4</version>
<version>2024.7</version>

<properties>
<maven.compiler.source>21</maven.compiler.source>
Expand All @@ -31,27 +31,27 @@
<dependency>
<groupId>com.zyneonstudios</groupId>
<artifactId>nexus-zyndex</artifactId>
<version>2024.4.3.2</version>
<version>2024.7</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.zyneonstudios</groupId>
<artifactId>nexus-auth</artifactId>
<version>2024.4.2</version>
<version>2024.7</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.zyneonstudios</groupId>
<artifactId>verget-all</artifactId>
<version>2024.4.2.2</version>
<version>2024.6</version>
<scope>compile</scope>
</dependency>

<!--Dependencies by FlowArg-->
<dependency>
<groupId>fr.flowarg</groupId>
<artifactId>flowupdater</artifactId>
<version>1.8.4</version>
<version>LATEST</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down
8 changes: 5 additions & 3 deletions application-main/src/main/java/com/zyneonstudios/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ public static void main(String[] args) {
splash = new ZyneonSplash();
splash.setVisible(true);
FileUtil.deleteFolder(new File(getDirectoryPath()+"temp/"));
version = "2024.6.4";
version = "2024.7";
ArrayList<String> arguments = new ArrayList<>();
String name = "Tricky Protonium²";
String name = "Transitum";
architecture = getArchitecture();
logger = new ZLogger("ZYNEON");
String fullVersion = version+" ▪ "+name;
Expand All @@ -45,7 +45,9 @@ public static void main(String[] args) {
switch (arg) {
case "--test" -> {
test = true;
fullVersion = version + " ▪ " + new SimpleDateFormat("yyyyMMdd-HHmmss").format(Calendar.getInstance().getTime());
version = new SimpleDateFormat("yyyy.M.d-HHmmss").format(Calendar.getInstance().getTime());
name = "Test";
fullVersion = version+" ▪ "+name;
}
case "--debug" -> {
logger.setDebugEnabled(true);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ public boolean download(String minecraftVersion, String forgeVersion, ForgeVersi
UpdaterOptions options = new UpdaterOptions.UpdaterOptionsBuilder()
.build();

System.out.println(forgeVersion);
AbstractForgeVersion forge = new ForgeVersionBuilder(type)
.withForgeVersion(forgeVersion)
.build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ public boolean download(String minecraftVersion, String forgeVersion, ForgeVersi
UpdaterOptions options = new UpdaterOptions.UpdaterOptionsBuilder()
.build();

System.out.println(forgeVersion);
AbstractForgeVersion forge = new ForgeVersionBuilder(type)
.withForgeVersion(forgeVersion)
.build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ public boolean download(String minecraftVersion, String forgeVersion, Path insta
UpdaterOptions options = new UpdaterOptions.UpdaterOptionsBuilder()
.build();

System.out.println(forgeVersion);
AbstractForgeVersion forge = new ForgeVersionBuilder(ForgeVersionType.NEO_FORGE)
.withForgeVersion(forgeVersion)
.build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ public static WritableInstance update(WritableInstance localInstance) {
}
Main.getLogger().debug("[ZYNDEX] Updated instance!");
}
System.out.println(onlineInstance.getMinecraftVersion());
localInstance.setMinecraftVersion(onlineInstance.getMinecraftVersion());
return localInstance;
}
Expand Down
Binary file modified application-main/src/main/resources/content.zip
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@
.menu ul li a .instance-item.active,.instance-item#selected {
color: #fff;
background: var(--accent);
box-shadow: 0 0 0.8rem var(--accent);
box-shadow: 0 0 0.4rem var(--accent);
}

.menu ul li a .instance-item.active:hover,.instance-item#selected:hover {
color: #fff;
background: var(--accent);
box-shadow: 0 0 0.8rem var(--accent);
box-shadow: 0 0 0.4rem var(--accent);
}

.menu ul li a .instance-item:hover {
background: var(--highlight);
box-shadow: 0 0 0.8rem var(--highlight);
box-shadow: 0 0 0.4rem var(--highlight);
transition: 0.5s;
cursor: pointer;
}
Expand Down Expand Up @@ -125,7 +125,7 @@

.content #instance-view .card#title-card .buttons i:hover {
z-index: 2000;
box-shadow: 0 0 0.8rem var(--color);
box-shadow: 0 0 0.4rem var(--color);
color: var(--background-accent);
background: var(--color);
}
Expand Down Expand Up @@ -166,7 +166,7 @@

.content #instance-view .card#title-card .buttons .folder-dropdown .card h3:hover {
color: var(--background-accent);
box-shadow: 0 0 0.8rem var(--color);
box-shadow: 0 0 0.4rem var(--color);
background: var(--color);
border-radius: 0.5rem;
cursor: pointer;
Expand All @@ -184,7 +184,7 @@
}

.content #instance-view #instance-settings .card {
box-shadow: 0 0 0.4rem black;
box-shadow: 0 0 0.4rem var(--background-accent);
}

.content #instance-view #instance-settings h3 {
Expand Down Expand Up @@ -254,7 +254,7 @@
cursor: pointer;
color: #fff;
background-color: var(--accent);
box-shadow: 0 0 0.8rem var(--accent);
box-shadow: 0 0 0.4rem var(--accent);
transition: 0.25s;
}

Expand All @@ -271,7 +271,7 @@
.content #instance-view #instance-settings h3 a.button#delete-instance:hover {
color: white;
background: red;
box-shadow: 0 0 0.8rem red;
box-shadow: 0 0 0.4rem red;
animation: wiggle 0.1s linear infinite;
}

Expand Down Expand Up @@ -339,7 +339,7 @@
bottom: 0;
height: 8rem;
width: 100%;
box-shadow: 0 0 0.8rem #000;
box-shadow: 0 0 0.4rem var(--background-accent);
z-index: 99;
background: var(--background4);
}
Expand All @@ -361,7 +361,7 @@

.content .dock a.button#launch:hover {
background: var(--accent);
box-shadow: 0 0 0.8rem var(--accent);
box-shadow: 0 0 0.4rem var(--accent);
animation: wiggle 2.5s linear infinite;
}

Expand All @@ -385,7 +385,7 @@
cursor: pointer;
color: #fff;
background-color: var(--accent);
box-shadow: 0 0 0.8rem var(--accent);
box-shadow: 0 0 0.4rem var(--accent);
transition: 0.25s;
}

Expand Down Expand Up @@ -434,7 +434,7 @@
cursor: pointer;
color: #fff;
background-color: var(--accent);
box-shadow: 0 0 0.8rem var(--accent);
box-shadow: 0 0 0.4rem var(--accent);
transition: 0.25s;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

.menu-item#exit:hover {
background: red;
box-shadow: 0 0 0.8rem red;
box-shadow: 0 0 0.4rem red;
animation: wiggle 0.1s linear infinite;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ body {
overflow: hidden;
flex-shrink: 0;
position: relative;
box-shadow: 0 0 0.8rem #000;
box-shadow: 0 0 0.4rem var(--background-accent);
background: var(--background-accent);
transition: 0.5s;
padding: 1rem;
Expand Down Expand Up @@ -166,7 +166,7 @@ body {

.menu ul li a .menu-item:hover {
background: var(--highlight);
box-shadow: 0 0 0.8rem var(--highlight);
box-shadow: 0 0 0.4rem var(--highlight);
transition: 0.5s;
cursor: pointer;
}
Expand Down Expand Up @@ -228,7 +228,7 @@ body {
.menu ul li a .menu-item.active,.menu-item#selected {
color: #fff;
background: var(--accent);
box-shadow: 0 0 0.8rem var(--accent);
box-shadow: 0 0 0.4rem var(--accent);
}

.menu ul li a .menu-item.active:hover span,i,.menu ul li a .menu-item#selected:hover span,i {
Expand Down Expand Up @@ -354,7 +354,7 @@ body {

::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.5);
box-shadow: 0 0 5rem #000;
box-shadow: 0 0 5rem var(--background-accent);
border-radius: 1rem;
}

Expand All @@ -373,7 +373,7 @@ body {
font-size: 1.05rem;
padding: 0.5rem 0.5rem 0.325rem 0.5rem;
border-radius: 0.5rem;
box-shadow: 0 0 0.8rem #000;
box-shadow: 0 0 0.4rem var(--background-accent);
z-index: 5;
color: var(--color);
background-color: var(--background-accent);
Expand All @@ -384,7 +384,7 @@ body {
font-size: large;
color: #fff;
background-color: var(--accent);
box-shadow: 0 0 0.8rem var(--accent);
box-shadow: 0 0 0.4rem var(--accent);
transition: 0.25s;
z-index: 999;
}
Expand All @@ -407,7 +407,7 @@ body {
.content .card {
border-radius: 0.5rem;
background: var(--background2);
box-shadow: 0 0 0.8rem #000;
box-shadow: 0 0 0.4rem var(--background-accent);
margin-bottom: 1.5rem;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@
.menu ul li a .instance-item.active,.instance-item#selected {
color: #fff;
background: var(--accent);
box-shadow: 0 0 0.8rem var(--accent);
box-shadow: 0 0 0.4rem var(--accent);
}

.menu ul li a .instance-item.active:hover,.instance-item#selected:hover {
color: #fff;
background: var(--accent);
box-shadow: 0 0 0.8rem var(--accent);
box-shadow: 0 0 0.4rem var(--accent);
}

.menu ul li a .instance-item:hover {
background: var(--highlight);
box-shadow: 0 0 0.8rem var(--highlight);
box-shadow: 0 0 0.4rem var(--highlight);
transition: 0.5s;
cursor: pointer;
}
Expand Down Expand Up @@ -125,7 +125,7 @@

.content #instance-view .card#title-card .buttons i:hover {
z-index: 2000;
box-shadow: 0 0 0.8rem var(--color);
box-shadow: 0 0 0.4rem var(--color);
color: var(--background-accent);
background: var(--color);
}
Expand Down Expand Up @@ -166,7 +166,7 @@

.content #instance-view .card#title-card .buttons .folder-dropdown .card h3:hover {
color: var(--background-accent);
box-shadow: 0 0 0.8rem var(--color);
box-shadow: 0 0 0.4rem var(--color);
background: var(--color);
border-radius: 0.5rem;
cursor: pointer;
Expand All @@ -184,7 +184,7 @@
}

.content #instance-view #instance-settings .card {
box-shadow: 0 0 0.4rem black;
box-shadow: 0 0 0.4rem var(--background-accent);
}

.content #instance-view #instance-settings h3 {
Expand Down Expand Up @@ -254,7 +254,7 @@
cursor: pointer;
color: #fff;
background-color: var(--accent);
box-shadow: 0 0 0.8rem var(--accent);
box-shadow: 0 0 0.4rem var(--accent);
transition: 0.25s;
}

Expand All @@ -271,7 +271,7 @@
.content #instance-view #instance-settings h3 a.button#delete-instance:hover {
color: white;
background: red;
box-shadow: 0 0 0.8rem red;
box-shadow: 0 0 0.4rem red;
animation: wiggle 0.1s linear infinite;
}

Expand Down Expand Up @@ -339,7 +339,7 @@
bottom: 0;
height: 8rem;
width: 100%;
box-shadow: 0 0 0.8rem #000;
box-shadow: 0 0 0.4rem var(--background-accent);
z-index: 99;
background: var(--background4);
}
Expand All @@ -361,7 +361,7 @@

.content .dock a.button#launch:hover {
background: var(--accent);
box-shadow: 0 0 0.8rem var(--accent);
box-shadow: 0 0 0.4rem var(--accent);
animation: wiggle 2.5s linear infinite;
}

Expand All @@ -385,7 +385,7 @@
cursor: pointer;
color: #fff;
background-color: var(--accent);
box-shadow: 0 0 0.8rem var(--accent);
box-shadow: 0 0 0.4rem var(--accent);
transition: 0.25s;
}

Expand Down Expand Up @@ -434,7 +434,7 @@ select#creator-minecraft,select#creator-modloader,select#creator-type,select#cre
cursor: pointer;
color: #fff;
background-color: var(--accent);
box-shadow: 0 0 0.8rem var(--accent);
box-shadow: 0 0 0.4rem var(--accent);
transition: 0.25s;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

.menu-item#exit:hover {
background: red;
box-shadow: 0 0 0.8rem red;
box-shadow: 0 0 0.4rem red;
animation: wiggle 0.1s linear infinite;
}

Expand Down
Loading

0 comments on commit f17e230

Please sign in to comment.