v0.5.1
The following release notes are automatically generated.
For the complete changelog, visit here.
If you encounter any problems, please report them on the issues page.
Updating
Since v0.3.1, you can update tosho
using the following command:
tosho update
Which will automatically download the latest version of tosho
and replace the old one.
Changelog
New Features
M+
: Allow overriding app version code.
This should help mitigates issue with needing to update to latest version.
You can use in CLI like this:
$ tosho mp -p XXX [...]
Or, in Rust code:
use tosho_mplus::MPClient;
use tosho_mplus::proto::Language;
use tosho_mplus::constants::get_constants;
#[tokio::main]
async fn main() {
let client = MPClient::new("1234", Language::English, get_constants(1))
.with_app_ver(256);
let home_view = client.get_home_page().await.unwrap();
}
Changes
KM
: Cleanup chapters information a bitM+
: Update app version- INTERNAL: Use more macros expansion on config implementation.
Build
- Update
tokio
,serde
,prost
, anddocumented