chore: fix CLI and website Java Installation download page #953
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
π Fix #938 : CLI and website Java Installation download page.
Issue
When users ran the tool without Java installed, it displayed a link to https://www.java.com/en/download/ β which points to Java 8, an outdated version incompatible with our tool.
This caused confusion and installation errors for users trying to install the correct Java version.
Fix Implemented
Replaced all instances of
https://www.java.com/en/download/with the updated and correct Java download page:
π https://www.oracle.com/java/technologies/downloads/
The following files were updated to reference the correct URL:
packages\exe\CrowdinCLIInstaller.issScreenshot of updated URL below:
packages\zip\install-crowdin-cli.shScreenshot of updated URL below:
packages\zip\setup_crowdin.batScreenshot of updated URL below:
website\docs\intro.mdScreenshot of updated URL below:
Commit Strategy
Each file update was made in a separate commit for better traceability and clarity.
All URL corrections were finalized together in a single PR to ensure consistent Java reference links across the repository.
Verification
β Verified the new link opens correctly on all major browsers.
β Tested tool installation flow with no broken redirects.
β Confirmed no other outdated Java URLs exist in the codebase.
Result:
Users will now be directed to the correct Java download page, ensuring smoother installation and compatibility across all platforms.