Skip to content

Commit

Permalink
Version 7.0.0 commit
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeOnuke committed Mar 12, 2021
1 parent c0f56f1 commit a0b5660
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Build with Maven
run: mvn -B package --file pom.xml

- run: mkdir staging && cp target/*.jar staging && cp -r assets staging
- run: mkdir staging && cp target/admin-tools*.jar staging && cp -r assets staging
- uses: actions/upload-artifact@v1
with:
name: WindowsPackage
Expand All @@ -41,7 +41,7 @@ jobs:
- name: Build with Maven
run: mvn -B package --file pom.xml

- run: mkdir staging && cp target/*.jar staging && cp -r assets staging
- run: mkdir staging && cp target/admin-tools*.jar staging && cp -r assets staging
- uses: actions/upload-artifact@v1
with:
name: LinuxPackage
Expand All @@ -59,7 +59,7 @@ jobs:
- name: Build with Maven
run: mvn -B package --file pom.xml

- run: mkdir staging && cp target/*.jar staging && cp -r assets staging
- run: mkdir staging && cp target/admin-tools*.jar staging && cp -r assets staging
- uses: actions/upload-artifact@v1
with:
name: MacosPackage
Expand Down
1 change: 1 addition & 0 deletions src/main/java/app/admintools/AdminToolsLauncher.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ public void start(Stage stage) throws Exception {

Stage splash = new Stage(StageStyle.TRANSPARENT);
splash.setScene(new Scene(new SplashScreen(), -1.0, -1.0, true));
splash.getIcons().add(new Image(AdminToolsLauncher.class.getResourceAsStream(Utill.getPath("/img/icon.png"))));
splash.show();
Thread splashThread = new Thread(() -> {
try{
Expand Down

0 comments on commit a0b5660

Please sign in to comment.