bump versions, fix issue with whitespace on app name
Some checks failed
Publish Release / Publish binaries (push) Has been cancelled
Some checks failed
Publish Release / Publish binaries (push) Has been cancelled
This commit is contained in:
parent
613fcb8f90
commit
63b442084a
4 changed files with 12 additions and 5 deletions
2
Makefile
2
Makefile
|
@ -40,4 +40,4 @@ update-translations:
|
|||
bash scripts/update-translations.sh
|
||||
|
||||
f40:
|
||||
GETTEXT_SYSTEM=true cargo build --release
|
||||
GETTEXT_SYSTEM=true cargo build --release && target/release/boxbuddy-rs
|
||||
|
|
|
@ -40,6 +40,11 @@
|
|||
<url type="help">https://dvlv.github.io/BoxBuddyRS</url>
|
||||
|
||||
<releases>
|
||||
<release version="2.2.7" date="2024-06-14">
|
||||
<description>
|
||||
<p>Fix issue launching apps with Run button</p>
|
||||
</description>
|
||||
</release>
|
||||
<release version="2.2.6" date="2024-06-13">
|
||||
<description>
|
||||
<p>French translations</p>
|
||||
|
|
|
@ -100,8 +100,6 @@ pub fn get_all_distroboxes() -> Vec<DBox> {
|
|||
is_running,
|
||||
});
|
||||
}
|
||||
|
||||
//println!("line: {:?}", line);
|
||||
}
|
||||
|
||||
my_boxes
|
||||
|
@ -395,7 +393,11 @@ pub fn get_apps_in_box(box_name: &str) -> Vec<DBoxApp> {
|
|||
|
||||
let app = DBoxApp {
|
||||
name: pieces[0].clone(),
|
||||
exec_name: pieces[1].replace("%F", "").replace("%U", ""),
|
||||
exec_name: pieces[1]
|
||||
.replace("%F", "")
|
||||
.replace("%U", "")
|
||||
.trim()
|
||||
.to_owned(),
|
||||
icon: pieces[2].clone(),
|
||||
desktop_file: desktop_file_name,
|
||||
is_on_host: host_apps.contains(&host_desktop_name),
|
||||
|
|
|
@ -870,7 +870,7 @@ fn show_about_popup(window: &ApplicationWindow) {
|
|||
let d = adw::AboutWindow::new();
|
||||
d.set_transient_for(Some(window));
|
||||
d.set_application_name("BoxBuddy");
|
||||
d.set_version("2.2.6");
|
||||
d.set_version("2.2.7");
|
||||
d.set_developer_name("Dvlv");
|
||||
d.set_license_type(gtk::License::MitX11);
|
||||
// TRANSLATORS: Description of the application
|
||||
|
|
Loading…
Reference in a new issue