[release]

This commit is contained in:
crschnick 2023-04-01 12:59:01 +00:00
parent e4a85573c0
commit a516541c8d
5 changed files with 29 additions and 17 deletions

View file

@ -56,10 +56,11 @@ public class StoreIntroComp extends SimpleComp {
introDesc,
new Separator(Orientation.HORIZONTAL),
machine,
scanPane,
new Separator(Orientation.HORIZONTAL),
documentation,
docLinkPane);
scanPane
// new Separator(Orientation.HORIZONTAL),
// documentation,
// docLinkPane
);
v.setMinWidth(Region.USE_PREF_SIZE);
v.setMaxWidth(Region.USE_PREF_SIZE);
v.setMinHeight(Region.USE_PREF_SIZE);

View file

@ -59,7 +59,7 @@ public abstract class DataStorage {
try {
dataStoreProvider.storageInit();
} catch (Exception e) {
ErrorEvent.fromThrowable(e).handle();
ErrorEvent.fromThrowable(e).omit().handle();
}
});

View file

@ -61,17 +61,22 @@ public interface OsType {
@Override
public String determineOperatingSystemName(ShellControl pc) throws Exception {
return pc.executeStringSimpleCommand("wmic os get Caption")
.lines()
.skip(1)
.collect(Collectors.joining())
.trim()
+ " "
+ pc.executeStringSimpleCommand("wmic os get Version")
.lines()
.skip(1)
.collect(Collectors.joining())
.trim();
try {
return pc.executeStringSimpleCommand("wmic os get Caption")
.lines()
.skip(1)
.collect(Collectors.joining())
.trim()
+ " "
+ pc.executeStringSimpleCommand("wmic os get Version")
.lines()
.skip(1)
.collect(Collectors.joining())
.trim();
} catch (Throwable t) {
// Just in case this fails somehow
return "Windows ?";
}
}
}

6
dist/changelogs/0.5.30.md vendored Normal file
View file

@ -0,0 +1,6 @@
- Introduce new download functionality in the file browser
- Allow for the creation of desktop shortcuts on portable distributions as well
- Fix file sizes sometimes being incorrectly displayed
- Fix some issues when system locale was not set to english
- Fix background updater downloading the same version
- Fix various small bugs

View file

@ -1 +1 @@
0.5.29
0.5.30