Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Canop committed Feb 14, 2024
1 parent 71b126c commit 3072166
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
### next
- don't fail launch in case of bad verb configuration, more helpful error message in such case
- faster kitty image rendering by default - Fix #789

### v1.33.1 - 2024-02-03
<a name="v1.33.1"></a>
Expand Down
2 changes: 1 addition & 1 deletion src/image/image_view.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ impl ImageView {
}

self.kitty_image_id = kitty_manager
.try_print_image(w, &self.source_img, area, bg, disc.count, &disc.con)?;
.try_print_image(w, &self.source_img, area, bg, disc.count, disc.con)?;

if self.kitty_image_id.is_some() {
return Ok(());
Expand Down
1 change: 0 additions & 1 deletion src/shell_install/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ pub fn file_contains_line(path: &Path, searched_line: &str) -> Result<bool, Shel

pub fn append_to_file<S: AsRef<str>>(path: &Path, content: S) -> Result<(), ShellInstallError> {
let mut shellrc = OpenOptions::new()
.write(true)
.append(true)
.open(path)
.context(&|| format!("opening {path:?} for append"))?;
Expand Down

0 comments on commit 3072166

Please sign in to comment.