[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),
null)
.separator()
.addComp(
new TileButtonComp("restart", "restartDescription", "mdmz-refresh", e -> {
OperationMode.executeAfterShutdown(() -> {
try (var sc = ShellStore.createLocal()
.control()
.start()) {
var script = FileNames.join(
XPipeInstallation.getCurrentInstallationBasePath()
.toString(),
XPipeInstallation.getDaemonExecutablePath(sc.getOsType()));
sc.executeSimpleCommand(
ScriptHelper.createDetachCommand(sc, "\"" + script + "\""));
}
});
e.consume();
})
.grow(true, false),
null)
.separator()
// .addComp(
// new TileButtonComp("restart", "restartDescription", "mdmz-refresh", e -> {
// OperationMode.executeAfterShutdown(() -> {
// try (var sc = ShellStore.createLocal()
// .control()
// .start()) {
// var script = FileNames.join(
// XPipeInstallation.getCurrentInstallationBasePath()
// .toString(),
// XPipeInstallation.getDaemonExecutablePath(sc.getOsType()));
// sc.executeSimpleCommand(
// ScriptHelper.createDetachCommand(sc, "\"" + script + "\""));
// }
// });
// e.consume();
// })
// .grow(true, false),
// null)
// .separator()
.addComp(
new TileButtonComp("launchDebugMode", "launchDebugModeDescription", "mdmz-refresh", e -> {
OperationMode.executeAfterShutdown(() -> {

View file

@ -7,4 +7,6 @@
- Add support for handling symbolic links in file browser
- Add support for many more Linux terminals
- 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