From 0d53bd036caade708b59f91c0be29616409b55a3 Mon Sep 17 00:00:00 2001 From: xylosper Date: Fri, 27 Mar 2015 05:53:32 +0900 Subject: [PATCH] bump version to 0.9.5 --- CHANGES.txt | 5 +++++ src/bomi/player/app.hpp | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index 4f8a6f5a40..96417bcd18 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,8 @@ +0.9.5 + + * Fix: restoring window size didn't work (#276) + * Fix: potential infinite loop for empty input data of audio (#277) + 0.9.4 * New: support millisecond precision for timeout to hide cursor (#275) diff --git a/src/bomi/player/app.hpp b/src/bomi/player/app.hpp index f4d1e8b1da..227d1244c5 100644 --- a/src/bomi/player/app.hpp +++ b/src/bomi/player/app.hpp @@ -40,7 +40,7 @@ class App : public QApplication { auto load() -> void; auto setFixedFont(const QFont &font) -> void; auto fixedFont() const -> QFont; - static constexpr auto version() -> const char* { return "0.9.4"; } + static constexpr auto version() -> const char* { return "0.9.5"; } static constexpr auto name() -> const char* { return "bomi"; } static auto displayName() -> QString { return tr("bomi"); } static auto defaultIcon() -> QIcon;