Fix portable version not launching [release]

This commit is contained in:
crschnick 2023-03-29 17:53:28 +00:00
parent 53068eb943
commit 90e18d0627
2 changed files with 2 additions and 2 deletions

View file

@ -41,7 +41,7 @@ public class AppProperties {
}
});
fullVersion = Optional.ofNullable(props.getProperty("io.xpipe.app.fullVersion"))
fullVersion = Optional.ofNullable(System.getProperty("io.xpipe.app.fullVersion"))
.map(Boolean::parseBoolean)
.orElse(false);
version = Optional.ofNullable(props.getProperty("version")).orElse("dev");

View file

@ -1 +1 @@
0.5.23
0.5.24