Skip to content

Commit

Permalink
Update: v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi committed May 20, 2024
1 parent 2342988 commit 2875fb0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aivoice-vox"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
build = "build.rs"

Expand Down
17 changes: 12 additions & 5 deletions src/routes/info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,18 @@ pub async fn get_engine_manifest() -> Json<EngineManifest> {
icon,
default_sampling_rate: 48000,
terms_of_service: "[A.I.VOICE Editor API 利用規約](https://aivoice.jp/manual/editor/api.html#termsandconditions) を参照してください。".to_string(),
update_infos: vec![UpdateInfo {
version: "0.1.0".to_string(),
descriptions: vec!["初期リリース".to_string()],
contributors: vec!["sevenc-nanashi".to_string()],
}],
update_infos: vec![
UpdateInfo {
version: "0.1.1".to_string(),
descriptions: vec!["Recotte Studioに対応".to_string()],
contributors: vec!["sevenc-nanashi".to_string()],
},
UpdateInfo {
version: "0.1.0".to_string(),
descriptions: vec!["初期リリース".to_string()],
contributors: vec!["sevenc-nanashi".to_string()],
}
],
dependency_licenses,
supported_features: SupportedFeatures {
adjust_mora_pitch: false,
Expand Down

0 comments on commit 2875fb0

Please sign in to comment.