Skip to content

Commit

Permalink
#856: Made gcviewer start in background (#896)
Browse files Browse the repository at this point in the history
  • Loading branch information
WorkingAmeise authored Dec 13, 2024
1 parent 11de3ca commit 83acd3a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

This file documents all notable changes to https://github.com/devonfw/IDEasy[IDEasy].

== 2024.12.002

Release with new features and bugfixes:

* https://github.com/devonfw/IDEasy/issues/885[#885]: Gcviewer starts in foreground fixed

The full list of changes for this release can be found in https://github.com/devonfw/IDEasy/milestone/17?closed=1[milestone 2024.12.002].

== 2024.12.001

NOTE: ATTENTION: When installing this release as an update, you need to manually remove IDEasy entries from `.bashrc` and if present also `.zshrc`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import com.devonfw.tools.ide.common.Tag;
import com.devonfw.tools.ide.context.IdeContext;
import com.devonfw.tools.ide.process.ProcessContext;
import com.devonfw.tools.ide.process.ProcessMode;
import com.devonfw.tools.ide.tool.LocalToolCommandlet;
import com.devonfw.tools.ide.tool.ToolCommandlet;
import com.devonfw.tools.ide.tool.java.Java;
Expand Down Expand Up @@ -40,6 +41,6 @@ public void run() {
pc.executable("java");
pc.addArg("-jar");
pc.addArg("gcviewer-" + getInstalledVersion() + ".jar");
pc.run();
pc.run(ProcessMode.BACKGROUND_SILENT);
}
}

0 comments on commit 83acd3a

Please sign in to comment.