Wowzas
This commit is contained in:
parent
c64ae4e339
commit
2315a07601
19
CHANGELOG.md
19
CHANGELOG.md
|
@ -6,22 +6,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
### Added
|
### Added
|
||||||
- [2020-08-11] New CLI for specifying database location, cache folder, and settings [@carbotaniuman].
|
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- [2020-08-11] Change logging defaults [@carbotaniuman].
|
|
||||||
|
|
||||||
### Deprecated
|
### Deprecated
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
### Security
|
||||||
|
|
||||||
|
## [1.2.1] - 2020-08-11
|
||||||
|
### Added
|
||||||
|
- [2020-08-11] New CLI for specifying database location, cache folder, and settings [@carbotaniuman].
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- [2020-08-11] Change logging defaults [@carbotaniuman].
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- [2020-08-11] Bugs relating to `settings.json` changes [@carbotaniuman].
|
- [2020-08-11] Bugs relating to `settings.json` changes [@carbotaniuman].
|
||||||
- [2020-08-11] Logs taking up an absurd amount of space [@carbotaniuman].
|
- [2020-08-11] Logs taking up an absurd amount of space [@carbotaniuman].
|
||||||
- [2020-08-11] Random crashes for no reason [@carbotaniuman].
|
- [2020-08-11] Random crashes for no reason [@carbotaniuman].
|
||||||
- [2020-08-11] SQLException is noww properly handled [@carbotaniuman].
|
- [2020-08-11] SQLException is now properly handled [@carbotaniuman].
|
||||||
|
|
||||||
### Security
|
|
||||||
|
|
||||||
## [1.2.0] - 2020-08-10
|
## [1.2.0] - 2020-08-10
|
||||||
### Added
|
### Added
|
||||||
|
@ -226,7 +234,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
### Fixed
|
### Fixed
|
||||||
- [2020-06-11] Tweaked logging configuration to reduce log file sizes by [@carbotaniuman].
|
- [2020-06-11] Tweaked logging configuration to reduce log file sizes by [@carbotaniuman].
|
||||||
|
|
||||||
[Unreleased]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/1.2.0...HEAD
|
[Unreleased]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/1.2.1...HEAD
|
||||||
|
[1.2.1]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/1.2.0...1.2.1
|
||||||
[1.2.0]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/1.1.5...1.2.0
|
[1.2.0]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/1.1.5...1.2.0
|
||||||
[1.1.5]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/1.1.4...1.1.5
|
[1.1.5]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/1.1.4...1.1.5
|
||||||
[1.1.4]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/1.1.3...1.1.4
|
[1.1.4]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/1.1.3...1.1.4
|
||||||
|
|
|
@ -21,7 +21,7 @@ package mdnet.base
|
||||||
import java.time.Duration
|
import java.time.Duration
|
||||||
|
|
||||||
object Constants {
|
object Constants {
|
||||||
const val CLIENT_BUILD = 17
|
const val CLIENT_BUILD = 18
|
||||||
|
|
||||||
@JvmField val MAX_AGE_CACHE: Duration = Duration.ofDays(14)
|
@JvmField val MAX_AGE_CACHE: Duration = Duration.ofDays(14)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue