chore: fix CLI and website Java Installation download page#953
Merged
andrii-bodnar merged 4 commits intocrowdin:mainfrom Oct 27, 2025
Merged
chore: fix CLI and website Java Installation download page#953andrii-bodnar merged 4 commits intocrowdin:mainfrom
andrii-bodnar merged 4 commits intocrowdin:mainfrom
Conversation
… and shell execution
andrii-bodnar
approved these changes
Oct 27, 2025
Member
andrii-bodnar
left a comment
There was a problem hiding this comment.
LGTM! @calebjubal thanks for the contribution!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.