From e9d6b9d299095492edb3f66628db0819bfde170a Mon Sep 17 00:00:00 2001 From: xylosper Date: Wed, 20 May 2015 18:31:58 +0900 Subject: [PATCH] bump version to 0.9.11 --- CHANGES.txt | 18 ++++++++++++++++++ src/bomi/player/app.cpp | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index b18f80bcc8..3ae164ac1c 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,21 @@ +0.9.11 + + * New: save button for log viewer + * New: dynamic range option for volume and use exponential scale by default(#364) + * Fix: backport fix for wasting CPU (#363) + * Fix: workaround for weird behavior of mouse event (#317) + * Fix: add 'Ignore' for FPS in youtube-dl options (#360) + * Fix: parse \N and \h properly for .srt (#365) + * Fix: compile error if vdpau or vaapi are disabled (#366) + * Fix: make URL edit get focus when URL dialog open (#370) + * Fix: ignore SIGPIPE to prevent termination on reconnection for streaming + * Fix: wrong icon of play/pause button for metro skin + * Fix: enforce to update video renderer when window gets visible + * Fix: ignore invalid URL for mime data + * (Linux)Fix: albumart image for mpris wasn't exported properly + * (Windows)Fix: workaround for wrong screen geometry + * (Windows)Fix: some channel layouts didn't work (#373) + 0.9.10 * New: 'Open > From Clipboard' to open URL from clipboard data diff --git a/src/bomi/player/app.cpp b/src/bomi/player/app.cpp index cf8ac83d75..186d627fa8 100644 --- a/src/bomi/player/app.cpp +++ b/src/bomi/player/app.cpp @@ -330,7 +330,7 @@ App::~App() { auto App::version() -> const char* { - return "0.9.10"; + return "0.9.11"; } auto _CommonExtList(ExtTypes ext) -> QStringList;