-
-
Notifications
You must be signed in to change notification settings - Fork 348
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
Support multiple KSP installs. #29
Comments
This has been implemented for both cmdline and GUI in #125, closing issue. |
For what it's worth, the coolest way to close issues is to simply have "closes #29" in a git commit. When that merges to master, it will close the issue automatically. It's super cool, because it means that when a branch it merged it closes all the issues it solves, and when a branch is pending merge you can still see where the commits that that are needed for issue resolution. It's one of my favourite workflows ever. :) |
Makes sense, I will do this from now on :) |
core-9 multiple repos, part 1
Update autoformatting rules
(Text mostly taken from @Wizarth in #23)
It's a common use case for modders to have multiple installations/copies of KSP.
I suggest a per-user index of installs. This is enough data to point one instance of
CKAN to different installs of KSP, each with it's own per-install data store.
We can safely assume any install folder will be writable by CKAN (or else how would we
install mods).
This then allows users to specify which install they want to operate against. If one is not
specified, assume special case default.
As per #28, if no installs defined, CKAN should attempt to automatically detect default. (E.G. Steam).
If not possible to detect, user should be prompted to define default install.
Install data should be stored in the Windows/Mono registry, since we can't access (or even create) the CKAN registry until we know which install we're dealing with.
Currently being worked upon by @Wizarth, unless he claims otherwise. ;)
The text was updated successfully, but these errors were encountered: