Timo Aaltonen pushed to branch debian-unstable at X Strike Force / lib / libxcvt
Commits: d3468537 by Dima Krasner at 2022-04-04T15:34:04+08:00 make xrandr report 1366x768 instead of 1360x768 Signed-off-by: Dima Krasner <d...@dimakrasner.com> - - - - - db5ff121 by Jeremy Huddleston Sequoia at 2022-06-20T19:42:01-07:00 meson: Add initial darwin_versions Signed-off-by: Jeremy Huddleston Sequoia <jerem...@apple.com> - - - - - d9ca87ee by Olivier Fourdan at 2022-07-18T09:23:34+02:00 libxcvt 0.1.2 Signed-off-by: Olivier Fourdan <ofour...@redhat.com> - - - - - 501a897d by Timo Aaltonen at 2022-07-25T14:57:07+03:00 Merge branch 'upstream-unstable' into debian-unstable - - - - - 63f4724d by Timo Aaltonen at 2022-07-25T14:59:07+03:00 version bump - - - - - 266d0746 by Timo Aaltonen at 2022-07-25T15:01:16+03:00 release to sid - - - - - 4 changed files: - debian/changelog - lib/libxcvt.c - lib/meson.build - meson.build Changes: ===================================== debian/changelog ===================================== @@ -1,8 +1,9 @@ -libxcvt (0.1.1-4) UNRELEASED; urgency=medium +libxcvt (0.1.2-1) unstable; urgency=medium + * New upstream release. (LP: #1970021) * tests: Drop running dh_auto_test, the package has no upstream tests. - -- Timo Aaltonen <tjaal...@debian.org> Tue, 28 Jun 2022 15:01:49 +0300 + -- Timo Aaltonen <tjaal...@debian.org> Mon, 25 Jul 2022 14:59:11 +0300 libxcvt (0.1.1-3) unstable; urgency=medium ===================================== lib/libxcvt.c ===================================== @@ -292,7 +292,8 @@ libxcvt_gen_mode_info(int hdisplay, int vdisplay, float vrefresh, bool reduced, mode_info->mode_flags |= LIBXCVT_MODE_FLAG_INTERLACE; /* FWXGA hack adapted from hw/xfree86/modes/xf86EdidModes.c, because you can't say 1366 */ - if (mode_info->hdisplay == 1366 && mode_info->vdisplay == 768) { + if (mode_info->hdisplay == 1360 && mode_info->vdisplay == 768) { + mode_info->hdisplay = 1366; mode_info->hsync_start--; mode_info->hsync_end--; } ===================================== lib/meson.build ===================================== @@ -3,4 +3,5 @@ libxcvt = shared_library('xcvt', libxcvt_sources, include_directories : inc, version: meson.project_version(), + darwin_versions : ['1.0.0', '1.0.0' ], install : true) ===================================== meson.build ===================================== @@ -1,5 +1,5 @@ project('libxcvt', 'c', - version: '0.1.1', + version: '0.1.2', meson_version: '>= 0.40.0', default_options: ['warning_level=1', 'buildtype=debugoptimized']) View it on GitLab: https://salsa.debian.org/xorg-team/lib/libxcvt/-/compare/2867232ecb5506599d9b329e482c3e0213213f88...266d0746680528e5fcf6c893513c00a52145e906 -- View it on GitLab: https://salsa.debian.org/xorg-team/lib/libxcvt/-/compare/2867232ecb5506599d9b329e482c3e0213213f88...266d0746680528e5fcf6c893513c00a52145e906 You're receiving this email because of your account on salsa.debian.org.