-
Notifications
You must be signed in to change notification settings - Fork 202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix installation bugs and add Windows installation #755
Conversation
Adds both the `bloop.cmd` for normal CMD users and a scoop installer for Powershell users. Fixes #567
1. Persist the choice of build tool and package manager so long as the tab is not closed. 1. Make links work (a page linking to #nix) will click the nix button when loading the page. Useful when linking to docs from external places.
/cc @philwalk @andrezimmermann @Katrix on improvements to Windows. /cc @igor-ramazanov @ouchxp @countfloyd @gabro on the fix of |
@@ -31,3 +31,4 @@ website/build/ | |||
website/build/bloop-gh-pages/ | |||
node_modules/ | |||
package-lock.json | |||
.metals/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
😍
@@ -34,6 +34,12 @@ | |||
} | |||
} | |||
|
|||
|
|||
previouslyBuildActive = null; | |||
if (typeof(Storage) !== "undefined") { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unrelated to this PR specifically, but typeof is an operator and it doesn't need parenthesis.
It works anyway because (a) == a, but it caught my JS dev eye 😅
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 thanks, good to know, will leave it as is to prove how terrible a js developer am, i cargo-culted it from https://www.w3schools.com/html/html5_webstorage.asp
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hahaha, nice one 👍
I'm merging, the Windows CI error seems spurious and this doesn't change the main logic of the server anyway. |
the session storage.
The fixed tickets are linked in the commit messages.