[vlc-commits] [Git][videolan/vlc][master] 2 commits: medialibrary: devicelister: fix includes
Steve Lhomme (@robUx4)
gitlab at videolan.org
Fri May 16 10:29:00 UTC 2025
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
314eef73 by Alaric Senat at 2025-05-15T09:55:31+00:00
medialibrary: devicelister: fix includes
vector are needed in the header file while unique_pointers are only used
in the implementation file.
- - - - -
639e528b by Alaric Senat at 2025-05-15T09:55:31+00:00
contrib: update medialibrary to 0.13.2
This release brings fixes to 0.13.1 and a small set of non-breaking
changes.
Medialibrary 0.13.2 new non breaking features:
* It's now possible to search in history (videolan/medialibrary!778)
Medialibrary 0.13.2 fixes:
* Exposed API headers includes fixes (videolan/medialibrary!779)
* Fix default sort criteria for history listing (videolan/medialibrary!778)
- - - - -
4 changed files:
- contrib/src/medialibrary/SHA512SUMS
- contrib/src/medialibrary/rules.mak
- modules/misc/medialibrary/fs/devicelister.cpp
- modules/misc/medialibrary/fs/devicelister.h
Changes:
=====================================
contrib/src/medialibrary/SHA512SUMS
=====================================
@@ -1 +1 @@
-b57d03623bad9e67a179b78543b9994a39619b14dbdce8f069485a1ceee6623826a37a401a7b5bbe1fb042a0fcf14d18ee67f5b431600963fa14da9006e275d1 medialibrary-0.13.1.tar.bz2
+ec04cd28a19e547debf1a911fbcd33345a53a3f963e83d6f878c9836ebfefd4045c42a670a2c076ba3767bf91884f542e48dab6a254fc29285041fa9be35fe73 medialibrary-0.13.2.tar.bz2
=====================================
contrib/src/medialibrary/rules.mak
=====================================
@@ -1,4 +1,4 @@
-MEDIALIBRARY_VERSION := 0.13.1
+MEDIALIBRARY_VERSION := 0.13.2
MEDIALIBRARY_URL := https://code.videolan.org/videolan/medialibrary/-/archive/$(MEDIALIBRARY_VERSION)/medialibrary-$(MEDIALIBRARY_VERSION).tar.bz2
PKGS += medialibrary
=====================================
modules/misc/medialibrary/fs/devicelister.cpp
=====================================
@@ -26,6 +26,8 @@
#include <vlc_services_discovery.h>
+#include <memory>
+
namespace vlc
{
namespace medialibrary
=====================================
modules/misc/medialibrary/fs/devicelister.h
=====================================
@@ -27,7 +27,7 @@
#include <vlc_threads.h>
#include <vlc_cxx_helpers.hpp>
-#include <memory>
+#include <vector>
namespace vlc
{
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/6dda4c2425772ea6dee5e7d9bc2d02db1791e547...639e528b4c58661401c6c88bc3774b39ab07592e
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/6dda4c2425772ea6dee5e7d9bc2d02db1791e547...639e528b4c58661401c6c88bc3774b39ab07592e
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list