Skip to content

Commit

Permalink
version 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sirjonasxx committed Oct 2, 2021
1 parent fb8f833 commit 2158307
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions G-Earth/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<packaging>jar</packaging>

<version>1.5</version>
<version>1.5.1</version>

<properties>
<javafx.version>1.8</javafx.version>
Expand All @@ -18,7 +18,7 @@
<parent>
<groupId>G-Earth</groupId>
<artifactId>G-Earth-Parent</artifactId>
<version>1.5</version>
<version>1.5.1</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion G-Earth/src/main/java/gearth/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
public class Main extends Application {

public static Application main;
public static String version = "1.5";
public static String version = "1.5.1";
public static String gitApi = "https://api.github.com/repos/sirjonasxx/G-Earth/releases/latest";
public static String theme = "G-Earth";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package gearth.services.internal_extensions.extensionstore.tools;

import gearth.Main;
import gearth.misc.OSValidator;
import gearth.services.extension_handler.extensions.implementations.network.authentication.Authenticator;
import gearth.services.extension_handler.extensions.implementations.network.executer.ExecutionInfo;
Expand Down Expand Up @@ -241,7 +242,7 @@ public static void updateExtension(String name, StoreRepository storeRepository,
}

public static void main(String[] args) {
StoreFetch.fetch("1.5", new StoreFetch.StoreFetchListener() {
StoreFetch.fetch(Main.version, new StoreFetch.StoreFetchListener() {
@Override
public void success(StoreRepository storeRepository) {
installExtension("G-BuildTools", storeRepository, new InstallExtListener() {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>G-Earth</groupId>
<artifactId>G-Earth-Parent</artifactId>
<packaging>pom</packaging>
<version>1.5</version>
<version>1.5.1</version>

<name>G-Earth-Parent</name>
<url>https://github.com/sirjonasxx/G-Earth</url>
Expand Down

0 comments on commit 2158307

Please sign in to comment.