Skip to content

Commit

Permalink
Merge branch 'main' into devonfw#734-improve-process-result
Browse files Browse the repository at this point in the history
  • Loading branch information
alfeilex authored Jan 7, 2025
2 parents 39de3a4 + ca658ef commit 04bd6d5
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .mvn/maven.config
Original file line number Diff line number Diff line change
@@ -1 +1 @@
-Drevision=2024.12.002-beta-SNAPSHOT
-Drevision=2025.01.001-beta-SNAPSHOT
8 changes: 8 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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

== 2025.01.001

Release with new features and bugfixes:


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

== 2024.12.002

Release with new features and bugfixes:
Expand All @@ -20,6 +27,7 @@ Then run the `setup` and all should work fine.
Release with new features and bugfixes:

* https://github.com/devonfw/IDEasy/issues/734[#734]: Improve ProcessResult: get out and err in order
* https://github.com/devonfw/IDEasy/issues/764[#764]: Fix IDEasy in CMD
* https://github.com/devonfw/IDEasy/issues/774[#774]: HTTP proxy support not working properly
* https://github.com/devonfw/IDEasy/issues/792[#792]: Honor new variable IDE_OPTIONS in ide command wrapper
* https://github.com/devonfw/IDEasy/issues/589[#589]: Fix NLS Bundles for Linux and MacOS
Expand Down
15 changes: 15 additions & 0 deletions cli/src/main/package/bin/ide.bat
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ Set _fBGreen=
Set _fBRed=
Set _RESET=

rem Add Git PATH entries for CMD - https://github.com/devonfw/IDEasy/issues/764
for %%H in ( HKEY_LOCAL_MACHINE HKEY_CURRENT_USER ) do for /F "usebackq tokens=2*" %%O in (`call "%SystemRoot%"\system32\reg.exe query "%%H\Software\GitForWindows" /v "InstallPath" 2^>nul ^| "%SystemRoot%\system32\findstr.exe" REG_SZ`) do set GIT_HOME=%%P

set "GIT_BIN=%GIT_HOME%\usr\bin"
set "GIT_CORE=%GIT_HOME%\mingw64\libexec\git-core"

if exist "%GIT_BIN%" (
echo "%PATH%" | find /i "%GIT_BIN%">nul || set "PATH=%PATH%;%GIT_BIN%"
)

if exist "%GIT_CORE%" (
echo "%PATH%" | find /i "%GIT_CORE%">nul || set "PATH=%PATH%;%GIT_CORE%"
)

if not "%1%" == "" (
ideasy %IDE_OPTIONS% %*
if not %ERRORLEVEL% == 0 (
Expand All @@ -17,6 +31,7 @@ REM https://stackoverflow.com/questions/61888625/what-is-f-in-the-for-loop-comma
for /f "tokens=*" %%i in ('ideasy %IDE_OPTIONS% env') do (
call set %%i
)

if not %ERRORLEVEL% == 0 (
echo IDE environment variables have been set for %IDE_HOME% in workspace %WORKSPACE%
)
12 changes: 7 additions & 5 deletions documentation/advanced-tooling-generic.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,13 @@ toc::[]
== Browser Plugins

There are tons of helpful browser plugins out there and it might be a matter of personal taste what you like to have installed.
However, as we are heavily using github we want to promote https://github.com/buunguyen/octotree#octotree[octotree].
The following are explicitly worth to mention:

* https://darkreader.org/[DarkReader] - for developers enjoying dark-mode (and get eye-cancer from white backgrounds)
* https://www.tampermonkey.net/[TamperMonkey] - even though not recommended to be always on for security reasons this is the ultimate swiss-army-knife of every web-developer.
* FF only: https://addons.mozilla.org/en-US/firefox/addon/simple-tab-groups/[Simple Tab Groups] - only for power-users that need to manage 100+ open tabs in multi-tenancy contexts (project A, project B, timetracking, travel, etc.).

For the record: HttpsEverywhere is dead since now there is https://www.eff.org/https-everywhere/set-https-default-your-browser[native browser support for HTTPS only].

== Draw Diagrams

Expand All @@ -21,7 +27,3 @@ Its simplicity allows branching and merging unlike other greedy binary UML data-

If you are looking for a git client that works cross-platform we recommend to use https://git-fork.com/[Fork].

== Tab Grouping For The Web Browser

https://addons.mozilla.org/en-US/firefox/addon/simple-tab-groups/[Simple Tab Groups] is a Firefox plugin that helps to separate tabs e.g. tabs for projekt A, projekt B, travelplanning or hobbies

0 comments on commit 04bd6d5

Please sign in to comment.