- Jun 18, 2024
-
-
Quotes were interpreted by configure and $NO_COLOR was interpolated at configure time, leading to incorrect script execution. Brackets were also removed because of m4 expansion. By switching to single quote string, we can better describe what needs to be printed and what needs to be evaluated. The m4 expansion problem is solved by escaping the whole string in a bracket block. The `echo` command is also changed for the more portable[^1] `printf`. [^1]: https://unix.stackexchange.com/questions/65803/why-is-printf-better-than-echo
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
macosx: Ensure the detail label is hidden in main video view controls bar if not playing a media library media item Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
- Jun 17, 2024
-
-
-
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
- Jun 16, 2024
-
-
- Jun 14, 2024
-
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Steve Lhomme authored
That's what Qt expects, especially with qmlcachegen. We will need to update the CI as often as Qt.
-
Steve Lhomme authored
This reverts commit 9e089f4e.
-
Steve Lhomme authored
-
see discussion in MR 5354
-
fixes #28597
-
-
-
-
in ExpandGridView, this behaviour is same as KeyNavigableListView
-
-
-
Drivers implementing desktop OpenGL on Windows have been known for their notoriously bad functionality. Windows 7 supports D3D12, D3D11 and Vulkan. If possible, we should use these over OpenGL. Previously we were forcing OpenGL on Windows 7 as a safe option. The investigation showed that the features used from D3D11 by Qt may not be supplemented in Windows 7 graphics drivers. However, this does not mean that this is the case at all times.
-
-
manually assigning delegate with a Component seems to fail with some Qt versions like Qt 6.2.4
-
- Jun 13, 2024
-
-
Steve Lhomme authored
The PDB files will be inside the -debug.7z package. The PDB source mapping will be the '<root>/vlc' folder to '/'. In Visual Studio you can map to your local source folder with: > Solution > Properties > Debug Source Files > "s:/sources/vlc" In Visual Studio Code you can map to your local source folder with the "sourceFileMap" variable in the launch configuration https://code.visualstudio.com/docs/cpp/launch-json-reference#_sourcefilemap: > "sourceFileMap": { "/": "s:/sources/vlc" }
-
Steve Lhomme authored
Before that they are in the debug folder. They can be used by adding the symbols folder to Visual Studio: > Tools > Options > Debugging > Symbols Or Visual Studio Code: Using the "symbolSearchPath" variable in the launch configuration https://code.visualstudio.com/docs/cpp/cpp-debug#_additional-symbols
-
Tristan Matthews authored
2024-06-05 v3.9.1 This release includes several bug fixes. This release is ABI compatible with the last release. See https://aomedia.googlesource.com/aom/+log/v3.9.0..v3.9.1 for all the commits in this release. - Bug Fixes * aomedia:2754, aomedia:3567: Ensure thread stack size is at least 256 KB * b:330639949, oss-fuzz:68195: Increase scaling in linsolve_wiener * Fix high target data rate overflow. * aomedia:3509: Fix two UBSan errors in av1_rc_update_framerate() * aomedia:3382, chromium:339877165: update codec config after svc/scale controls (CVE-2024-5493) * aomedia:3561: libaom-3.8.2 armv7 Android build failed * aomedia:3571: {,highbd_}intrapred_neon.c: Avoid over-reads in z1 and z3 preds * aomedia:3578: libaom-3.9.0 undefined reference to `aom_sub_pixel_variance16xh_ssse3' * aomedia:3579: Use round for RC calculations in cyclic_refresh * aomedia:3580: Allow g_timebase.num to be greater than g_timebase.den * oss-fuzz:68774: libaom:av1_dec_fuzzer: Segv on unknown address in od_ec_dec_init * Arm SVE build fixes. * av1_block_error_lp_neon: fix block_size param type * av1_block_error_lp_sve: fix block_size param type
-
Steve Lhomme authored
We only use QT_LIBEXECS and QT_BINS locally to check native tools. If the Qt version doesn't match or qmake6 is not found, we don't need to call it that many times. This also avoids logging errors like: > make: qmake6: Command not found
-
-
-
-
correctly inherit from expected parent from the row delegate
-
-
- Jun 11, 2024
-
-
-
-
don't use MediaLib in TableColumns
-