Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package foot for openSUSE:Factory checked in at 2023-10-18 21:25:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/foot (Old) and /work/SRC/openSUSE:Factory/.foot.new.31755 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "foot" Wed Oct 18 21:25:25 2023 rev:28 rq:1118347 version:1.16.2 Changes: -------- --- /work/SRC/openSUSE:Factory/foot/foot.changes 2023-10-12 23:42:15.529222646 +0200 +++ /work/SRC/openSUSE:Factory/.foot.new.31755/foot.changes 2023-10-18 21:25:30.668268858 +0200 @@ -2 +2,8 @@ -Thu Oct 12 15:37:45 UTC 2023 - Arnav Singh <m...@arnavion.dev> +Tue Oct 17 15:42:16 UTC 2023 - Arnav Singh <opens...@arnavion.dev> + +- Update to v1.16.2: + * Fixed bug in rendering some sixels with edges of the wrong color. + * See https://codeberg.org/dnkl/foot/releases/tag/1.16.2 for more details. + +------------------------------------------------------------------- +Thu Oct 12 15:37:45 UTC 2023 - Arnav Singh <opens...@arnavion.dev> Old: ---- foot-1.16.1.tar.gz New: ---- foot-1.16.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ foot.spec ++++++ --- /var/tmp/diff_new_pack.2lnhNP/_old 2023-10-18 21:25:31.984316531 +0200 +++ /var/tmp/diff_new_pack.2lnhNP/_new 2023-10-18 21:25:31.996316966 +0200 @@ -17,7 +17,7 @@ Name: foot -Version: 1.16.1 +Version: 1.16.2 Release: 0 Summary: A Wayland terminal emulator License: MIT ++++++ foot-1.16.1.tar.gz -> foot-1.16.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/foot/CHANGELOG.md new/foot/CHANGELOG.md --- old/foot/CHANGELOG.md 2023-10-12 16:36:18.000000000 +0200 +++ new/foot/CHANGELOG.md 2023-10-17 17:24:12.000000000 +0200 @@ -1,5 +1,6 @@ # Changelog +* [1.16.2](#1-16-2) * [1.16.1](#1-16-1) * [1.16.0](#1-16-0) * [1.15.3](#1-15-3) @@ -46,6 +47,15 @@ * [1.2.1](#1-2-1) * [1.2.0](#1-2-0) +## 1.16.2 + +### Fixed + +* Last row and/or column of opaque sixels (not having a size that is a + multiple of the cell size) being the wrong color ([#1520][1520]). + +[1520]: https://codeberg.org/dnkl/foot/issues/1520 + ## 1.16.1 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/foot/meson.build new/foot/meson.build --- old/foot/meson.build 2023-10-12 16:36:18.000000000 +0200 +++ new/foot/meson.build 2023-10-17 17:24:12.000000000 +0200 @@ -1,5 +1,5 @@ project('foot', 'c', - version: '1.16.1', + version: '1.16.2', license: 'MIT', meson_version: '>=0.59.0', default_options: [ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/foot/render.c new/foot/render.c --- old/foot/render.c 2023-10-12 16:36:18.000000000 +0200 +++ new/foot/render.c 2023-10-17 17:24:12.000000000 +0200 @@ -1309,7 +1309,7 @@ if ((last_row_needs_erase && last_row) || (last_col_needs_erase && last_col)) { - render_cell(term, pix, damage, row, term_row_no, col, cursor_col); + render_cell(term, pix, damage, row, term_row_no, col, cursor_col == col); } else { cell->attrs.clean = 1; cell->attrs.confined = 1;