From f867d9ebb0423530874cd85b3e21328197a39466 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sun, 17 Nov 2019 20:08:09 +0100 Subject: [PATCH] Release Nageru and Futatabi 1.9.1. --- NEWS | 12 ++++++++++++ meson.build | 2 +- nageru/kaeru.cpp | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index d77db70..0c7835c 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,15 @@ +Nageru and Futatabi 1.9.1, November 17th, 2019 + + - Support disabling optional effects if a given other effect is _enabled_ + (typically for mutually exclusive effects). + + - Make it possible for the theme to override the status line, by declaring + a function format_status_line() in the theme. Inspired by a C++ patch by + Alex Thomazo in the Breizhcamp repository. + + - Various bugfixes. + + Nageru and Futatabi 1.9.0, July 20th, 2019 - Significant reworking of the theme engine: Chains (now called scenes) diff --git a/meson.build b/meson.build index 8114abb..9880137 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('nageru', 'cpp', default_options: ['buildtype=debugoptimized'], version: '1.9.0') +project('nageru', 'cpp', default_options: ['buildtype=debugoptimized'], version: '1.9.1') cxx = meson.get_compiler('cpp') qt5 = import('qt5') diff --git a/nageru/kaeru.cpp b/nageru/kaeru.cpp index b10324c..d9b1e0e 100644 --- a/nageru/kaeru.cpp +++ b/nageru/kaeru.cpp @@ -74,7 +74,7 @@ unique_ptr create_mux(HTTPD *httpd, AVOutputFormat *oformat, X264Encoder *x // If audio is disabled (ie., we won't ever see any audio packets), // set nullptr here to also not include the stream in the mux. AVCodecParameters *audio_codecpar = - global_flags.enable_audio ? audio_encoder->get_codec_parameters().get() : nullptr; + global_flags.enable_audio ? audio_encoder->get_codec_parameters().release() : nullptr; unique_ptr mux; mux.reset(new Mux(avctx, global_flags.width, global_flags.height, Mux::CODEC_H264, video_extradata, audio_codecpar, -- 2.39.2