[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, introDesc,
new Separator(Orientation.HORIZONTAL), new Separator(Orientation.HORIZONTAL),
machine, machine,
scanPane, scanPane
new Separator(Orientation.HORIZONTAL), // new Separator(Orientation.HORIZONTAL),
documentation, // documentation,
docLinkPane); // docLinkPane
);
v.setMinWidth(Region.USE_PREF_SIZE); v.setMinWidth(Region.USE_PREF_SIZE);
v.setMaxWidth(Region.USE_PREF_SIZE); v.setMaxWidth(Region.USE_PREF_SIZE);
v.setMinHeight(Region.USE_PREF_SIZE); v.setMinHeight(Region.USE_PREF_SIZE);

View file

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

View file

@ -61,17 +61,22 @@ public interface OsType {
@Override @Override
public String determineOperatingSystemName(ShellControl pc) throws Exception { public String determineOperatingSystemName(ShellControl pc) throws Exception {
return pc.executeStringSimpleCommand("wmic os get Caption") try {
.lines() return pc.executeStringSimpleCommand("wmic os get Caption")
.skip(1) .lines()
.collect(Collectors.joining()) .skip(1)
.trim() .collect(Collectors.joining())
+ " " .trim()
+ pc.executeStringSimpleCommand("wmic os get Version") + " "
.lines() + pc.executeStringSimpleCommand("wmic os get Version")
.skip(1) .lines()
.collect(Collectors.joining()) .skip(1)
.trim(); .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