This commit is contained in:
parent
8797fbd5b3
commit
d406c3962e
4 changed files with 13 additions and 6 deletions
|
@ -20,6 +20,7 @@ Terminals are searched in the following order:
|
||||||
- Alacritty
|
- Alacritty
|
||||||
- WezTerm
|
- WezTerm
|
||||||
- Ptyxis
|
- Ptyxis
|
||||||
|
- Foot
|
||||||
- XTerm
|
- XTerm
|
||||||
- COSMIC Terminal
|
- COSMIC Terminal
|
||||||
|
|
||||||
|
|
|
@ -40,6 +40,12 @@
|
||||||
<url type="help">https://dvlv.github.io/BoxBuddyRS</url>
|
<url type="help">https://dvlv.github.io/BoxBuddyRS</url>
|
||||||
|
|
||||||
<releases>
|
<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">
|
<release version="2.2.10" date="2024-08-30">
|
||||||
<description>
|
<description>
|
||||||
<p>Translation Updates</p>
|
<p>Translation Updates</p>
|
||||||
|
|
|
@ -869,7 +869,7 @@ fn show_about_popup(window: &ApplicationWindow) {
|
||||||
let d = adw::AboutWindow::new();
|
let d = adw::AboutWindow::new();
|
||||||
d.set_transient_for(Some(window));
|
d.set_transient_for(Some(window));
|
||||||
d.set_application_name("BoxBuddy");
|
d.set_application_name("BoxBuddy");
|
||||||
d.set_version("2.2.10");
|
d.set_version("2.2.11");
|
||||||
d.set_developer_name("Dvlv");
|
d.set_developer_name("Dvlv");
|
||||||
d.set_license_type(gtk::License::MitX11);
|
d.set_license_type(gtk::License::MitX11);
|
||||||
// TRANSLATORS: Description of the application
|
// TRANSLATORS: Description of the application
|
||||||
|
|
10
src/utils.rs
10
src/utils.rs
|
@ -264,11 +264,6 @@ pub fn get_supported_terminals() -> Vec<TerminalOption> {
|
||||||
executable_name: String::from("alacritty"),
|
executable_name: String::from("alacritty"),
|
||||||
separator_arg: String::from("-e"),
|
separator_arg: String::from("-e"),
|
||||||
},
|
},
|
||||||
TerminalOption {
|
|
||||||
name: String::from("Foot"),
|
|
||||||
executable_name: String::from("footclient"),
|
|
||||||
separator_arg: String::from("-e"),
|
|
||||||
},
|
|
||||||
TerminalOption {
|
TerminalOption {
|
||||||
name: String::from("WezTerm"),
|
name: String::from("WezTerm"),
|
||||||
executable_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"),
|
executable_name: String::from("ptyxis"),
|
||||||
separator_arg: String::from("--"),
|
separator_arg: String::from("--"),
|
||||||
},
|
},
|
||||||
|
TerminalOption {
|
||||||
|
name: String::from("Foot"),
|
||||||
|
executable_name: String::from("footclient"),
|
||||||
|
separator_arg: String::from("-e"),
|
||||||
|
},
|
||||||
TerminalOption {
|
TerminalOption {
|
||||||
name: String::from("Xterm"),
|
name: String::from("Xterm"),
|
||||||
executable_name: String::from("xterm"),
|
executable_name: String::from("xterm"),
|
||||||
|
|
Loading…
Reference in a new issue