Skip to content

Commit c3152e2

Browse files
committed
updated version to r15
1 parent 9fee9a2 commit c3152e2

File tree

6 files changed

+27
-13
lines changed

6 files changed

+27
-13
lines changed

changelog.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,3 +106,14 @@ version r14
106106
- fixed script creator func 'Nnedi3Resize'.
107107
- fixed crash error on closing child window.
108108
- updated installer version.
109+
110+
version r15
111+
- added single image video funciton.
112+
- fixed crash error on closing child window.
113+
- fixed sometimes config, 'NotAddJobOnSaved' is not saved.
114+
- updated vapoursynth to r48.
115+
- updated mediainfo to v19.09.
116+
- updated x265 to 3.2+5.
117+
- updated mkvtoolnix to 43.0.0.
118+
- updated ffmpeg to 4.2.2.
119+
- updated LAVFilters to 0.74.1

com/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#ifndef VERSION_H
22
#define VERSION_H
33

4-
#define QVS_VERSION "r14"
4+
#define QVS_VERSION "r15"
55

66
#endif // VERSION_H

mainwindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1686,7 +1686,7 @@ void MainWindow::setShutCountMessage(void)
16861686

16871687
void MainWindow::slotAbout(void)
16881688
{
1689-
QMessageBox::about(this, tr("About"), qvs::fromResource(":/strings/about").arg(QVS_VERSION));
1689+
QMessageBox::about(this, tr("About"), qvs::fromResource(":/strings/about").arg(QVS_VERSION).arg(qvs::getBuildDateTimeString().replace(" ", "-")));
16901690
}
16911691

16921692
void MainWindow::slotAboutQt(void)

preview/preview_image_dialog.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class PreviewImageDialog : public QMainWindow
3737
void setPreviewPixmap(const QImage &a_image);
3838
void setPreviewPixmap(void);
3939

40-
inline QImage getFrameImage();
40+
QImage getFrameImage();
4141
QList<QImage> m_frameImages;
4242
int m_frameImageIndex;
4343
QPixmap m_framePixmap;

preview/preview_image_dialog.ui

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,18 @@
3030
<property name="contextMenuPolicy">
3131
<enum>Qt::CustomContextMenu</enum>
3232
</property>
33+
<property name="acceptDrops">
34+
<bool>true</bool>
35+
</property>
3336
<property name="sizeAdjustPolicy">
3437
<enum>QAbstractScrollArea::AdjustToContents</enum>
3538
</property>
3639
<property name="widgetResizable">
3740
<bool>true</bool>
3841
</property>
42+
<property name="alignment">
43+
<set>Qt::AlignCenter</set>
44+
</property>
3945
</widget>
4046
</item>
4147
<item>

res/strings/about

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
Qvs %1
2-
3-
By ema(egosub)
4-
https://github.com/emako
5-
http://weibo.com/egosub
6-
7-
This software is free and distributed under MIT license.
8-
9-
Software uses Qt 5 framework by The Qt Company, distributed under LGPL license.
10-
https://qt.io/
1+
Qvs %1 - [Build: %2]<br />
2+
<br />
3+
By ema (<a href='http://weibo.com/egosub'>egosub</a>)<br />
4+
<br />
5+
This software is free and distributed under MIT license.<br />
6+
Please visit <a href='https://github.com/emako/qvs/releases'>Github</a> for the latest version.<br />
7+
<br />

0 commit comments

Comments
 (0)