Commit Graph

12586 Commits

Author SHA1 Message Date
Moritz Bunkus
2b46d4adc1
all: use current spelling of macOS instead of old Mac OS 2019-08-10 14:47:04 +02:00
Moritz Bunkus
72a827f6b3
translations: update program & man page translation files 2019-08-10 14:37:43 +02:00
Moritz Bunkus
182190c2da
update NEWS for fixing #2600 2019-08-10 14:35:35 +02:00
Moritz Bunkus
f383f8c78c
all: use H.265 instead of h.265
Second part of the fix of #2600.
2019-08-10 14:34:54 +02:00
Moritz Bunkus
b56918d388
all: use H.264 instead of h.264
Part of the fix of #2600.
2019-08-10 14:29:54 +02:00
Andrei Stepanov
9c9e239f4a
translations: update Russian 2019-08-10 14:03:09 +02:00
Roberto Boriotti
cf74be67d1
translations: update Italian 2019-08-10 14:03:01 +02:00
TMTisFree
cc9e582039
translations: update French 2019-08-10 14:02:49 +02:00
Moritz Bunkus
e786ec8634
MPLS: look for .m2ts if no file with extension from clip_codec_id is found
In this particular case the `clip_codec_information` field contained
the value `FMTS`. The file in the `STREAM` sub-directory still has the
extension `.m2ts`, though.

Fixes #2601.
2019-08-10 13:59:08 +02:00
Moritz Bunkus
2e7f05a4ed
ignore *.tmp files 2019-08-08 21:13:37 +02:00
Moritz Bunkus
a9d3e9ef51
GUI: re-factor font utility functions to their own file 2019-08-08 21:13:18 +02:00
Moritz Bunkus
f78615a676
GUI: fix compilation with Qt < 5.11
QFontMetrics::horizontalAdvance() was only introduced in 5.11.
2019-08-08 21:08:53 +02:00
Roberto Boriotti
21c0fe439d
installer translations: update Italian 2019-08-08 20:28:28 +02:00
Moritz Bunkus
473de3a4b7
GUI: don't use deprecated QFontMetrics::width() 2019-08-08 20:23:25 +02:00
Moritz Bunkus
342fcc1c02
GUI: don't use deprecated QPixmapCache::find(QString const &, QPixmap &) 2019-08-08 20:23:25 +02:00
Moritz Bunkus
7cf2181f51
GUI: don't use deprecated QComboBox::currentIndexChanged(QString const &) 2019-08-08 20:23:24 +02:00
Moritz Bunkus
2c8c1782f0
GUI: don't use deprecated QModelIndex::child(int, int) 2019-08-08 20:23:21 +02:00
Moritz Bunkus
fea325da01
GUI: don't use deprecated QPath::operator=(QString const &) 2019-08-08 20:23:13 +02:00
Moritz Bunkus
ea62983378
build system: no deprecated-copy warnings on gcc ≥ 9
Too many warnings at this point.
2019-08-08 19:03:16 +02:00
Moritz Bunkus
02a074b61f
source: fix compilation with Boost 1.71.0 beta 1
Due to argument-dependent lookup rules the `boost::algorithm::split`
function has always been considered by the compiler when resolving an
unqualified call to `split`.

Before Boost 1.71.0 the `boost::algorithm::split` function took an
lvalue reference as its `Input` argument. Therefore a temporary
instance of `std::string` would cause `boost::algorithm::split` not to
be considered due to SFINAE, and the compiler would keep looking,
finally finding the top-level `split` function.

In Boost 1.71.0 the first argument was changed to an rvalue
reference. Therefore the temporary `std::string` instance is now a
valid argument to the function, and the compiler considers
`boost::algorithm::split` to be a possible call. Other functions
aren't looked up.

The fix is easy: just be explicit which namespace to take the symbol
from. That way argument-dependent lookup will not be done.

