We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
(not urgent for us, just filing so folks are aware of it)
dcs-liberation/dcs_liberation#1116
dcs.installation.get_dcs_saved_games_directory has two problems:
dcs.installation.get_dcs_saved_games_directory
DCS.openbeta
~/Saved Games
In case anyone is confused by the second one like I was, Windows does allow you to relocate "shell folders" like Saved Games:
https://docs.microsoft.com/en-us/windows/win32/shell/knownfolderid would be a starting place for fixing the second issue. There doesn't appear to be a python API for this (though there are libraries on pypi), but it should be fairly easy to use via ctypes.windll.
ctypes.windll
The text was updated successfully, but these errors were encountered:
No branches or pull requests
(not urgent for us, just filing so folks are aware of it)
dcs-liberation/dcs_liberation#1116
dcs.installation.get_dcs_saved_games_directory
has two problems:DCS.openbeta
is not tried (idk how to determine which should be used; I think standalone uses it but steam doesn't?)~/Saved Games
will not resolve to the correct location for users that have moved their Saved Games directoryIn case anyone is confused by the second one like I was, Windows does allow you to relocate "shell folders" like Saved Games:
https://docs.microsoft.com/en-us/windows/win32/shell/knownfolderid would be a starting place for fixing the second issue. There doesn't appear to be a python API for this (though there are libraries on pypi), but it should be fairly easy to use via
ctypes.windll
.The text was updated successfully, but these errors were encountered: