Skip to content
This repository was archived by the owner on Jan 21, 2021. It is now read-only.

Commit bd8c097

Browse files
committed
bump version to 0.9.8
1 parent ca5fdd7 commit bd8c097

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

CHANGES.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
0.9.8
2+
3+
* New: Video > Quality Preset
4+
* New: Video > Rotate
5+
* New: Video > Interpolator (Downscale)
6+
* New: Video > Make Vide Clip (#313)
7+
* Fix: wrong bitrate values for decoder
8+
* Fix: wrong window size hint when aspect ratio adjusted
9+
* Fix: display proper duration for DASH formats from YouTube
10+
* Fix: deadlock on execution when 'Unmute when volume adjusted' enabled
11+
* Fix: keep session connected with opensubtitles.org (#314)
12+
* (Linux)Fix: send mpris:artUrl metadata for MPRIS (#304)
13+
114
0.9.7
215

316
* New: cache file related options in cache tab of preferences

src/bomi/player/app.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,11 @@ App::~App() {
296296
delete d->parser;
297297
}
298298

299+
auto App::version() -> const char*
300+
{
301+
return "0.9.8";
302+
}
303+
299304
auto _CommonExtList(ExtTypes ext) -> QStringList;
300305

301306
auto App::executeToQuit() -> bool

src/bomi/player/app.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class App : public QApplication {
4242
auto load() -> void;
4343
auto setFixedFont(const QFont &font) -> void;
4444
auto fixedFont() const -> QFont;
45-
static constexpr auto version() -> const char* { return "0.9.7"; }
45+
static auto version() -> const char*;
4646
static constexpr auto name() -> const char* { return "bomi"; }
4747
static auto displayName() -> QString { return tr("bomi"); }
4848
static auto defaultIcon() -> QIcon;

0 commit comments

Comments
 (0)