Skip to content

Commit b74e083

Browse files
authored
Merge branch 'main' into fix_mavenant_plugin
2 parents 9bbf25c + e5a9c28 commit b74e083

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.adoc

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ This file documents all notable changes to https://github.com/devonfw/IDEasy[IDE
66

77
Release with new features and bugfixes:
88

9+
* https://github.com/devonfw/IDEasy/issues/1153[#1153]: Print SystemInfo in ide status
10+
911
The full list of changes for this release can be found in https://github.com/devonfw/IDEasy/milestone/24?closed=1[milestone 2025.03.002].
1012

1113
== 2025.03.001

cli/src/main/java/com/devonfw/tools/ide/commandlet/StatusCommandlet.java

+8
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import com.devonfw.tools.ide.environment.EnvironmentVariables;
88
import com.devonfw.tools.ide.git.GitContext;
99
import com.devonfw.tools.ide.migration.IdeMigrator;
10+
import com.devonfw.tools.ide.os.SystemInfo;
1011
import com.devonfw.tools.ide.tool.IdeasyCommandlet;
1112
import com.devonfw.tools.ide.version.VersionIdentifier;
1213

@@ -43,6 +44,13 @@ public void run() {
4344
logMigrationStatus();
4445
}
4546
new IdeasyCommandlet(this.context, null).checkIfUpdateIsAvailable();
47+
logSystemInfo();
48+
}
49+
50+
private void logSystemInfo() {
51+
SystemInfo systemInfo = this.context.getSystemInfo();
52+
this.context.info("Your operating system is {}({})@{} [{}@{}]", systemInfo.getOs(), systemInfo.getOsVersion(), systemInfo.getArchitecture(),
53+
systemInfo.getOsName(), systemInfo.getArchitectureName());
4654
}
4755

4856
private void logSettingsLegacyStatus() {

documentation/setup.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ The latest release of `IDEasy` can be downloaded from https://github.com/devonfw
2525
Extract the contents of the downloaded archive (`ide-cli-*.tar.gz`) to a new folder and run `setup` in this folder (on windows double-click on `setup.bat`).
2626

2727
To get started read the link:usage.adoc[usage].
28-
After the installation process, you can create a new project by typing: `ide create <project>`, replace `<project>` with your project name.
29-
Switch to the project folder e.g. `cd <project>` and install or configure tools for your project as needed.
28+
After the installation process, you can create a new project by typing in bash: `ide create <project>`, replace `<project>` with your project name.
29+
Switch to the project folder e.g. `cd <project>` and install or configure tools for your project as needed (for further details click link:project.adoc[here]).
3030

3131
=== Tweak installation location
3232

0 commit comments

Comments
 (0)