diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f8749f..d9b3599 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Security +## [2.0.0-rc11] - 2021-02-11 +### Fixed +- [2021-02-11] Fixed docker bug [@carbotaniuman]. + ## [2.0.0-rc10] - 2021-02-11 ### Added - [2021-02-11] Add ability to disable io_uring and epoll [@carbotaniuman]. @@ -353,7 +357,8 @@ This release contains many breaking changes! Of note are the changes to the cach ### Fixed - [2020-06-11] Tweaked logging configuration to reduce log file sizes by [@carbotaniuman]. -[Unreleased]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/2.0.0-rc10...HEAD +[Unreleased]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/2.0.0-rc11...HEAD +[2.0.0-rc11]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/2.0.0-rc10...2.0.0-rc11 [2.0.0-rc10]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/2.0.0-rc9...2.0.0-rc10 [2.0.0-rc9]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/2.0.0-rc8...2.0.0-rc9 [2.0.0-rc8]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/2.0.0-rc7...2.0.0-rc8 diff --git a/src/main/kotlin/mdnet/Main.kt b/src/main/kotlin/mdnet/Main.kt index 39902cf..d1e3639 100644 --- a/src/main/kotlin/mdnet/Main.kt +++ b/src/main/kotlin/mdnet/Main.kt @@ -34,7 +34,7 @@ fun main(args: Array) { @CommandLine.Command(name = "java -jar ", usageHelpWidth = 120, version = ["Client Version ${BuildInfo.VERSION} (Build ${Constants.CLIENT_BUILD})"]) class Main : Runnable { - @field:CommandLine.Option(names = ["-s", "--settings"], defaultValue = ".\\settings.yaml", paramLabel = "", description = ["the settings file (default: \${DEFAULT-VALUE})"]) + @field:CommandLine.Option(names = ["-s", "--settings"], defaultValue = "settings.yaml", paramLabel = "", description = ["the settings file (default: \${DEFAULT-VALUE})"]) lateinit var settingsFile: File @field:CommandLine.Option(names = ["-d", "--database"], defaultValue = ".\\", paramLabel = "", description = ["the database folder (default: \${DEFAULT-VALUE})"]) lateinit var databaseFolder: Path