New
v0.8.0
What's Changed
- feat(Config): add more configuration by @josueBarretogit in https://github.com/josueBarretogit/manga-tui/pull/161
New configuration was added:
# Enable / disable checking for new updates
# values: true, false
# default: true
check_new_updates = true
# Sets which manga provider will be used when running manga-tui,
# you can override it by running manga-tui with the -p flag like this: manga-tui -p weebcentral
# values: mangadex, weebcentral
# default: "mangadex"
default_manga_provider = "mangadex"
# Enable / disable tracking reading history with services like `anilist`
# values: true, false
# default: true
track_reading_history = true
# Anilist-related config, if you want `manga-tui` to read your anilist credentials from this file then place them here
[anilist]
# Your client id from your anilist account
# leave it as an empty string "" if you don't want to use the config file to read your anilist credentials
# values: string
# default: ""
client_id = ""
# Your acces token from your anilist account
# leave it as an empty string "" if you don't want to use the config file to read your anilist credentials
# values: string
# default: ""
access_token = ""
- fix(weebcentral): fix home page scraper by @josueBarretogit in https://github.com/josueBarretogit/manga-tui/pull/165