libgnt/libgnt

Prepare for the 2.14.4 release
release-2.x.y v2.14.4
5 months ago, Gary Kramlich
17a641c949d6
Prepare for the 2.14.4 release

Testing Done:
Ran `meson dist` without issue.

Reviewed at https://reviews.imfreedom.org/r/2886/
#include <ncurses.h>
int main()
{
int ch;
initscr();
noecho();
cbreak();
refresh();
WINDOW *win = newpad(20, 30);
box(win, 0, 0);
prefresh(win, 0, 0, 0, 0, 19, 29);
doupdate();
while ((ch = getch())) {
printw("%d ", ch);
refresh();
}
endwin();
return 0;
}