Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Release with new features and bugfixes:
* https://github.com/devonfw/IDEasy/issues/1853[#1853]: Add ARM releases for VSCode on Mac
* https://github.com/devonfw/IDEasy/issues/797[#797]: Use system unzip on macOS to preserve symlinks in ZIP extraction
* https://github.com/devonfw/IDEasy/issues/1723[#1723]: Add commandlet for GitHub Copilot CLI
* https://github.com/devonfw/IDEasy/issues/1688[#1688]: Remove unnecessary message in the CLI when installing a new tool

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,14 +190,12 @@ protected List<PackageManagerCommand> getInstallPackageManagerCommands() {
@Override
public VersionIdentifier getInstalledVersion() {
//TODO: handle "get-version <globaltool>"
LOG.error("Couldn't get installed version of " + this.getName());
return null;
}

@Override
public String getInstalledEdition() {
//TODO: handle "get-edition <globaltool>"
LOG.error("Couldn't get installed edition of " + this.getName());
return null;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ protected List<PackageManagerCommand> getInstallPackageManagerCommands() {
public VersionIdentifier getInstalledVersion() {

if (!isDockerInstalled()) {
LOG.error("Couldn't get installed version of " + this.getName());
return null;
}

Expand Down Expand Up @@ -148,7 +147,6 @@ private VersionIdentifier getRancherDesktopClientVersion() {
public String getInstalledEdition() {

if (!isDockerInstalled()) {
LOG.error("Couldn't get installed edition of {}", this.getName());
return null;
}

Expand Down
Loading