Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package neix for openSUSE:Factory checked in at 2021-05-06 22:52:46 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/neix (Old) and /work/SRC/openSUSE:Factory/.neix.new.2988 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "neix" Thu May 6 22:52:46 2021 rev:3 rq:890906 version:0.1.5 Changes: -------- --- /work/SRC/openSUSE:Factory/neix/neix.changes 2021-05-01 00:46:45.759434911 +0200 +++ /work/SRC/openSUSE:Factory/.neix.new.2988/neix.changes 2021-05-06 22:53:21.466568741 +0200 @@ -1,0 +2,6 @@ +Thu May 6 07:41:34 UTC 2021 - Michael Vetter <mvet...@suse.com> + +- Update to 0.1.5: + * Fix flickering screen while loading feeds + +------------------------------------------------------------------- Old: ---- v0.1.4.tar.gz New: ---- v0.1.5.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ neix.spec ++++++ --- /var/tmp/diff_new_pack.couGXM/_old 2021-05-06 22:53:21.946566761 +0200 +++ /var/tmp/diff_new_pack.couGXM/_new 2021-05-06 22:53:21.950566745 +0200 @@ -17,7 +17,7 @@ Name: neix -Version: 0.1.4 +Version: 0.1.5 Release: 0 Summary: News Reader for Text Terminals License: GPL-3.0-or-later ++++++ v0.1.4.tar.gz -> v0.1.5.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/neix-0.1.4/CMakeLists.txt new/neix-0.1.5/CMakeLists.txt --- old/neix-0.1.4/CMakeLists.txt 2021-04-30 06:56:22.000000000 +0200 +++ new/neix-0.1.5/CMakeLists.txt 2021-05-06 06:09:39.000000000 +0200 @@ -36,7 +36,7 @@ endif() # Version -set(neixVersion "0.1.4") +set(neixVersion "0.1.5") add_compile_definitions(VERSION="v${neixVersion}") # User Agent for CURL diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/neix-0.1.4/config/keys.conf new/neix-0.1.5/config/keys.conf --- old/neix-0.1.4/config/keys.conf 1970-01-01 01:00:00.000000000 +0100 +++ new/neix-0.1.5/config/keys.conf 2021-05-06 06:09:39.000000000 +0200 @@ -0,0 +1,42 @@ +# +# neix main "keys" configuration +# =============================== +# The key values are the "printable" ASCII characters in decimal. +# You can find a list here: +# - https://en.wikipedia.org/wiki/ASCII#Printable_characters +# =============================== + +# +# Key: "ENTER" +# Function: read article +keyReadArticle=10 + +# +# Key: "j" +# Function: next article +keyNextArticle=106 + +# +# Key: "k" +# Function: previous article +keyPreviousArticle=107 + +# +# Key: "J" +# Function: next feed +keyNextFeed=74 + +# +# Key: "K" +# Function: previous article +keyPreviousArticle=75 + +# +# Key: "o" +# Function: open article in browser +keyOpenArticle=111 + +# +# Key: "q" +# Function: quit neix / close article +keyQuitAndClose=113 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/neix-0.1.4/doc/neix.1 new/neix-0.1.5/doc/neix.1 --- old/neix-0.1.4/doc/neix.1 2021-04-30 06:56:22.000000000 +0200 +++ new/neix-0.1.5/doc/neix.1 2021-05-06 06:09:39.000000000 +0200 @@ -1,4 +1,4 @@ -.TH neix 1 "30th April 2021" "v0.1.4" "neix man page" +.TH neix 1 "30th April 2021" "v0.1.5" "neix man page" .SH NAME .B neix diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/neix-0.1.4/src/application/Application.cpp new/neix-0.1.5/src/application/Application.cpp --- old/neix-0.1.4/src/application/Application.cpp 2021-04-30 06:56:22.000000000 +0200 +++ new/neix-0.1.5/src/application/Application.cpp 2021-05-06 06:09:39.000000000 +0200 @@ -32,7 +32,7 @@ initscr(); keypad(stdscr, TRUE); - clear(); + erase(); noecho(); cbreak(); curs_set(0); @@ -111,7 +111,7 @@ { endwin(); refresh(); - clear(); + erase(); this->printVersion(); this->printControlHints(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/neix-0.1.4/src/application/ApplicationWindow.cpp new/neix-0.1.5/src/application/ApplicationWindow.cpp --- old/neix-0.1.4/src/application/ApplicationWindow.cpp 2021-04-30 06:56:22.000000000 +0200 +++ new/neix-0.1.5/src/application/ApplicationWindow.cpp 2021-05-06 06:09:39.000000000 +0200 @@ -66,7 +66,7 @@ */ void ApplicationWindow::_printContent() { - wclear(this->pad); + werase(this->pad); int x = 0, y = 0, counter = 0; for (auto & line: this->content) { @@ -124,8 +124,8 @@ void ApplicationWindow::hide() { refresh(); - wclear(this->pad); - wclear(this->win); + werase(this->pad); + werase(this->win); } @@ -146,7 +146,7 @@ { this->offsetTop = 0; this->resetContent(); - wclear(this->pad); + werase(this->pad); } void ApplicationWindow::resetContent()