[release]

This commit is contained in:
crschnick 2023-06-22 19:11:06 +00:00
parent 569e262c97
commit ac7140f8ae
2 changed files with 21 additions and 19 deletions

View file

@ -34,25 +34,25 @@ public class TroubleshootComp extends Comp<CompStructure<?>> {
.grow(true, false), .grow(true, false),
null) null)
.separator() .separator()
.addComp( // .addComp(
new TileButtonComp("restart", "restartDescription", "mdmz-refresh", e -> { // new TileButtonComp("restart", "restartDescription", "mdmz-refresh", e -> {
OperationMode.executeAfterShutdown(() -> { // OperationMode.executeAfterShutdown(() -> {
try (var sc = ShellStore.createLocal() // try (var sc = ShellStore.createLocal()
.control() // .control()
.start()) { // .start()) {
var script = FileNames.join( // var script = FileNames.join(
XPipeInstallation.getCurrentInstallationBasePath() // XPipeInstallation.getCurrentInstallationBasePath()
.toString(), // .toString(),
XPipeInstallation.getDaemonExecutablePath(sc.getOsType())); // XPipeInstallation.getDaemonExecutablePath(sc.getOsType()));
sc.executeSimpleCommand( // sc.executeSimpleCommand(
ScriptHelper.createDetachCommand(sc, "\"" + script + "\"")); // ScriptHelper.createDetachCommand(sc, "\"" + script + "\""));
} // }
}); // });
e.consume(); // e.consume();
}) // })
.grow(true, false), // .grow(true, false),
null) // null)
.separator() // .separator()
.addComp( .addComp(
new TileButtonComp("launchDebugMode", "launchDebugModeDescription", "mdmz-refresh", e -> { new TileButtonComp("launchDebugMode", "launchDebugModeDescription", "mdmz-refresh", e -> {
OperationMode.executeAfterShutdown(() -> { OperationMode.executeAfterShutdown(() -> {

View file

@ -7,4 +7,6 @@
- Add support for handling symbolic links in file browser - Add support for handling symbolic links in file browser
- Add support for many more Linux terminals - Add support for many more Linux terminals
- Improve UI layout on Linux systems - Improve UI layout on Linux systems
- Introduce new logo
- Fix macOS local machine shell connection not finding some executables
- Many small miscellaneous fixes and improvements - Many small miscellaneous fixes and improvements