You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The correct casing of macOS 404s. Should be corrected, but making paths case-insensitive and redirect to the desired casing has to happen too (to prevent the first link from not working). Wikipedia and the osu! wiki does case-insensitive.
Noticed that on lazer, there was no faq listed on macOS because it was outdated. I wanted to update it, but had to resort to this:
I think this is a limitation of GitHub pages. We could workaround this by duplicating filenames to some desired paths (e.g. MacOS -> macOS) but I can also foresee this becoming cumbersome to keep up.
I think this is a limitation of GitHub pages. We could workaround this by duplicating filenames to some desired paths (e.g. MacOS -> macOS) but I can also foresee this becoming cumbersome to keep up.
It can be symlinked as git does support symbolic links
https://opentabletdriver.net/Wiki/FAQ/MacOS and https://opentabletdriver.net/Wiki/FAQ/macOS
The correct casing of
macOS
404s. Should be corrected, but making paths case-insensitive and redirect to the desired casing has to happen too (to prevent the first link from not working). Wikipedia and the osu! wiki does case-insensitive.Noticed that on lazer, there was no faq listed on macOS because it was outdated. I wanted to update it, but had to resort to this:
$@"https://opentabletdriver.net/Wiki/FAQ/{(RuntimeInfo.OS == RuntimeInfo.Platform.macOS ? @"MacOS" : RuntimeInfo.OS)}"
because
RuntimeInfo.OS
returnsmacOS
.The text was updated successfully, but these errors were encountered: