From e1b1654d1ea4370b54ffbf43bd8c3584e37d0699 Mon Sep 17 00:00:00 2001 From: nick black Date: Mon, 21 Dec 2020 19:51:22 -0500 Subject: [PATCH] NEWS: mention ncdirect image render split --- .drone.yml | 3 +-- NEWS.md | 3 +++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index cde58bf8d..c267a9fa5 100644 --- a/.drone.yml +++ b/.drone.yml @@ -66,10 +66,9 @@ name: ubuntu-focal steps: - name: ubuntu-build - image: dankamongmen/hirsute:2020-12-21a + image: dankamongmen/hirsute:2020-12-21b commands: - export LANG=en_US.UTF-8 - - apt-get -y install cmake - mkdir build - cd build - cmake -DCMAKE_BUILD_TYPE=Debug -DUSE_MULTIMEDIA=none .. diff --git a/NEWS.md b/NEWS.md index c6b878857..4d10ea6ee 100644 --- a/NEWS.md +++ b/NEWS.md @@ -3,6 +3,9 @@ rearrangements of Notcurses. * 2.1.2 (not yet released) * Add `notcurses_linesigs_enable()` and `notcurses_linesigs_disable()`. + * Divide `ncdirect_render_image()` into component `ncdirect_render_frame()` + and `ncdirect_raster_frame()` (the original remains), allowing multiple + threads to decode images concurrently. * 2.1.1 (2020-12-16) * Progress bars via `ncprogbar`, using the standard widget API.