Skip to content

Commit 0a11259

Browse files
committed
Migrate development environment from Windows to macOS and continue project updates
- Shifted primary development environment from Windows to macOS to ensure better performance, stability, and streamlined workflow for Java development. - Removed OS-specific metadata and ensured platform-agnostic project compatibility. - Normalized line endings to LF for cross-platform consistency. - Verified and adjusted file paths, permissions, and encoding settings to suit macOS environment. - Cleaned up unnecessary Windows-generated files and updated Git configuration accordingly. - Future commits and development will now be managed entirely from macOS. This migration ensures a cleaner, more consistent setup moving forward and prepares the project for scalable development across Unix-based systems. Future development will continue on macOS for a smoother, Unix-based experience. Signed-off-by: Someshdiwan <[email protected]>
1 parent 78af52f commit 0a11259

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

JDK Features/Links.cmd

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,20 @@ echo 1. OpenJDK 24 Project Page
1010
echo 2. IntelliJ IDEA & Java 24 Blog
1111
echo 3. OpenJDK JEP 0 (Placeholder)
1212
echo 4. Java Almanac Features
13-
echo 5. Exit
13+
echo 5. Java SE Specifications (Oracle)
14+
echo 6. Exit
1415
echo.
15-
set /p choice=Enter your choice [1-5]:
16+
set /p choice=Enter your choice [1-6]:
1617

1718
if "%choice%"=="1" start https://openjdk.org/projects/jdk/24/ & goto MENU
1819
if "%choice%"=="2" start https://blog.jetbrains.com/idea/2025/03/java-24-and-intellij-idea/ & goto MENU
1920
if "%choice%"=="3" start https://openjdk.org/jeps/0 & goto MENU
2021
if "%choice%"=="4" start https://javaalmanac.io/features/ & goto MENU
21-
if "%choice%"=="5" goto END
22+
if "%choice%"=="5" start https://docs.oracle.com/javase/specs/ & goto MENU
23+
if "%choice%"=="6" goto END
2224

2325
echo.
24-
echo Invalid choice. Please select 1–5.
26+
echo Invalid choice. Please select 1–6.
2527
pause
2628
goto MENU
2729

0 commit comments

Comments
 (0)