2.2.11
Some checks failed
Publish Release / Publish binaries (push) Has been cancelled

This commit is contained in:
Dvlv 2024-09-06 06:43:01 +01:00
parent 8797fbd5b3
commit d406c3962e
No known key found for this signature in database
GPG key ID: 1F4BD7220B7FDCFA
4 changed files with 13 additions and 6 deletions

View file

@ -20,6 +20,7 @@ Terminals are searched in the following order:
- Alacritty
- WezTerm
- Ptyxis
- Foot
- XTerm
- COSMIC Terminal

View file

@ -40,6 +40,12 @@
<url type="help">https://dvlv.github.io/BoxBuddyRS</url>
<releases>
<release version="2.2.11" date="2024-09-07">
<description>
<p>Translation Updates</p>
<p>Added support for Foot Terminal</p>
</description>
</release>
<release version="2.2.10" date="2024-08-30">
<description>
<p>Translation Updates</p>

View file

@ -869,7 +869,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.10");
d.set_version("2.2.11");
d.set_developer_name("Dvlv");
d.set_license_type(gtk::License::MitX11);
// TRANSLATORS: Description of the application

View file

@ -264,11 +264,6 @@ pub fn get_supported_terminals() -> Vec<TerminalOption> {
executable_name: String::from("alacritty"),
separator_arg: String::from("-e"),
},
TerminalOption {
name: String::from("Foot"),
executable_name: String::from("footclient"),
separator_arg: String::from("-e"),
},
TerminalOption {
name: String::from("WezTerm"),
executable_name: String::from("wezterm"),
@ -279,6 +274,11 @@ pub fn get_supported_terminals() -> Vec<TerminalOption> {
executable_name: String::from("ptyxis"),
separator_arg: String::from("--"),
},
TerminalOption {
name: String::from("Foot"),
executable_name: String::from("footclient"),
separator_arg: String::from("-e"),
},
TerminalOption {
name: String::from("Xterm"),
executable_name: String::from("xterm"),