diff --git a/doc/man/index.html b/doc/man/index.html index d732b997c..88cf5e7fa 100644 --- a/doc/man/index.html +++ b/doc/man/index.html @@ -30,6 +30,7 @@ notcurses_directmode—minimal notcurses instances for styling text
notcurses_error—granular Notcurses error reporting
notcurses_fade—fading and pulsing for ncplanes
+ notcurses_fds—dumping file descriptors/subprocesses to ncplanes
notcurses_init—initialization
notcurses_input—collecting input
notcurses_lines—drawing lines and boxes on ncplanes
diff --git a/doc/man/man3/notcurses.3.md b/doc/man/man3/notcurses.3.md index 40ff16668..57cc62c33 100644 --- a/doc/man/man3/notcurses.3.md +++ b/doc/man/man3/notcurses.3.md @@ -138,7 +138,10 @@ previous action. **notcurses_cell(3)**, **notcurses_channels(3)**, **notcurses_directmode(3)**, **notcurses_error(3)**, -**notcurses_fade(3)**, **notcurses_init(3)**, **notcurses_input(3)**, +**notcurses_fade(3)**, +**notcurses_fds(3)**, +**notcurses_init(3)**, +**notcurses_input(3)**, **notcurses_lines(3)**, **notcurses_menu(3)**, **notcurses_multiselector(3)**, diff --git a/doc/man/man3/notcurses_multiselector.3.md b/doc/man/man3/notcurses_multiselector.3.md index 155372878..41c4e43da 100644 --- a/doc/man/man3/notcurses_multiselector.3.md +++ b/doc/man/man3/notcurses_multiselector.3.md @@ -11,10 +11,10 @@ notcurses_multiselector - high level widget for selecting from a set **#include ** ```c -**struct ncinput;** -**struct ncplane;** -**struct notcurses;** -**struct ncmultiselector;** +struct ncinput; +struct ncplane; +struct notcurses; +struct ncmultiselector; struct mselector_item { char* option; diff --git a/doc/man/man3/notcurses_selector.3.md b/doc/man/man3/notcurses_selector.3.md index 63b023459..dedf122af 100644 --- a/doc/man/man3/notcurses_selector.3.md +++ b/doc/man/man3/notcurses_selector.3.md @@ -11,10 +11,10 @@ notcurses_selector - high level widget for selecting from a set **#include ** ```c -**struct ncinput;** -**struct ncplane;** -**struct notcurses;** -**struct ncselector;** +struct ncinput; +struct ncplane; +struct notcurses; +struct ncselector; struct selector_item { char* option; diff --git a/src/lib/oiio.cpp b/src/lib/oiio.cpp index de11a1cf2..80643657b 100644 --- a/src/lib/oiio.cpp +++ b/src/lib/oiio.cpp @@ -281,7 +281,9 @@ char* ncvisual_subtitle(const ncvisual* ncv){ // no support in OIIO } int ncvisual_init(int loglevel){ + // FIXME set OIIO global attribute "debug" based on loglevel (void)loglevel; + // FIXME check OIIO_VERSION_STRING components against linked openimageio_version() return 0; // allow success here } @@ -296,6 +298,7 @@ void ncvisual_destroy(ncvisual* ncv){ } } +// FIXME would be nice to have OIIO::attributes("libraries") in here const char* oiio_version(void){ return OIIO_VERSION_STRING; }