diff --git a/Cargo.toml b/Cargo.toml index 97e2cfd..3fe1a43 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dfint-installer" -version = "0.1.3" +version = "0.1.4" edition = "2021" build = "build.rs" diff --git a/assets/boosty.png b/assets/boosty.png deleted file mode 100644 index 3876dd0..0000000 Binary files a/assets/boosty.png and /dev/null differ diff --git a/locale/en-US.json b/locale/en-US.json index 6bb5497..223884b 100644 --- a/locale/en-US.json +++ b/locale/en-US.json @@ -1,6 +1,5 @@ { - "support": "support", - "report bug": "report bug", + "Report bug": "Report bug", "Path": "Path", "OS": "OS", "Checksum": "Checksum", diff --git a/locale/ru-RU.json b/locale/ru-RU.json index 605e368..458af5c 100644 --- a/locale/ru-RU.json +++ b/locale/ru-RU.json @@ -1,6 +1,5 @@ { - "support": "поддержка", - "report bug": "сообщить об ошибке", + "Report bug": "Сообщить об ошибке", "Path": "Путь", "OS": "ОС", "Checksum": "Контрольная сумма", diff --git a/src/app.rs b/src/app.rs index ca25a36..8962c4d 100644 --- a/src/app.rs +++ b/src/app.rs @@ -112,10 +112,8 @@ impl eframe::App for App { // status bar egui::TopBottomPanel::bottom("status").show(ctx, |ui| { ui.horizontal_centered(|ui| { - ui.add(egui::Image::new(BOOSTY_ICON.to_owned()).max_height(15.).max_width(15.)); - ui.hyperlink_to(t!("support"), URL_BOOSTY); ui.add(egui::Image::new(GITHUB_ICON.to_owned()).max_height(15.).max_width(15.)); - ui.hyperlink_to(t!("report bug"), URL_BUGS); + ui.hyperlink_to(t!("Report bug"), URL_BUGS); ui.label(format!("v{VERSION}")); }) }); diff --git a/src/constants.rs b/src/constants.rs index d9fb326..854e0aa 100644 --- a/src/constants.rs +++ b/src/constants.rs @@ -1,7 +1,5 @@ pub const VERSION: &'static str = env!("CARGO_PKG_VERSION"); -pub const BOOSTY_ICON: eframe::egui::widgets::ImageSource<'static> = - eframe::egui::include_image!("../assets/boosty.png"); pub const GITHUB_ICON: eframe::egui::widgets::ImageSource<'static> = eframe::egui::include_image!("../assets/github.png"); pub const APP_ICON: &'static [u8; 1980] = include_bytes!("../assets/df.png");