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

Commit

Permalink
Beta 2
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldieeins committed May 30, 2024
1 parent 3a4d15b commit 436af70
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion application-main/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>

<artifactId>application-main</artifactId>
<version>2024.5-beta.2</version>
<version>2024.5-beta.3</version>

<properties>
<maven.compiler.source>21</maven.compiler.source>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,8 @@ public void restart() {
args.append(arg).append(" ");
}
}
File updater = new File(ApplicationConfig.getApplicationPath().replace("/experimental/","/app.jar"));
System.out.println(ApplicationConfig.getApplicationPath().replace("\\","/").replace("/experimental/","/app.jar"));
File updater = new File(ApplicationConfig.getApplicationPath().replace("\\","/").replace("/experimental/","/app.jar"));
if(updater.exists()) {
jarPath = updater.getAbsolutePath();
}
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 @@ -21,7 +21,7 @@
--foreground1: var(--foreground);
--foreground2: #ffffff99;

--highlight: #ffffff;
--highlight: var(--foreground);
--accent: #8732ec;
}

Expand Down

0 comments on commit 436af70

Please sign in to comment.