Skip to content

Commit

Permalink
Merge pull request #158 from melody-rs/update-alacritty
Browse files Browse the repository at this point in the history
Update alacritty to 0.24.2
  • Loading branch information
white-axe authored Feb 1, 2025
2 parents fbe3f66 + 83f185e commit f361ef9
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 37 deletions.
88 changes: 52 additions & 36 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ image = { version = "0.25.0", features = [
"png",
] } # Image processing library. Supported image formats: https://crates.io/crates/image#supported-image-formats

alacritty_terminal = "0.22.0" # A library for writing terminal emulators, based on Alacritty, a fast, cross-platform OpenGL terminal emulator
alacritty_terminal = "0.24.2" # A library for writing terminal emulators, based on Alacritty, a fast, cross-platform OpenGL terminal emulator

# * Data processing * #
serde = { version = "1.0", features = [
Expand Down
2 changes: 2 additions & 0 deletions crates/term/src/widget/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ impl ProcessTerminal {
.map(|program| alacritty_terminal::tty::Shell::new(program, exec.args)),
working_directory: exec.working_directory,
hold: false,
// maybe should make this an option, or pass in Luminol's environment vars
env: std::collections::HashMap::new(),
};
let backend = crate::backends::Process::new(&options, update_state)?;
Ok(Self::new(
Expand Down

0 comments on commit f361ef9

Please sign in to comment.