Fix broken Windows install command + add Mac/Linux download buttons - #14
Draft
Cookie774-GameDev wants to merge 4 commits into
Draft
Fix broken Windows install command + add Mac/Linux download buttons#14Cookie774-GameDev wants to merge 4 commits into
Cookie774-GameDev wants to merge 4 commits into
Conversation
Co-authored-by: Cookie774-GameDev <Cookie774-GameDev@users.noreply.github.com>
Co-authored-by: Cookie774-GameDev <Cookie774-GameDev@users.noreply.github.com>
…arses The PowerShell installer was saved as UTF-16LE without a BOM. When fetched via 'irm ... | iex', GitHub serves it as UTF-8, so PowerShell decoded the NUL-interleaved bytes incorrectly and the parser failed with cascading 'Missing closing )' / reserved-ampersand errors before the script could run. Re-encode as ASCII/UTF-8 and replace two mojibake glyphs with ASCII. Co-authored-by: Cookie774-GameDev <Cookie774-GameDev@users.noreply.github.com>
… not clipped Grid items default to min-width:auto; the no-wrap install command gave each column a large min-content width, overflowing the overflow:hidden .dl container and clipping the Linux card. Add min-width:0 so columns shrink and commands ellipsize. Co-authored-by: Cookie774-GameDev <Cookie774-GameDev@users.noreply.github.com>
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.
Problem
Running the public Windows install command failed before the script could start:
Root cause
install/install.ps1was committed as UTF-16LE without a BOM. When fetched viairm ... | iex, GitHub serves the bytes ascharset=utf-8, so PowerShell decoded the NUL-interleaved bytes incorrectly. The scrambled text broke tokenization — here-strings were no longer recognized and&/parenthesis errors cascaded at shifted character positions, so the installer never ran.Reproduced the user's exact errors with the PowerShell parser, then confirmed 0 errors after re-encoding:
ParseFileerrorsirm|iex(UTF-8 decode) errorsL89:C38,L86:C48,L652:C32… matching the report)A dry-run execution now prints the banner, resolves the latest version, and downloads the real 17.46 MB Windows installer from GitHub Releases.
Changes
install/install.ps1— re-encoded UTF-16LE → ASCII/UTF-8 (no behavior change); replaced two mojibake glyphs (ΓÇö,┬╖) with ASCII so the file is fully ASCII-safe.landing/index.html+landing/assets/css/main.css— replaced the Windows-only download block with three copy-paste cards (Windows / macOS / Linux), each with the correct one-line installer and a direct GitHub Releases download link; hero CTA now reads "Download — Win / Mac / Linux".min-width:0on the cards so the no-wrap commands ellipsize instead of overflowing and clipping the Linux card.No application code or in-app UI was changed.
Walkthrough
Three download cards: Windows, macOS, Linux
All three platforms now appear side by side with copy-paste install commands.
Install command copied toast
Clicking a command copies it ("Install command copied" toast).
vibespace_download_section_three_platforms.mp4
To show artifacts inline, enable in settings.