Skip to content

Commit fee4c20

Browse files
authored
Merge pull request #571 from ElderOrb/say_hi_to_1.0
preparing to 1.0
2 parents 4c4e57c + c94dda6 commit fee4c20

File tree

11 files changed

+57
-20
lines changed

11 files changed

+57
-20
lines changed

History.txt

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,40 @@
1+
1.0, 2018-04-09
2+
+ Add possibility to wrap 'qctools.xml.gzip' report into 'mkv' to save thumbnails too
3+
+ Add 'Entropy' and 'Entropy-diff' filters
4+
+ Add 'Line Over Time' player
5+
+ Add bar charts:
6+
|- support of multiple colored conditions per chart
7+
|- ability to specify condition using JS syntax
8+
|- conditions editor with autocomplete and conditions validation
9+
|- saving/loading charts conditions
10+
|- predefined set of conditions
11+
+ Introduce scriptable min/max for y-axis with JS syntax
12+
+ Extract & save all the stats from each frame (eliminate the difference in output between ffmpeg & qcli)
13+
+ Add xflat option to waveform
14+
+ Polish UI (move filters view icon to the right, disable some menu items if no files selected, reduce space between thumbnails etc.)
15+
+ Add 'Pixel Scope' player
16+
+ Allow to jump into selected file's folder using 'reveal file location' menu item
17+
+ Improve accuracy of grid overlay
18+
+ Add 'Corners' player
19+
+ Have QCTools open with the same filters that were selected when it was last closed
20+
+ Show list of 20 recently opened files in 'File' menu
21+
+ Add ability to zoom x/y axis and pan with mouse wheel & middle mouse button
22+
+ Add code of conduct, update documentation, tooltips & contributing guidelines
23+
- Remove support for dotXml sidecars
24+
- Remove csv export
25+
- Remove experimental blackmagic integration
26+
~ Code cleanup
27+
x Add 'bits_per_raw_sample' to stream stats
28+
x Fix compatibility issues with the latest ffmpeg
29+
x Fix crash when there is no video stream and first stream is not audio either
30+
x Use correct labelling for interlacement values
31+
x Fix sample rate value in table
32+
x Fix sample aspect ratio in table
33+
x Fix limiter default max value for non 8-bit footage
34+
x Fix a few plots alignment issues
35+
x Fix 'Arrow keys do not page through frames in filter view' https://github.com/bavc/qctools/issues/417
36+
x Flush filtering pipeline to write stats for the last frame correctly
37+
138
0.9, 2017-08-15
239
-----
340
+ Add scaling options for players (now with 100%, fit to window, and free scale)

License.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
Copyright ©: 2013-2017, BAVC. All Rights Reserved.
1313
</p>
1414
<p>
15-
Version 0.9
15+
Version 1.0
1616
</p>
1717
<p>
1818
QCTools is licensed under a GPLv3 License.

Project/GNU/PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Maintainer: MediaArea.net SARL <[email protected]>
33

44
pkgname=qctools
5-
pkgver=0.9
5+
pkgver=1.0
66
pkgrel=1
77
pkgdesc="QCTools (Quality Control Tools for Video Preservation)"
88
url="http://mediaarea.net"

Project/GNU/qctools.dsc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Format: 1.0
22
Source: qctools
33
Binary: qctools, qctools-dbg
44
Architecture: any
5-
Version: 0.9
5+
Version: 1.0
66
Maintainer: MediaArea.net SARL <[email protected]>
77
Homepage: http://www.bavc.org/qctools
88
Standards-Version: 3.7.3
@@ -11,8 +11,8 @@ Package-List:
1111
qctools deb utils optional arch=any
1212
qctools-dbg deb debug optional arch=any
1313
Checksums-Sha1:
14-
0000000000000000000000000000000000000000 000000 qctools_0.9.tar.gz
14+
0000000000000000000000000000000000000000 000000 qctools_1.0.tar.gz
1515
Checksums-Sha256:
16-
0000000000000000000000000000000000000000000000000000000000000000 000000 qctools_0.9.tar.gz
16+
0000000000000000000000000000000000000000000000000000000000000000 000000 qctools_1.0.tar.gz
1717
Files:
18-
00000000000000000000000000000000 000000 qctools_0.9.tar.gz
18+
00000000000000000000000000000000 000000 qctools_1.0.tar.gz

Project/GNU/qctools.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
%define qctools_version 0.9
1+
%define qctools_version 1.0
22

33
Name: qctools
44
Version: %{qctools_version}

Project/MSVC2013/GUI/QCTools.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#include <winresrc.h>
22

33
VS_VERSION_INFO VERSIONINFO
4-
FILEVERSION 0,9,0,0
5-
PRODUCTVERSION 0,9,0,0
4+
FILEVERSION 1,0,0,0
5+
PRODUCTVERSION 1,0,0,0
66
FILEFLAGSMASK 0x17L
77
#ifdef _DEBUG
88
FILEFLAGS 0x1L
@@ -19,12 +19,12 @@ BEGIN
1919
BEGIN
2020
VALUE "CompanyName", "MediaArea.net"
2121
VALUE "FileDescription", "QCTools"
22-
VALUE "FileVersion", "0.9.0.0"
22+
VALUE "FileVersion", "1.0.0.0"
2323
VALUE "InternalName", "QCTools - GUI - MSVC 2017"
2424
VALUE "LegalCopyright", "BAVC.org"
2525
VALUE "OriginalFilename", "QCTools.exe"
2626
VALUE "ProductName", "QCTools"
27-
VALUE "ProductVersion", "0.9.0.0"
27+
VALUE "ProductVersion", "1.0.0.0"
2828
END
2929
END
3030
BLOCK "VarFileInfo"

Project/MSVC2015/GUI/QCTools.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#include <winresrc.h>
22

33
VS_VERSION_INFO VERSIONINFO
4-
FILEVERSION 0,9,0,0
5-
PRODUCTVERSION 0,9,0,0
4+
FILEVERSION 1,0,0,0
5+
PRODUCTVERSION 1,0,0,0
66
FILEFLAGSMASK 0x17L
77
#ifdef _DEBUG
88
FILEFLAGS 0x1L
@@ -19,12 +19,12 @@ BEGIN
1919
BEGIN
2020
VALUE "CompanyName", "MediaArea.net"
2121
VALUE "FileDescription", "QCTools"
22-
VALUE "FileVersion", "0.9.0.0"
22+
VALUE "FileVersion", "1.0.0.0"
2323
VALUE "InternalName", "QCTools - GUI - MSVC 2017"
2424
VALUE "LegalCopyright", "BAVC.org"
2525
VALUE "OriginalFilename", "QCTools.exe"
2626
VALUE "ProductName", "QCTools"
27-
VALUE "ProductVersion", "0.9.0.0"
27+
VALUE "ProductVersion", "1.0.0.0"
2828
END
2929
END
3030
BLOCK "VarFileInfo"

Project/Mac/mkdmg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ VERSION="$2"
1010
FILES="$3"
1111

1212
APPNAME="QCTools"
13-
VERSION="0.9"
13+
VERSION="1.0"
1414
SIGNATURE="MediaArea.net"
1515

1616
DMG="tmp-${APPNAME}.dmg"

Project/OBS/obs_qctools

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Download_Packages $1 x x x x "" openSUSE_Tumbleweed x86_64 .x86_64
9595
}
9696

9797

98-
qctoolsv="0.9"
98+
qctoolsv="1.0"
9999
destversion="1"
100100

101101
Download_Global 3.1

Project/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9
1+
1.0

0 commit comments

Comments
 (0)