diff --git a/Cargo.lock b/Cargo.lock index a75c3da..f1034ec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1414,7 +1414,7 @@ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" [[package]] name = "jap_learn" -version = "0.1.0" +version = "0.1.1" dependencies = [ "dirs", "iced", diff --git a/Cargo.toml b/Cargo.toml index e4564a8..7c63db9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jap_learn" -version = "0.1.0" +version = "0.1.1" edition = "2024" [dependencies] diff --git a/src/randomizer.rs b/src/randomizer.rs index 2ce03d0..a6becf6 100644 --- a/src/randomizer.rs +++ b/src/randomizer.rs @@ -60,7 +60,7 @@ pub mod randomizer { button("Назад").on_press(Back), text_editor(&self.text).on_action(RandomizerMessage::Edit ).width(400).height(400).placeholder("Каждый элемент с новой строки"), - button("Начать").on_press(Start), + button("Перемешать").on_press(Start), ] .spacing(5), )