Fixes #2599.
2019-08-08 17:49:50 +02:00
Moritz Bunkus
39f7b45d9f
RPM spec file: openSUSE: make rake dependency explicit
On 15.0 there's currently a problem with the "provides" for rubygem-rake.
2019-08-07 21:21:21 +02:00
Roberto Boriotti
7dde02b9a0
installer translations: update Italian 2019-08-07 18:11:50 +02:00
Moritz Bunkus
ba03b34352
tests: intentional update due to translation updates 2019-08-06 21:03:50 +02:00
Moritz Bunkus
218e5b5ccd
build system: fix xml-to-html dependencies in man2html targets 2019-08-06 20:42:43 +02:00
Moritz Bunkus
516f4ae810
translations: fix for property elements description fix
See #2598.
2019-08-06 20:29:51 +02:00
Moritz Bunkus
4b0dbdb439
property elements: fix valid value range in description of stereo mode
Fixes #2598.
2019-08-06 20:28:13 +02:00
Kai Mao
367185d945
translations: update Chinese Traditional 2019-08-06 18:42:52 +02:00
Moritz Bunkus
2e628152ca
translations: update Swedish 2019-08-06 18:42:22 +02:00
Andrei Stepanov
e754990d31
translations: update Russian 2019-08-06 18:41:58 +02:00
Trottel
642173a963
translations: update Czech 2019-08-06 18:40:52 +02:00
Israel Lucas Torrijos
9c6cc71753
man page translations: update Spanish 2019-08-06 18:40:36 +02:00
Israel Lucas Torrijos
f370d6b6a4
translations: update Spanish 2019-08-06 18:38:33 +02:00
Moritz Bunkus
2eda8c498b
translations: update native language name for zh_TW
This was suggested by a native Chinese speaker.
2019-08-06 18:27:48 +02:00
Martijn Laan
f8149bad13 Fix broken command line help. 2019-07-26 17:37:17 +00:00
Moritz Bunkus
a831dd8e4f
avoid pedantic warning when building fmt
Actual warning:

lib/fmt/include/fmt/format.h:3475:55: warning: ISO C++ did not adopt string literal operator templates taking an argument pack of characters [-Wpedantic]
 3475 | FMT_CONSTEXPR internal::udl_formatter<Char, CHARS...> operator""_format() {
      |                                                       ^~~~~~~~

This has already been fixed in fmt's master branch.
2019-07-08 18:45:24 +02:00
Moritz Bunkus
2548a7f349
mkvmerge: allow appending video tracks with differing pixel dimensions
Implements #2582.
2019-07-08 18:08:39 +02:00
Moritz Bunkus
1aefcdc2cb
libebml: update from upstream 2019-06-29 22:14:57 +02:00
Moritz Bunkus
1b0d80bc90
AAC parser: avoid warning about identical if branches 2019-06-29 22:14:22 +02:00
Moritz Bunkus
8d4720ff67
avoid on deprecated implicit assigned operator declaration 2019-06-29 22:13:13 +02:00
Moritz Bunkus
434a6eee68
avoid "comparison between signed & unsigned integers" warning 2019-06-29 22:12:58 +02:00
Moritz Bunkus
d1913e84bb
Swedish translation: fix "ordered" in chapter editor
Fixes #2573.
2019-06-23 12:42:22 +02:00
Moritz Bunkus
2054835cd7
bump version number, set release code name 2019-06-22 12:05:29 +02:00
Moritz Bunkus
742a7a207a
version number script: adjust for build system changes 2019-06-22 12:05:29 +02:00
Kai Mao
973dbcc71d
translations: update Chinese Traditional 2019-06-22 12:05:29 +02:00
Dian Li
c75cb4a59f
translations: update Chinese Simplified 2019-06-22 12:05:29 +02:00
Burak Yavuz
c6529ce63f
translations: update Turkish 2019-06-22 12:05:29 +02:00
solokot
996ca01131
translations: update Russian 2019-06-22 12:05:29 +02:00
Antoni Bella Pérez
5437269a98
translations: update Catalan 2019-06-22 12:05:29 +02:00
Dian Li
d702bf9683
man page translations: update Chinese Simplified 2019-06-22 12:05:29 +02:00
Antoni Bella Pérez
471e1b2054
man page translations: update Catalan 2019-06-22 12:05:29 +02:00