This repository was archived by the owner on Jan 21, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +19
-1
lines changed
Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 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+
1140.9.7
215
316 * New: cache file related options in cache tab of preferences
Original file line number Diff line number Diff 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+
299304auto _CommonExtList (ExtTypes ext) -> QStringList;
300305
301306auto App::executeToQuit () -> bool
Original file line number Diff line number Diff 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;
You can’t perform that action at this time.
0 commit comments