diff -Nru boinctui-2.7.0/changelog boinctui-2.7.1/changelog --- boinctui-2.7.0/changelog 2023-12-13 22:50:21.000000000 +0000 +++ boinctui-2.7.1/changelog 2023-12-14 22:48:41.000000000 +0000 @@ -1,3 +1,9 @@ +boinctui (2.7.1) + + * fix build with latest ncurses + + * fix invisible dark gray text + boinctui (2.7.0) * command line parameters "--boinchost" and "--pwd" diff -Nru boinctui-2.7.0/config boinctui-2.7.1/config --- boinctui-2.7.0/config 2023-12-13 22:50:21.000000000 +0000 +++ boinctui-2.7.1/config 2023-12-14 22:48:41.000000000 +0000 @@ -1,5 +1,5 @@ TARGET = boinctui -VERSION = 2.7.0 +VERSION = 2.7.1 #DEFS += -DVERSION=$(VERSION) #DEFS += -DDEBUG DEFS += -DENABLEMOUSE diff -Nru boinctui-2.7.0/debian/changelog boinctui-2.7.1/debian/changelog --- boinctui-2.7.0/debian/changelog 2023-12-13 22:50:21.000000000 +0000 +++ boinctui-2.7.1/debian/changelog 2023-12-14 22:48:41.000000000 +0000 @@ -1,16 +1,29 @@ -boinctui (2.7.0-0~202312131758~ubuntu23.04.1) lunar; urgency=low +boinctui (2.7.1-0~202312141849~ubuntu23.04.1) lunar; urgency=low * Auto build. - -- Gianfranco Costamagna Wed, 13 Dec 2023 22:50:21 +0000 + -- Gianfranco Costamagna Thu, 14 Dec 2023 22:48:41 +0000 + +boinctui (2.7.1-1) unstable; urgency=low + + * fix build with latest ncurses (Closes: #1057928) + + * fix invisible dark gray text + + -- Sergey Suslov Thu, 14 Dec 2023 20:55:31 +0300 boinctui (2.7.0-2) UNRELEASED; urgency=medium * Trim trailing whitespace. + * Bump debhelper from old 11 to 13. + * Set upstream metadata fields: Archive. + * Fix day-of-week for changelog entry 2.6.0-1. + * Update standards version to 4.6.1, no changes needed. + * Update standards version to 4.6.2, no changes needed. -- Debian Janitor Wed, 07 Sep 2022 17:19:42 -0000 diff -Nru boinctui-2.7.0/debian/git-build-recipe.manifest boinctui-2.7.1/debian/git-build-recipe.manifest --- boinctui-2.7.0/debian/git-build-recipe.manifest 2023-12-13 22:50:21.000000000 +0000 +++ boinctui-2.7.1/debian/git-build-recipe.manifest 2023-12-14 22:48:41.000000000 +0000 @@ -1,2 +1,2 @@ -# git-build-recipe format 0.4 deb-version {debupstream}-0~202312131758 -lp:boinctui git-commit:eb4ade8558cc749bd70a6278e3a5a598390437df +# git-build-recipe format 0.4 deb-version {debupstream}-0~202312141849 +lp:boinctui git-commit:6338b8e718dd429aca35f7d0f9b62328740dde18 diff -Nru boinctui-2.7.0/src/statwin.cpp boinctui-2.7.1/src/statwin.cpp --- boinctui-2.7.0/src/statwin.cpp 2023-12-13 22:50:21.000000000 +0000 +++ boinctui-2.7.1/src/statwin.cpp 2023-12-14 22:48:41.000000000 +0000 @@ -188,7 +188,7 @@ if (value != -1) cs->append(getcolorpair(COLOR_WHITE, getbgcolor()) | A_BOLD, " %*ld ",COLWIDTH, value); else - cs->append(getcolorpair(getbgcolor(), getbgcolor()) | A_BOLD, " %*s ",COLWIDTH, "-"); + cs->append(getcolorpair(COLOR_WHITE, getbgcolor()) | A_BOLD, " %*s ",COLWIDTH, "-"); } content->addstring(cs); } diff -Nru boinctui-2.7.0/src/taskwin.cpp boinctui-2.7.1/src/taskwin.cpp --- boinctui-2.7.0/src/taskwin.cpp 2023-12-13 22:50:21.000000000 +0000 +++ boinctui-2.7.1/src/taskwin.cpp 2023-12-14 22:48:41.000000000 +0000 @@ -465,7 +465,7 @@ std::string sstate = getresultstatestr(*it); //состояние задачи //цвет и атрибут в зависимости от состояния задачи if ((*it)->findItem("ready_to_report") != NULL) - attr = getcolorpair(getbgcolor(),getbgcolor()) | A_BOLD; + attr = getcolorpair(COLOR_WHITE,getbgcolor()) | A_BOLD; if ((*it)->findItem("active_task") != NULL) attr = getcolorpair(COLOR_WHITE,getbgcolor()) | A_BOLD; //ставим цвет по умолчанию + A_BOLD; if ( sstate == "Run")