diff --git a/README.md b/README.md index 43c236a..48ab927 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,8 @@ Usage:
[-h] [-c=] [-d=] [- A JSON file with valid bandcamp credential cookies. "Cookie Quick Manager" can be used to obtain this file after logging into bandcamp. (visit https://addons.mozilla.org/en-US/firefox/addon/cookie-quick-manager/). - If no cookies file is provided, cookies from the local Firefox installation are used (Linux only). + If no cookies file is provided, cookies from the local Firefox installation are used (Windows and + Linux only). -d, --download-folder= The folder in which downloaded albums must be extracted. The following structure is considered: // - . @@ -25,7 +26,7 @@ Usage:
[-h] [-c=] [-d=] [- This tool does not manage authentication with Bandcamp servers, as they require a valid token from Google Captcha. Hence, authentication must first be achieved using Firefox. Then there are two possibilities: -- If running a Linux system (and if the `--cookies-file` parameter is not used), then the tool will automatically find the required cookies in the Firefox profile folder of the system user. +- If running a Windows or Linux system (and if the `--cookies-file` parameter is not used), then the tool will automatically find the required cookies in the Firefox profile folder of the system user. - Else, Bandcamp cookies must be exported in JSON using the Firefox Addon [Cookie Quick Manager](https://addons.mozilla.org/en-US/firefox/addon/cookie-quick-manager/). This JSON file can then be used using the parameter `--cookies-file`: diff --git a/src/main/kotlin/bandcampcollectiondownloader/Main.kt b/src/main/kotlin/bandcampcollectiondownloader/Main.kt index 1dfe2bb..7dcb832 100644 --- a/src/main/kotlin/bandcampcollectiondownloader/Main.kt +++ b/src/main/kotlin/bandcampcollectiondownloader/Main.kt @@ -14,7 +14,7 @@ data class Args( description = arrayOf("A JSON file with valid bandcamp credential cookies.", """"Cookie Quick Manager" can be used to obtain this file after logging into bandcamp.""", "(visit https://addons.mozilla.org/en-US/firefox/addon/cookie-quick-manager/).", - "If no cookies file is provided, cookies from the local Firefox installation are used (Linux only).")) + "If no cookies file is provided, cookies from the local Firefox installation are used (Windows and Linux only).")) var pathToCookiesFile: Path? = null, @CommandLine.Option(names = arrayOf("--audio-format", "-f"), required = false,