From 93bba1e35573d9db4b2dcfbefde7b65fea3f3a53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Beauz=C3=A9e-Luyssen?= Date: Fri, 12 Jul 2019 16:39:56 +0200 Subject: [PATCH 1/5] Album: Add a comment on the unknown album constructor --- src/Album.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Album.h b/src/Album.h index c99c9d9e..c6378edb 100644 --- a/src/Album.h +++ b/src/Album.h @@ -51,6 +51,9 @@ class Album : public IAlbum, public DatabaseHelpers }; Album( MediaLibraryPtr ml, sqlite::Row& row ); Album( MediaLibraryPtr ml, const std::string& title ); + /** + * @brief Album Constructs an unknown album for the provided artist + */ Album( MediaLibraryPtr ml, const Artist* artist ); virtual int64_t id() const override; -- GitLab From 56879f0541b0a1b83f0efa8d4eb50c461c60ef45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Beauz=C3=A9e-Luyssen?= Date: Fri, 12 Jul 2019 16:50:23 +0200 Subject: [PATCH 2/5] MediaLibraryTester: Remove useless duplicate of getConn --- test/common/MediaLibraryTester.cpp | 7 +------ test/common/MediaLibraryTester.h | 1 - test/unittest/MiscTests.cpp | 8 ++++---- test/unittest/PlaylistTests.cpp | 2 +- 4 files changed, 6 insertions(+), 12 deletions(-) diff --git a/test/common/MediaLibraryTester.cpp b/test/common/MediaLibraryTester.cpp index 824a6b68..f72e206a 100644 --- a/test/common/MediaLibraryTester.cpp +++ b/test/common/MediaLibraryTester.cpp @@ -220,11 +220,6 @@ void MediaLibraryTester::onDiscoveredFile(std::shared_ptr fileFs, addFile( fileFs, parentFolder, parentFolderFs, fileType, IMedia::Type::Unknown ); } -sqlite::Connection* MediaLibraryTester::getDbConn() -{ - return m_dbConnection.get(); -} - void MediaLibraryTester::startThumbnailer() { } @@ -279,7 +274,7 @@ void MediaLibraryTester::setAlbumTrackGenre( int64_t albumTrackId, int64_t genre uint32_t MediaLibraryTester::countNbThumbnails() { sqlite::Statement stmt{ - getDbConn()->handle(), + getConn()->handle(), "SELECT COUNT(*) FROM " + Thumbnail::Table::Name }; uint32_t res; diff --git a/test/common/MediaLibraryTester.h b/test/common/MediaLibraryTester.h index ebdfb08e..0a012a24 100644 --- a/test/common/MediaLibraryTester.h +++ b/test/common/MediaLibraryTester.h @@ -79,7 +79,6 @@ public: std::shared_ptr parentFolderFs, IFile::Type fileType, std::pair, unsigned int> parentPlaylist ) override; - sqlite::Connection* getDbConn(); virtual void startThumbnailer() override; virtual void populateNetworkFsFactories() override; MediaPtr addMedia( const std::string& mrl, IMedia::Type type = IMedia::Type::External ); diff --git a/test/unittest/MiscTests.cpp b/test/unittest/MiscTests.cpp index 33f40f0b..65407231 100644 --- a/test/unittest/MiscTests.cpp +++ b/test/unittest/MiscTests.cpp @@ -139,7 +139,7 @@ public: void CheckNbTriggers( uint32_t expected ) { - medialibrary::sqlite::Statement stmt{ ml->getDbConn()->handle(), + medialibrary::sqlite::Statement stmt{ ml->getConn()->handle(), "SELECT COUNT(*) FROM sqlite_master WHERE type='trigger'" }; stmt.execute(); auto row = stmt.row(); @@ -150,7 +150,7 @@ public: void CheckTriggers( std::vector expected ) { - medialibrary::sqlite::Statement stmt{ ml->getDbConn()->handle(), + medialibrary::sqlite::Statement stmt{ ml->getConn()->handle(), "SELECT name FROM sqlite_master WHERE type='trigger' " "ORDER BY name;" }; @@ -169,7 +169,7 @@ public: void CheckNbIndexes( uint32_t expected ) { - medialibrary::sqlite::Statement stmt{ ml->getDbConn()->handle(), + medialibrary::sqlite::Statement stmt{ ml->getConn()->handle(), "SELECT COUNT(*) FROM sqlite_master WHERE type='index' AND " "name NOT LIKE 'sqlite_autoindex%'" }; stmt.execute(); @@ -330,7 +330,7 @@ TEST_F( DbModel, Upgrade15to16 ) // Check that playlists were properly migrated medialibrary::sqlite::Statement stmt{ - ml->getDbConn()->handle(), + ml->getConn()->handle(), "SELECT playlist_id, position FROM PlaylistMediaRelation " "ORDER BY playlist_id, position" }; diff --git a/test/unittest/PlaylistTests.cpp b/test/unittest/PlaylistTests.cpp index 5b3e965f..82e4dcb5 100644 --- a/test/unittest/PlaylistTests.cpp +++ b/test/unittest/PlaylistTests.cpp @@ -44,7 +44,7 @@ protected: void CheckContiguity() { medialibrary::sqlite::Statement stmt{ - ml->getDbConn()->handle(), + ml->getConn()->handle(), "SELECT position FROM PlaylistMediaRelation " "WHERE playlist_id=? ORDER BY position" }; -- GitLab From 84f70ef36f1549cb2dca41e9e872c24f119b4228 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Beauz=C3=A9e-Luyssen?= Date: Fri, 12 Jul 2019 16:53:46 +0200 Subject: [PATCH 3/5] Artist: Simplify listing request --- src/Artist.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/Artist.cpp b/src/Artist.cpp index 0c1a228a..e6435a3b 100644 --- a/src/Artist.cpp +++ b/src/Artist.cpp @@ -474,12 +474,10 @@ Query Artist::listAll( MediaLibraryPtr ml, bool includeAll, const QueryParameters* params ) { std::string req = "FROM " + Artist::Table::Name + " WHERE "; - if ( includeAll == true ) - req += "( nb_albums > 0 OR nb_tracks > 0 )"; - else - req += "nb_albums > 0"; + if ( includeAll == false ) + req += "nb_albums > 0 AND"; - req += " AND is_present != 0"; + req += " is_present != 0"; return make_query( ml, "*", std::move( req ), sortRequest( params ) ); } -- GitLab From 3bb80804d16266670a799697c19c932a2a3ae9fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Beauz=C3=A9e-Luyssen?= Date: Fri, 12 Jul 2019 17:01:13 +0200 Subject: [PATCH 4/5] Album: Use int64_t for duration So it's consistent with media durations. Also document the unit used for the duration. Fix #107 --- include/medialibrary/IAlbum.h | 5 ++++- src/Album.cpp | 2 +- src/Album.h | 4 ++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/include/medialibrary/IAlbum.h b/include/medialibrary/IAlbum.h index 4b9b0b10..e11af038 100644 --- a/include/medialibrary/IAlbum.h +++ b/include/medialibrary/IAlbum.h @@ -81,7 +81,10 @@ public: * Defaults to 1 */ virtual uint32_t nbDiscs() const = 0; - virtual unsigned int duration() const = 0; + /** + * @brief duration Returns the total album duration in milliseconds + */ + virtual int64_t duration() const = 0; /** * @brief isUnknownAlbum returns true is this is an unknown album */ diff --git a/src/Album.cpp b/src/Album.cpp index 461cecce..ead10d3a 100644 --- a/src/Album.cpp +++ b/src/Album.cpp @@ -392,7 +392,7 @@ bool Album::setNbDiscs( uint32_t nbDiscs ) return true; } -unsigned int Album::duration() const +int64_t Album::duration() const { return m_duration; } diff --git a/src/Album.h b/src/Album.h index c6378edb..ef827fb9 100644 --- a/src/Album.h +++ b/src/Album.h @@ -94,7 +94,7 @@ class Album : public IAlbum, public DatabaseHelpers unsigned int nbTracks() const override; virtual uint32_t nbDiscs() const override; bool setNbDiscs( uint32_t nbDiscs ); - unsigned int duration() const override; + virtual int64_t duration() const override; virtual bool isUnknownAlbum() const override; virtual ArtistPtr albumArtist() const override; @@ -142,7 +142,7 @@ class Album : public IAlbum, public DatabaseHelpers unsigned int m_releaseYear; std::string m_shortSummary; unsigned int m_nbTracks; - unsigned int m_duration; + int64_t m_duration; uint32_t m_nbDiscs; bool m_isPresent; -- GitLab From 392ac75d599d86a794b68139071110b054b0a636 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Beauz=C3=A9e-Luyssen?= Date: Fri, 12 Jul 2019 17:19:27 +0200 Subject: [PATCH 5/5] Update license headers --- include/Fixup.h | 4 ++-- include/Types.h | 4 ++-- include/discoverer/IDiscoverer.h | 4 ++-- include/medialibrary/IAlbum.h | 4 ++-- include/medialibrary/IAlbumTrack.h | 4 ++-- include/medialibrary/IArtist.h | 4 ++-- include/medialibrary/IAudioTrack.h | 4 ++-- include/medialibrary/IChapter.h | 4 ++-- include/medialibrary/IDeviceLister.h | 4 ++-- include/medialibrary/IFile.h | 4 ++-- include/medialibrary/IFolder.h | 4 ++-- include/medialibrary/IGenre.h | 4 ++-- include/medialibrary/IInterruptProbe.h | 2 +- include/medialibrary/ILabel.h | 4 ++-- include/medialibrary/ILogger.h | 4 ++-- include/medialibrary/IMedia.h | 4 ++-- include/medialibrary/IMediaLibrary.h | 2 +- include/medialibrary/IMovie.h | 4 ++-- include/medialibrary/IPlaylist.h | 4 ++-- include/medialibrary/IQuery.h | 4 ++-- include/medialibrary/IShow.h | 4 ++-- include/medialibrary/IShowEpisode.h | 4 ++-- include/medialibrary/IThumbnailer.h | 4 ++-- include/medialibrary/IVideoTrack.h | 4 ++-- include/medialibrary/Types.h | 4 ++-- include/medialibrary/filesystem/IDevice.h | 4 ++-- include/medialibrary/filesystem/IDirectory.h | 4 ++-- include/medialibrary/filesystem/IFile.h | 4 ++-- include/medialibrary/filesystem/IFileSystemFactory.h | 4 ++-- src/Album.cpp | 4 ++-- src/Album.h | 4 ++-- src/AlbumTrack.cpp | 4 ++-- src/AlbumTrack.h | 4 ++-- src/Artist.cpp | 4 ++-- src/Artist.h | 4 ++-- src/AudioTrack.cpp | 4 ++-- src/AudioTrack.h | 4 ++-- src/Chapter.cpp | 4 ++-- src/Chapter.h | 4 ++-- src/Device.cpp | 4 ++-- src/Device.h | 4 ++-- src/Factory.cpp | 4 ++-- src/File.cpp | 4 ++-- src/File.h | 4 ++-- src/Folder.cpp | 4 ++-- src/Folder.h | 4 ++-- src/Genre.cpp | 4 ++-- src/Genre.h | 4 ++-- src/Label.cpp | 4 ++-- src/Label.h | 4 ++-- src/Media.cpp | 4 ++-- src/Media.h | 4 ++-- src/MediaLibrary.cpp | 4 ++-- src/MediaLibrary.h | 4 ++-- src/Movie.cpp | 4 ++-- src/Movie.h | 4 ++-- src/Playlist.cpp | 4 ++-- src/Playlist.h | 4 ++-- src/Settings.cpp | 4 ++-- src/Settings.h | 4 ++-- src/Show.cpp | 4 ++-- src/Show.h | 4 ++-- src/ShowEpisode.cpp | 4 ++-- src/ShowEpisode.h | 4 ++-- src/Thumbnail.cpp | 2 +- src/Thumbnail.h | 2 +- src/VideoTrack.cpp | 4 ++-- src/VideoTrack.h | 4 ++-- src/compat/ConditionVariable.h | 4 ++-- src/compat/Mutex.h | 4 ++-- src/compat/Thread.h | 4 ++-- src/database/DatabaseHelpers.h | 4 ++-- src/database/SqliteConnection.cpp | 4 ++-- src/database/SqliteConnection.h | 4 ++-- src/database/SqliteErrors.h | 4 ++-- src/database/SqliteQuery.h | 4 ++-- src/database/SqliteTools.cpp | 4 ++-- src/database/SqliteTools.h | 4 ++-- src/database/SqliteTraits.h | 4 ++-- src/database/SqliteTransaction.cpp | 4 ++-- src/database/SqliteTransaction.h | 4 ++-- src/discoverer/DiscovererWorker.cpp | 4 ++-- src/discoverer/DiscovererWorker.h | 4 ++-- src/discoverer/FsDiscoverer.cpp | 4 ++-- src/discoverer/FsDiscoverer.h | 4 ++-- src/discoverer/probe/CrawlerProbe.h | 4 ++-- src/discoverer/probe/IProbe.h | 4 ++-- src/discoverer/probe/PathProbe.cpp | 4 ++-- src/discoverer/probe/PathProbe.h | 4 ++-- src/factory/DeviceListerFactory.cpp | 4 ++-- src/factory/DeviceListerFactory.h | 4 ++-- src/factory/NetworkFileSystemFactory.cpp | 4 ++-- src/factory/NetworkFileSystemFactory.h | 4 ++-- src/filesystem/common/CommonDevice.cpp | 4 ++-- src/filesystem/common/CommonDevice.h | 4 ++-- src/filesystem/common/CommonDirectory.cpp | 4 ++-- src/filesystem/common/CommonDirectory.h | 4 ++-- src/filesystem/common/CommonFile.cpp | 4 ++-- src/filesystem/common/CommonFile.h | 4 ++-- src/filesystem/darwin/DeviceLister.h | 2 +- src/filesystem/network/Device.cpp | 4 ++-- src/filesystem/network/Device.h | 4 ++-- src/filesystem/network/Directory.cpp | 4 ++-- src/filesystem/network/Directory.h | 4 ++-- src/filesystem/network/File.cpp | 4 ++-- src/filesystem/network/File.h | 4 ++-- src/filesystem/unix/Device.h | 4 ++-- src/filesystem/unix/DeviceLister.h | 4 ++-- src/filesystem/unix/Directory.cpp | 4 ++-- src/filesystem/unix/Directory.h | 4 ++-- src/filesystem/unix/File.cpp | 4 ++-- src/filesystem/unix/File.h | 4 ++-- src/filesystem/win32/Device.h | 4 ++-- src/filesystem/win32/DeviceLister.cpp | 4 ++-- src/filesystem/win32/DeviceLister.h | 4 ++-- src/filesystem/win32/Directory.cpp | 4 ++-- src/filesystem/win32/Directory.h | 4 ++-- src/filesystem/win32/File.cpp | 4 ++-- src/filesystem/win32/File.h | 4 ++-- src/logging/IostreamLogger.cpp | 4 ++-- src/logging/IostreamLogger.h | 4 ++-- src/logging/Logger.cpp | 4 ++-- src/logging/Logger.h | 4 ++-- src/metadata_services/MetadataParser.cpp | 4 ++-- src/metadata_services/MetadataParser.h | 4 ++-- src/metadata_services/vlc/Common.cpp | 4 ++-- src/metadata_services/vlc/Common.hpp | 4 ++-- src/metadata_services/vlc/VLCMetadataService.cpp | 4 ++-- src/parser/Parser.cpp | 4 ++-- src/parser/Parser.h | 4 ++-- src/parser/ParserWorker.cpp | 4 ++-- src/parser/ParserWorker.h | 4 ++-- src/parser/Task.cpp | 4 ++-- src/parser/Task.h | 4 ++-- src/thumbnails/CoreThumbnailer.cpp | 4 ++-- src/thumbnails/CoreThumbnailer.h | 2 +- src/thumbnails/ThumbnailerWorker.cpp | 4 ++-- src/thumbnails/ThumbnailerWorker.h | 4 ++-- src/thumbnails/VmemThumbnailer.cpp | 2 +- src/thumbnails/VmemThumbnailer.h | 2 +- src/thumbnails/imagecompressors/IImageCompressor.h | 4 ++-- src/thumbnails/imagecompressors/JpegCompressor.cpp | 4 ++-- src/thumbnails/imagecompressors/JpegCompressor.h | 4 ++-- src/utils/Charsets.h | 4 ++-- src/utils/Directory.cpp | 4 ++-- src/utils/Directory.h | 4 ++-- src/utils/Filename.cpp | 4 ++-- src/utils/Filename.h | 4 ++-- src/utils/SWMRLock.h | 4 ++-- src/utils/Strings.cpp | 4 ++-- src/utils/Strings.h | 4 ++-- src/utils/Url.cpp | 4 ++-- src/utils/Url.h | 4 ++-- src/utils/VLCInstance.cpp | 4 ++-- src/utils/VLCInstance.h | 4 ++-- test/common/MediaLibraryTester.cpp | 4 ++-- test/common/MediaLibraryTester.h | 4 ++-- test/discoverer/main.cpp | 2 +- test/mocks/DiscovererCbMock.h | 4 ++-- test/mocks/FileSystem.cpp | 4 ++-- test/mocks/FileSystem.h | 4 ++-- test/mocks/MockDeviceLister.h | 4 ++-- test/mocks/NoopCallback.h | 4 ++-- test/mocks/filesystem/MockDevice.cpp | 4 ++-- test/mocks/filesystem/MockDevice.h | 4 ++-- test/mocks/filesystem/MockDirectory.cpp | 4 ++-- test/mocks/filesystem/MockDirectory.h | 4 ++-- test/mocks/filesystem/MockFile.cpp | 4 ++-- test/mocks/filesystem/MockFile.h | 4 ++-- test/samples/Tester.cpp | 4 ++-- test/samples/Tester.h | 4 ++-- test/samples/main.cpp | 4 ++-- test/unittest/AlbumTests.cpp | 4 ++-- test/unittest/AlbumTrackTests.cpp | 4 ++-- test/unittest/ArtistTests.cpp | 4 ++-- test/unittest/AudioTrackTests.cpp | 4 ++-- test/unittest/ChapterTests.cpp | 2 +- test/unittest/DeviceTests.cpp | 4 ++-- test/unittest/FileTests.cpp | 4 ++-- test/unittest/FolderTests.cpp | 4 ++-- test/unittest/FsUtilsTests.cpp | 4 ++-- test/unittest/GenreTests.cpp | 4 ++-- test/unittest/LabelTests.cpp | 4 ++-- test/unittest/MediaTests.cpp | 4 ++-- test/unittest/MiscTests.cpp | 4 ++-- test/unittest/MovieTests.cpp | 4 ++-- test/unittest/PlaylistTests.cpp | 4 ++-- test/unittest/RemovalNotifierTests.cpp | 4 ++-- test/unittest/ShowTests.cpp | 4 ++-- test/unittest/Tests.cpp | 4 ++-- test/unittest/Tests.h | 4 ++-- test/unittest/ThumbnailTests.cpp | 2 +- test/unittest/UrlTests.cpp | 4 ++-- test/unittest/VideoTrackTests.cpp | 4 ++-- 194 files changed, 377 insertions(+), 377 deletions(-) diff --git a/include/Fixup.h b/include/Fixup.h index ad4fef29..e4706bc3 100644 --- a/include/Fixup.h +++ b/include/Fixup.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/Types.h b/include/Types.h index b57a4f4c..132fc4ae 100644 --- a/include/Types.h +++ b/include/Types.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2016 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2016-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/discoverer/IDiscoverer.h b/include/discoverer/IDiscoverer.h index 55f165de..3a1b9753 100644 --- a/include/discoverer/IDiscoverer.h +++ b/include/discoverer/IDiscoverer.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/IAlbum.h b/include/medialibrary/IAlbum.h index e11af038..d100cdbf 100644 --- a/include/medialibrary/IAlbum.h +++ b/include/medialibrary/IAlbum.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/IAlbumTrack.h b/include/medialibrary/IAlbumTrack.h index c53cbf17..c7d4067e 100644 --- a/include/medialibrary/IAlbumTrack.h +++ b/include/medialibrary/IAlbumTrack.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/IArtist.h b/include/medialibrary/IArtist.h index 1332625e..9c428a4d 100644 --- a/include/medialibrary/IArtist.h +++ b/include/medialibrary/IArtist.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/IAudioTrack.h b/include/medialibrary/IAudioTrack.h index 9311e997..a77a7ad2 100644 --- a/include/medialibrary/IAudioTrack.h +++ b/include/medialibrary/IAudioTrack.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/IChapter.h b/include/medialibrary/IChapter.h index bce75685..757ce148 100644 --- a/include/medialibrary/IChapter.h +++ b/include/medialibrary/IChapter.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2018 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2018-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/IDeviceLister.h b/include/medialibrary/IDeviceLister.h index 6f527357..999afd4b 100644 --- a/include/medialibrary/IDeviceLister.h +++ b/include/medialibrary/IDeviceLister.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/IFile.h b/include/medialibrary/IFile.h index 87c80d4b..98068939 100644 --- a/include/medialibrary/IFile.h +++ b/include/medialibrary/IFile.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/IFolder.h b/include/medialibrary/IFolder.h index cc8a7e69..65591236 100644 --- a/include/medialibrary/IFolder.h +++ b/include/medialibrary/IFolder.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/IGenre.h b/include/medialibrary/IGenre.h index 7ba09091..d057f6e2 100644 --- a/include/medialibrary/IGenre.h +++ b/include/medialibrary/IGenre.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/IInterruptProbe.h b/include/medialibrary/IInterruptProbe.h index 94993e67..ccf8fe04 100644 --- a/include/medialibrary/IInterruptProbe.h +++ b/include/medialibrary/IInterruptProbe.h @@ -3,7 +3,7 @@ ***************************************************************************** * Copyright (C) 2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/ILabel.h b/include/medialibrary/ILabel.h index 1bc0fe67..7d0c5135 100644 --- a/include/medialibrary/ILabel.h +++ b/include/medialibrary/ILabel.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/ILogger.h b/include/medialibrary/ILogger.h index eeeac5db..ce3916fa 100644 --- a/include/medialibrary/ILogger.h +++ b/include/medialibrary/ILogger.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/IMedia.h b/include/medialibrary/IMedia.h index 465273a8..09eab74d 100644 --- a/include/medialibrary/IMedia.h +++ b/include/medialibrary/IMedia.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/IMediaLibrary.h b/include/medialibrary/IMediaLibrary.h index 4bf1a32b..96fa04a9 100644 --- a/include/medialibrary/IMediaLibrary.h +++ b/include/medialibrary/IMediaLibrary.h @@ -3,7 +3,7 @@ ***************************************************************************** * Copyright (C) 2015-2018 Hugo Beauzée-Luyssen, Videolabs * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/IMovie.h b/include/medialibrary/IMovie.h index c561ae20..c323b643 100644 --- a/include/medialibrary/IMovie.h +++ b/include/medialibrary/IMovie.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/IPlaylist.h b/include/medialibrary/IPlaylist.h index f02dfeff..b8bfa8d0 100644 --- a/include/medialibrary/IPlaylist.h +++ b/include/medialibrary/IPlaylist.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/IQuery.h b/include/medialibrary/IQuery.h index b0b40291..c28af32b 100644 --- a/include/medialibrary/IQuery.h +++ b/include/medialibrary/IQuery.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/IShow.h b/include/medialibrary/IShow.h index 66926ba5..4b3415ac 100644 --- a/include/medialibrary/IShow.h +++ b/include/medialibrary/IShow.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/IShowEpisode.h b/include/medialibrary/IShowEpisode.h index b574d521..0ffa9d24 100644 --- a/include/medialibrary/IShowEpisode.h +++ b/include/medialibrary/IShowEpisode.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/IThumbnailer.h b/include/medialibrary/IThumbnailer.h index b46cee3e..f7f9c93d 100644 --- a/include/medialibrary/IThumbnailer.h +++ b/include/medialibrary/IThumbnailer.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/IVideoTrack.h b/include/medialibrary/IVideoTrack.h index 9f604aa9..a0099413 100644 --- a/include/medialibrary/IVideoTrack.h +++ b/include/medialibrary/IVideoTrack.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/Types.h b/include/medialibrary/Types.h index d5b8fbe2..89203aa1 100644 --- a/include/medialibrary/Types.h +++ b/include/medialibrary/Types.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/filesystem/IDevice.h b/include/medialibrary/filesystem/IDevice.h index d2bfbf61..45c46021 100644 --- a/include/medialibrary/filesystem/IDevice.h +++ b/include/medialibrary/filesystem/IDevice.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/filesystem/IDirectory.h b/include/medialibrary/filesystem/IDirectory.h index 5ca222cb..42adc32e 100644 --- a/include/medialibrary/filesystem/IDirectory.h +++ b/include/medialibrary/filesystem/IDirectory.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/filesystem/IFile.h b/include/medialibrary/filesystem/IFile.h index cc2f7566..2a6970b6 100644 --- a/include/medialibrary/filesystem/IFile.h +++ b/include/medialibrary/filesystem/IFile.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/include/medialibrary/filesystem/IFileSystemFactory.h b/include/medialibrary/filesystem/IFileSystemFactory.h index 1af03be4..f12f694a 100644 --- a/include/medialibrary/filesystem/IFileSystemFactory.h +++ b/include/medialibrary/filesystem/IFileSystemFactory.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Album.cpp b/src/Album.cpp index ead10d3a..3d288219 100644 --- a/src/Album.cpp +++ b/src/Album.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Album.h b/src/Album.h index ef827fb9..6af064bd 100644 --- a/src/Album.h +++ b/src/Album.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/AlbumTrack.cpp b/src/AlbumTrack.cpp index dd91de8f..e429825c 100644 --- a/src/AlbumTrack.cpp +++ b/src/AlbumTrack.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/AlbumTrack.h b/src/AlbumTrack.h index 67dd435f..fc589687 100644 --- a/src/AlbumTrack.h +++ b/src/AlbumTrack.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Artist.cpp b/src/Artist.cpp index e6435a3b..1d196f37 100644 --- a/src/Artist.cpp +++ b/src/Artist.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Artist.h b/src/Artist.h index 20636359..eccd87cd 100644 --- a/src/Artist.h +++ b/src/Artist.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/AudioTrack.cpp b/src/AudioTrack.cpp index 68fcc77c..c9c0d5d4 100644 --- a/src/AudioTrack.cpp +++ b/src/AudioTrack.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/AudioTrack.h b/src/AudioTrack.h index dd4b8406..b0ab8847 100644 --- a/src/AudioTrack.h +++ b/src/AudioTrack.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Chapter.cpp b/src/Chapter.cpp index 82e5be53..c07f4177 100644 --- a/src/Chapter.cpp +++ b/src/Chapter.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2018 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2018-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Chapter.h b/src/Chapter.h index dedc6322..888a0ac2 100644 --- a/src/Chapter.h +++ b/src/Chapter.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2018 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2018-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Device.cpp b/src/Device.cpp index e34fc46d..f3580aee 100644 --- a/src/Device.cpp +++ b/src/Device.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Device.h b/src/Device.h index 4cd1b9bd..74c614ae 100644 --- a/src/Device.h +++ b/src/Device.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Factory.cpp b/src/Factory.cpp index 45b7da98..5fa566a1 100644 --- a/src/Factory.cpp +++ b/src/Factory.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/File.cpp b/src/File.cpp index 4429b3c9..e9fb199c 100644 --- a/src/File.cpp +++ b/src/File.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/File.h b/src/File.h index 8b11c22a..a4d99308 100644 --- a/src/File.h +++ b/src/File.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Folder.cpp b/src/Folder.cpp index ba70738e..a2adfa07 100644 --- a/src/Folder.cpp +++ b/src/Folder.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Folder.h b/src/Folder.h index 7902887b..c5cbed69 100644 --- a/src/Folder.h +++ b/src/Folder.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Genre.cpp b/src/Genre.cpp index 16713d2a..ae1ed066 100644 --- a/src/Genre.cpp +++ b/src/Genre.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Genre.h b/src/Genre.h index 669d61c3..bf2bd098 100644 --- a/src/Genre.h +++ b/src/Genre.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Label.cpp b/src/Label.cpp index a8ead50d..09271745 100644 --- a/src/Label.cpp +++ b/src/Label.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Label.h b/src/Label.h index 5ee7d00a..fd43d6f3 100644 --- a/src/Label.h +++ b/src/Label.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Media.cpp b/src/Media.cpp index 4a9dcb84..398150e7 100644 --- a/src/Media.cpp +++ b/src/Media.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Media.h b/src/Media.h index 2a846bf1..42e0f26c 100644 --- a/src/Media.h +++ b/src/Media.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/MediaLibrary.cpp b/src/MediaLibrary.cpp index 77e953dd..c3ad5b97 100644 --- a/src/MediaLibrary.cpp +++ b/src/MediaLibrary.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/MediaLibrary.h b/src/MediaLibrary.h index ffb7f7b3..6dad64b1 100644 --- a/src/MediaLibrary.h +++ b/src/MediaLibrary.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Movie.cpp b/src/Movie.cpp index 1d163ac9..520ee23b 100644 --- a/src/Movie.cpp +++ b/src/Movie.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Movie.h b/src/Movie.h index 8ccbb817..3db326e5 100644 --- a/src/Movie.h +++ b/src/Movie.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Playlist.cpp b/src/Playlist.cpp index 578ea0e9..1102cda4 100644 --- a/src/Playlist.cpp +++ b/src/Playlist.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Playlist.h b/src/Playlist.h index 822bbd77..f732f648 100644 --- a/src/Playlist.h +++ b/src/Playlist.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Settings.cpp b/src/Settings.cpp index 8b8a948e..87160cb6 100644 --- a/src/Settings.cpp +++ b/src/Settings.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Settings.h b/src/Settings.h index e0daf366..18e5ee95 100644 --- a/src/Settings.h +++ b/src/Settings.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Show.cpp b/src/Show.cpp index 91c5194d..c3369c07 100644 --- a/src/Show.cpp +++ b/src/Show.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Show.h b/src/Show.h index 90875e4c..dda3c284 100644 --- a/src/Show.h +++ b/src/Show.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/ShowEpisode.cpp b/src/ShowEpisode.cpp index 676fbc53..7ccf2c9b 100644 --- a/src/ShowEpisode.cpp +++ b/src/ShowEpisode.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/ShowEpisode.h b/src/ShowEpisode.h index ff911cf8..c22426f5 100644 --- a/src/ShowEpisode.h +++ b/src/ShowEpisode.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Thumbnail.cpp b/src/Thumbnail.cpp index f3c1ca4d..3d6f7233 100644 --- a/src/Thumbnail.cpp +++ b/src/Thumbnail.cpp @@ -3,7 +3,7 @@ ***************************************************************************** * Copyright (C) 2015-2018 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/Thumbnail.h b/src/Thumbnail.h index d3646989..6cdc6c58 100644 --- a/src/Thumbnail.h +++ b/src/Thumbnail.h @@ -3,7 +3,7 @@ ***************************************************************************** * Copyright (C) 2015-2018 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/VideoTrack.cpp b/src/VideoTrack.cpp index ecea18dd..6199ffc8 100644 --- a/src/VideoTrack.cpp +++ b/src/VideoTrack.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/VideoTrack.h b/src/VideoTrack.h index b2fba256..8ecb5329 100644 --- a/src/VideoTrack.h +++ b/src/VideoTrack.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/compat/ConditionVariable.h b/src/compat/ConditionVariable.h index 13d0fcdd..93def3ff 100644 --- a/src/compat/ConditionVariable.h +++ b/src/compat/ConditionVariable.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2016 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2016-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/compat/Mutex.h b/src/compat/Mutex.h index 98eabda3..f0d06968 100644 --- a/src/compat/Mutex.h +++ b/src/compat/Mutex.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/compat/Thread.h b/src/compat/Thread.h index afda7513..e11dd0b7 100644 --- a/src/compat/Thread.h +++ b/src/compat/Thread.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/database/DatabaseHelpers.h b/src/database/DatabaseHelpers.h index 5d4651be..609d8cca 100644 --- a/src/database/DatabaseHelpers.h +++ b/src/database/DatabaseHelpers.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/database/SqliteConnection.cpp b/src/database/SqliteConnection.cpp index b88f774f..877f00fa 100644 --- a/src/database/SqliteConnection.cpp +++ b/src/database/SqliteConnection.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/database/SqliteConnection.h b/src/database/SqliteConnection.h index 3078a991..20e44983 100644 --- a/src/database/SqliteConnection.h +++ b/src/database/SqliteConnection.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/database/SqliteErrors.h b/src/database/SqliteErrors.h index eaee26f2..fd19c0f7 100644 --- a/src/database/SqliteErrors.h +++ b/src/database/SqliteErrors.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/database/SqliteQuery.h b/src/database/SqliteQuery.h index af135b93..18a114b5 100644 --- a/src/database/SqliteQuery.h +++ b/src/database/SqliteQuery.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/database/SqliteTools.cpp b/src/database/SqliteTools.cpp index 8af8461e..7a5e6262 100644 --- a/src/database/SqliteTools.cpp +++ b/src/database/SqliteTools.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/database/SqliteTools.h b/src/database/SqliteTools.h index 47af972b..b7033260 100644 --- a/src/database/SqliteTools.h +++ b/src/database/SqliteTools.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/database/SqliteTraits.h b/src/database/SqliteTraits.h index d14908d1..4533739b 100644 --- a/src/database/SqliteTraits.h +++ b/src/database/SqliteTraits.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/database/SqliteTransaction.cpp b/src/database/SqliteTransaction.cpp index 1bdafd5c..2d046f19 100644 --- a/src/database/SqliteTransaction.cpp +++ b/src/database/SqliteTransaction.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/database/SqliteTransaction.h b/src/database/SqliteTransaction.h index 8bbd500a..2c9f293a 100644 --- a/src/database/SqliteTransaction.h +++ b/src/database/SqliteTransaction.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/discoverer/DiscovererWorker.cpp b/src/discoverer/DiscovererWorker.cpp index bcecd0b9..d79538da 100644 --- a/src/discoverer/DiscovererWorker.cpp +++ b/src/discoverer/DiscovererWorker.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/discoverer/DiscovererWorker.h b/src/discoverer/DiscovererWorker.h index 63727f28..26be7d0d 100644 --- a/src/discoverer/DiscovererWorker.h +++ b/src/discoverer/DiscovererWorker.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/discoverer/FsDiscoverer.cpp b/src/discoverer/FsDiscoverer.cpp index 161bf6f9..93a68ac9 100644 --- a/src/discoverer/FsDiscoverer.cpp +++ b/src/discoverer/FsDiscoverer.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/discoverer/FsDiscoverer.h b/src/discoverer/FsDiscoverer.h index 94d0305b..6cb2b780 100644 --- a/src/discoverer/FsDiscoverer.h +++ b/src/discoverer/FsDiscoverer.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/discoverer/probe/CrawlerProbe.h b/src/discoverer/probe/CrawlerProbe.h index a309dfcc..9e551bc2 100644 --- a/src/discoverer/probe/CrawlerProbe.h +++ b/src/discoverer/probe/CrawlerProbe.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2017 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2017-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * Alexandre Fernandez * * This program is free software; you can redistribute it and/or modify it diff --git a/src/discoverer/probe/IProbe.h b/src/discoverer/probe/IProbe.h index 6d8984a7..0965449e 100644 --- a/src/discoverer/probe/IProbe.h +++ b/src/discoverer/probe/IProbe.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2017 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2017-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * Alexandre Fernandez * * This program is free software; you can redistribute it and/or modify it diff --git a/src/discoverer/probe/PathProbe.cpp b/src/discoverer/probe/PathProbe.cpp index d1a0e494..7afbef53 100644 --- a/src/discoverer/probe/PathProbe.cpp +++ b/src/discoverer/probe/PathProbe.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2017 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2017-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * Alexandre Fernandez * * This program is free software; you can redistribute it and/or modify it diff --git a/src/discoverer/probe/PathProbe.h b/src/discoverer/probe/PathProbe.h index 9eadab4d..3f4f4dff 100644 --- a/src/discoverer/probe/PathProbe.h +++ b/src/discoverer/probe/PathProbe.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2017 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2017-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * Alexandre Fernandez * * This program is free software; you can redistribute it and/or modify it diff --git a/src/factory/DeviceListerFactory.cpp b/src/factory/DeviceListerFactory.cpp index bd25a14a..1b86244c 100644 --- a/src/factory/DeviceListerFactory.cpp +++ b/src/factory/DeviceListerFactory.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/factory/DeviceListerFactory.h b/src/factory/DeviceListerFactory.h index c9d156c8..a250eae7 100644 --- a/src/factory/DeviceListerFactory.h +++ b/src/factory/DeviceListerFactory.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/factory/NetworkFileSystemFactory.cpp b/src/factory/NetworkFileSystemFactory.cpp index f8b6b4dc..99f1a401 100644 --- a/src/factory/NetworkFileSystemFactory.cpp +++ b/src/factory/NetworkFileSystemFactory.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/factory/NetworkFileSystemFactory.h b/src/factory/NetworkFileSystemFactory.h index d64415d7..b63bcd2c 100644 --- a/src/factory/NetworkFileSystemFactory.h +++ b/src/factory/NetworkFileSystemFactory.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/filesystem/common/CommonDevice.cpp b/src/filesystem/common/CommonDevice.cpp index b37a557f..6ba8f6ca 100644 --- a/src/filesystem/common/CommonDevice.cpp +++ b/src/filesystem/common/CommonDevice.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/filesystem/common/CommonDevice.h b/src/filesystem/common/CommonDevice.h index 4f0bfb9e..78e830d4 100644 --- a/src/filesystem/common/CommonDevice.h +++ b/src/filesystem/common/CommonDevice.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/filesystem/common/CommonDirectory.cpp b/src/filesystem/common/CommonDirectory.cpp index 833f4977..ead0d9c7 100644 --- a/src/filesystem/common/CommonDirectory.cpp +++ b/src/filesystem/common/CommonDirectory.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/filesystem/common/CommonDirectory.h b/src/filesystem/common/CommonDirectory.h index f633289b..6e46f55f 100644 --- a/src/filesystem/common/CommonDirectory.h +++ b/src/filesystem/common/CommonDirectory.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/filesystem/common/CommonFile.cpp b/src/filesystem/common/CommonFile.cpp index 12f93021..a0528bc3 100644 --- a/src/filesystem/common/CommonFile.cpp +++ b/src/filesystem/common/CommonFile.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/filesystem/common/CommonFile.h b/src/filesystem/common/CommonFile.h index f7fd6bcb..9e2fea28 100644 --- a/src/filesystem/common/CommonFile.h +++ b/src/filesystem/common/CommonFile.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/filesystem/darwin/DeviceLister.h b/src/filesystem/darwin/DeviceLister.h index ac2daac9..38c45301 100644 --- a/src/filesystem/darwin/DeviceLister.h +++ b/src/filesystem/darwin/DeviceLister.h @@ -1,7 +1,7 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015-2017 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * * Authors: Hugo Beauzée-Luyssen * diff --git a/src/filesystem/network/Device.cpp b/src/filesystem/network/Device.cpp index 5fbbb81d..dec406c4 100644 --- a/src/filesystem/network/Device.cpp +++ b/src/filesystem/network/Device.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/filesystem/network/Device.h b/src/filesystem/network/Device.h index 98a9202a..6995d93b 100644 --- a/src/filesystem/network/Device.h +++ b/src/filesystem/network/Device.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/filesystem/network/Directory.cpp b/src/filesystem/network/Directory.cpp index 2cec61c6..7e042d10 100644 --- a/src/filesystem/network/Directory.cpp +++ b/src/filesystem/network/Directory.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/filesystem/network/Directory.h b/src/filesystem/network/Directory.h index 187e2391..c63d81ff 100644 --- a/src/filesystem/network/Directory.h +++ b/src/filesystem/network/Directory.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/filesystem/network/File.cpp b/src/filesystem/network/File.cpp index 50a56600..c9cf996c 100644 --- a/src/filesystem/network/File.cpp +++ b/src/filesystem/network/File.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/filesystem/network/File.h b/src/filesystem/network/File.h index 3589bd2b..e0ca83c1 100644 --- a/src/filesystem/network/File.h +++ b/src/filesystem/network/File.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/filesystem/unix/Device.h b/src/filesystem/unix/Device.h index a075ad92..bffc7a39 100644 --- a/src/filesystem/unix/Device.h +++ b/src/filesystem/unix/Device.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/filesystem/unix/DeviceLister.h b/src/filesystem/unix/DeviceLister.h index db46eb3a..839a546c 100644 --- a/src/filesystem/unix/DeviceLister.h +++ b/src/filesystem/unix/DeviceLister.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/filesystem/unix/Directory.cpp b/src/filesystem/unix/Directory.cpp index 163c7284..c38b8e4e 100644 --- a/src/filesystem/unix/Directory.cpp +++ b/src/filesystem/unix/Directory.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/filesystem/unix/Directory.h b/src/filesystem/unix/Directory.h index 8776cec1..de424574 100644 --- a/src/filesystem/unix/Directory.h +++ b/src/filesystem/unix/Directory.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/filesystem/unix/File.cpp b/src/filesystem/unix/File.cpp index 9757bf2c..be8e7940 100644 --- a/src/filesystem/unix/File.cpp +++ b/src/filesystem/unix/File.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/filesystem/unix/File.h b/src/filesystem/unix/File.h index 020bd365..7a28ee76 100644 --- a/src/filesystem/unix/File.h +++ b/src/filesystem/unix/File.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/filesystem/win32/Device.h b/src/filesystem/win32/Device.h index a075ad92..bffc7a39 100644 --- a/src/filesystem/win32/Device.h +++ b/src/filesystem/win32/Device.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/filesystem/win32/DeviceLister.cpp b/src/filesystem/win32/DeviceLister.cpp index e8c3978a..0487d0c1 100644 --- a/src/filesystem/win32/DeviceLister.cpp +++ b/src/filesystem/win32/DeviceLister.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/filesystem/win32/DeviceLister.h b/src/filesystem/win32/DeviceLister.h index 98588517..a49d9a08 100644 --- a/src/filesystem/win32/DeviceLister.h +++ b/src/filesystem/win32/DeviceLister.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/filesystem/win32/Directory.cpp b/src/filesystem/win32/Directory.cpp index 521639f5..7868896c 100644 --- a/src/filesystem/win32/Directory.cpp +++ b/src/filesystem/win32/Directory.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/filesystem/win32/Directory.h b/src/filesystem/win32/Directory.h index 9f820e00..96916025 100644 --- a/src/filesystem/win32/Directory.h +++ b/src/filesystem/win32/Directory.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/filesystem/win32/File.cpp b/src/filesystem/win32/File.cpp index bbe59a20..f8e4ee2a 100644 --- a/src/filesystem/win32/File.cpp +++ b/src/filesystem/win32/File.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/filesystem/win32/File.h b/src/filesystem/win32/File.h index 1b9ced2e..b471a9f9 100644 --- a/src/filesystem/win32/File.h +++ b/src/filesystem/win32/File.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/logging/IostreamLogger.cpp b/src/logging/IostreamLogger.cpp index 950e4b32..26e0b37d 100644 --- a/src/logging/IostreamLogger.cpp +++ b/src/logging/IostreamLogger.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/logging/IostreamLogger.h b/src/logging/IostreamLogger.h index 360f9242..26334941 100644 --- a/src/logging/IostreamLogger.h +++ b/src/logging/IostreamLogger.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/logging/Logger.cpp b/src/logging/Logger.cpp index 77a0a84a..89a95dd4 100644 --- a/src/logging/Logger.cpp +++ b/src/logging/Logger.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/logging/Logger.h b/src/logging/Logger.h index aff532ef..69da03c0 100644 --- a/src/logging/Logger.h +++ b/src/logging/Logger.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/metadata_services/MetadataParser.cpp b/src/metadata_services/MetadataParser.cpp index dff27eb8..fd322264 100644 --- a/src/metadata_services/MetadataParser.cpp +++ b/src/metadata_services/MetadataParser.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/metadata_services/MetadataParser.h b/src/metadata_services/MetadataParser.h index 9592b771..67a56977 100644 --- a/src/metadata_services/MetadataParser.h +++ b/src/metadata_services/MetadataParser.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/metadata_services/vlc/Common.cpp b/src/metadata_services/vlc/Common.cpp index b7f980f5..a9874546 100644 --- a/src/metadata_services/vlc/Common.cpp +++ b/src/metadata_services/vlc/Common.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/metadata_services/vlc/Common.hpp b/src/metadata_services/vlc/Common.hpp index 0ec93e0d..a21bf086 100644 --- a/src/metadata_services/vlc/Common.hpp +++ b/src/metadata_services/vlc/Common.hpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/metadata_services/vlc/VLCMetadataService.cpp b/src/metadata_services/vlc/VLCMetadataService.cpp index 849b85c5..a9c9c0cc 100644 --- a/src/metadata_services/vlc/VLCMetadataService.cpp +++ b/src/metadata_services/vlc/VLCMetadataService.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/parser/Parser.cpp b/src/parser/Parser.cpp index dfcc73b0..3bc753fc 100644 --- a/src/parser/Parser.cpp +++ b/src/parser/Parser.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/parser/Parser.h b/src/parser/Parser.h index 1cbba24c..1fa791af 100644 --- a/src/parser/Parser.h +++ b/src/parser/Parser.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/parser/ParserWorker.cpp b/src/parser/ParserWorker.cpp index 81bf7fa0..92cae1ac 100644 --- a/src/parser/ParserWorker.cpp +++ b/src/parser/ParserWorker.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/parser/ParserWorker.h b/src/parser/ParserWorker.h index a53ed30e..85e611c2 100644 --- a/src/parser/ParserWorker.h +++ b/src/parser/ParserWorker.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/parser/Task.cpp b/src/parser/Task.cpp index 8bba9602..a156b2cc 100644 --- a/src/parser/Task.cpp +++ b/src/parser/Task.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 - 2017 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015 - 2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * Alexandre Fernandez * * This program is free software; you can redistribute it and/or modify it diff --git a/src/parser/Task.h b/src/parser/Task.h index 009543a0..bab2bd83 100644 --- a/src/parser/Task.h +++ b/src/parser/Task.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * Alexandre Fernandez * * This program is free software; you can redistribute it and/or modify it diff --git a/src/thumbnails/CoreThumbnailer.cpp b/src/thumbnails/CoreThumbnailer.cpp index 1a34e3fe..65519c51 100644 --- a/src/thumbnails/CoreThumbnailer.cpp +++ b/src/thumbnails/CoreThumbnailer.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2018 Hugo Beauzée-Luyssen, Videolabs, VideoLAN + * Copyright (C) 2018-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/thumbnails/CoreThumbnailer.h b/src/thumbnails/CoreThumbnailer.h index 404f9318..e1492ab0 100644 --- a/src/thumbnails/CoreThumbnailer.h +++ b/src/thumbnails/CoreThumbnailer.h @@ -3,7 +3,7 @@ ***************************************************************************** * Copyright (C) 2015-2018 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/thumbnails/ThumbnailerWorker.cpp b/src/thumbnails/ThumbnailerWorker.cpp index 1c99ee90..44be9bcb 100644 --- a/src/thumbnails/ThumbnailerWorker.cpp +++ b/src/thumbnails/ThumbnailerWorker.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/thumbnails/ThumbnailerWorker.h b/src/thumbnails/ThumbnailerWorker.h index 1043c26d..0b385ea3 100644 --- a/src/thumbnails/ThumbnailerWorker.h +++ b/src/thumbnails/ThumbnailerWorker.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/thumbnails/VmemThumbnailer.cpp b/src/thumbnails/VmemThumbnailer.cpp index ae26f6a9..d48b0191 100644 --- a/src/thumbnails/VmemThumbnailer.cpp +++ b/src/thumbnails/VmemThumbnailer.cpp @@ -3,7 +3,7 @@ ***************************************************************************** * Copyright (C) 2015-2018 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/thumbnails/VmemThumbnailer.h b/src/thumbnails/VmemThumbnailer.h index bddbdece..810f36f8 100644 --- a/src/thumbnails/VmemThumbnailer.h +++ b/src/thumbnails/VmemThumbnailer.h @@ -3,7 +3,7 @@ ***************************************************************************** * Copyright (C) 2015-2018 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/thumbnails/imagecompressors/IImageCompressor.h b/src/thumbnails/imagecompressors/IImageCompressor.h index f2e5a5a4..9db38060 100644 --- a/src/thumbnails/imagecompressors/IImageCompressor.h +++ b/src/thumbnails/imagecompressors/IImageCompressor.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/thumbnails/imagecompressors/JpegCompressor.cpp b/src/thumbnails/imagecompressors/JpegCompressor.cpp index e30c93c3..f94de739 100644 --- a/src/thumbnails/imagecompressors/JpegCompressor.cpp +++ b/src/thumbnails/imagecompressors/JpegCompressor.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/thumbnails/imagecompressors/JpegCompressor.h b/src/thumbnails/imagecompressors/JpegCompressor.h index 4a98a61c..8b55f626 100644 --- a/src/thumbnails/imagecompressors/JpegCompressor.h +++ b/src/thumbnails/imagecompressors/JpegCompressor.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/utils/Charsets.h b/src/utils/Charsets.h index 32be1f98..24908978 100644 --- a/src/utils/Charsets.h +++ b/src/utils/Charsets.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/utils/Directory.cpp b/src/utils/Directory.cpp index cedea55a..95357fff 100644 --- a/src/utils/Directory.cpp +++ b/src/utils/Directory.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2017 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2017-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * Alexandre Fernandez * * This program is free software; you can redistribute it and/or modify it diff --git a/src/utils/Directory.h b/src/utils/Directory.h index e4448ff3..1ce6f426 100644 --- a/src/utils/Directory.h +++ b/src/utils/Directory.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2017 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2017-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * Alexandre Fernandez * * This program is free software; you can redistribute it and/or modify it diff --git a/src/utils/Filename.cpp b/src/utils/Filename.cpp index 5984aeb2..865065e0 100644 --- a/src/utils/Filename.cpp +++ b/src/utils/Filename.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/utils/Filename.h b/src/utils/Filename.h index 1d25bf63..781b435a 100644 --- a/src/utils/Filename.h +++ b/src/utils/Filename.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/utils/SWMRLock.h b/src/utils/SWMRLock.h index 793a971e..680e2b89 100644 --- a/src/utils/SWMRLock.h +++ b/src/utils/SWMRLock.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/utils/Strings.cpp b/src/utils/Strings.cpp index 19856e50..d6ed571f 100644 --- a/src/utils/Strings.cpp +++ b/src/utils/Strings.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2018 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2018-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/utils/Strings.h b/src/utils/Strings.h index 8efc6677..4ccae063 100644 --- a/src/utils/Strings.h +++ b/src/utils/Strings.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2018 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2018-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/utils/Url.cpp b/src/utils/Url.cpp index 8ded5ec5..af1ee4d9 100644 --- a/src/utils/Url.cpp +++ b/src/utils/Url.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2017 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2017-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/utils/Url.h b/src/utils/Url.h index 07afee15..8171c1cf 100644 --- a/src/utils/Url.h +++ b/src/utils/Url.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2017 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2017-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/utils/VLCInstance.cpp b/src/utils/VLCInstance.cpp index aea92581..25ba9e4f 100644 --- a/src/utils/VLCInstance.cpp +++ b/src/utils/VLCInstance.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/src/utils/VLCInstance.h b/src/utils/VLCInstance.h index 3562c3e2..b3ec19a0 100644 --- a/src/utils/VLCInstance.h +++ b/src/utils/VLCInstance.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/common/MediaLibraryTester.cpp b/test/common/MediaLibraryTester.cpp index f72e206a..595599ad 100644 --- a/test/common/MediaLibraryTester.cpp +++ b/test/common/MediaLibraryTester.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/common/MediaLibraryTester.h b/test/common/MediaLibraryTester.h index 0a012a24..60dceb30 100644 --- a/test/common/MediaLibraryTester.h +++ b/test/common/MediaLibraryTester.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/discoverer/main.cpp b/test/discoverer/main.cpp index 6c08e041..e91f8477 100644 --- a/test/discoverer/main.cpp +++ b/test/discoverer/main.cpp @@ -3,7 +3,7 @@ ***************************************************************************** * Copyright (C) 2015-2018 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/mocks/DiscovererCbMock.h b/test/mocks/DiscovererCbMock.h index eeabbf54..96a334d2 100644 --- a/test/mocks/DiscovererCbMock.h +++ b/test/mocks/DiscovererCbMock.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/mocks/FileSystem.cpp b/test/mocks/FileSystem.cpp index e926a85c..7bf06a72 100644 --- a/test/mocks/FileSystem.cpp +++ b/test/mocks/FileSystem.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/mocks/FileSystem.h b/test/mocks/FileSystem.h index 7b5f8339..8bcfacfc 100644 --- a/test/mocks/FileSystem.h +++ b/test/mocks/FileSystem.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/mocks/MockDeviceLister.h b/test/mocks/MockDeviceLister.h index f8b087d5..3af4497e 100644 --- a/test/mocks/MockDeviceLister.h +++ b/test/mocks/MockDeviceLister.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/mocks/NoopCallback.h b/test/mocks/NoopCallback.h index a3398616..6487005b 100644 --- a/test/mocks/NoopCallback.h +++ b/test/mocks/NoopCallback.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/mocks/filesystem/MockDevice.cpp b/test/mocks/filesystem/MockDevice.cpp index 7da7c200..8ba8dc45 100644 --- a/test/mocks/filesystem/MockDevice.cpp +++ b/test/mocks/filesystem/MockDevice.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/mocks/filesystem/MockDevice.h b/test/mocks/filesystem/MockDevice.h index 67be3ea1..efedca18 100644 --- a/test/mocks/filesystem/MockDevice.h +++ b/test/mocks/filesystem/MockDevice.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/mocks/filesystem/MockDirectory.cpp b/test/mocks/filesystem/MockDirectory.cpp index 24553fd8..4102c646 100644 --- a/test/mocks/filesystem/MockDirectory.cpp +++ b/test/mocks/filesystem/MockDirectory.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/mocks/filesystem/MockDirectory.h b/test/mocks/filesystem/MockDirectory.h index c06d361b..e8b0bec0 100644 --- a/test/mocks/filesystem/MockDirectory.h +++ b/test/mocks/filesystem/MockDirectory.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/mocks/filesystem/MockFile.cpp b/test/mocks/filesystem/MockFile.cpp index fb553aeb..b7514464 100644 --- a/test/mocks/filesystem/MockFile.cpp +++ b/test/mocks/filesystem/MockFile.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/mocks/filesystem/MockFile.h b/test/mocks/filesystem/MockFile.h index 5a195118..5b37f9f4 100644 --- a/test/mocks/filesystem/MockFile.h +++ b/test/mocks/filesystem/MockFile.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/samples/Tester.cpp b/test/samples/Tester.cpp index 2b893a00..c9155386 100644 --- a/test/samples/Tester.cpp +++ b/test/samples/Tester.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/samples/Tester.h b/test/samples/Tester.h index 3d29aa83..229bb43f 100644 --- a/test/samples/Tester.h +++ b/test/samples/Tester.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/samples/main.cpp b/test/samples/main.cpp index 85a1d491..2b50ed51 100644 --- a/test/samples/main.cpp +++ b/test/samples/main.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/unittest/AlbumTests.cpp b/test/unittest/AlbumTests.cpp index 9dd446af..1486407f 100644 --- a/test/unittest/AlbumTests.cpp +++ b/test/unittest/AlbumTests.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/unittest/AlbumTrackTests.cpp b/test/unittest/AlbumTrackTests.cpp index 33d2a57e..9c3c5e0a 100644 --- a/test/unittest/AlbumTrackTests.cpp +++ b/test/unittest/AlbumTrackTests.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/unittest/ArtistTests.cpp b/test/unittest/ArtistTests.cpp index e3fae6cc..9b9fc589 100644 --- a/test/unittest/ArtistTests.cpp +++ b/test/unittest/ArtistTests.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/unittest/AudioTrackTests.cpp b/test/unittest/AudioTrackTests.cpp index 7e5d27f4..c67f30dc 100644 --- a/test/unittest/AudioTrackTests.cpp +++ b/test/unittest/AudioTrackTests.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/unittest/ChapterTests.cpp b/test/unittest/ChapterTests.cpp index 124f7c81..2550ceb4 100644 --- a/test/unittest/ChapterTests.cpp +++ b/test/unittest/ChapterTests.cpp @@ -1,7 +1,7 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2018 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2018-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * * Authors: Hugo Beauzée-Luyssen * diff --git a/test/unittest/DeviceTests.cpp b/test/unittest/DeviceTests.cpp index 0136b646..5b8bf477 100644 --- a/test/unittest/DeviceTests.cpp +++ b/test/unittest/DeviceTests.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/unittest/FileTests.cpp b/test/unittest/FileTests.cpp index cfa9e13f..146c6a37 100644 --- a/test/unittest/FileTests.cpp +++ b/test/unittest/FileTests.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/unittest/FolderTests.cpp b/test/unittest/FolderTests.cpp index e12802cb..83436db3 100644 --- a/test/unittest/FolderTests.cpp +++ b/test/unittest/FolderTests.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/unittest/FsUtilsTests.cpp b/test/unittest/FsUtilsTests.cpp index b4c9f3e7..69c08b70 100644 --- a/test/unittest/FsUtilsTests.cpp +++ b/test/unittest/FsUtilsTests.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/unittest/GenreTests.cpp b/test/unittest/GenreTests.cpp index c54fa851..9629a682 100644 --- a/test/unittest/GenreTests.cpp +++ b/test/unittest/GenreTests.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/unittest/LabelTests.cpp b/test/unittest/LabelTests.cpp index a2e2e596..a9776f82 100644 --- a/test/unittest/LabelTests.cpp +++ b/test/unittest/LabelTests.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/unittest/MediaTests.cpp b/test/unittest/MediaTests.cpp index 2136febd..83eaea31 100644 --- a/test/unittest/MediaTests.cpp +++ b/test/unittest/MediaTests.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/unittest/MiscTests.cpp b/test/unittest/MiscTests.cpp index 65407231..3e81ead2 100644 --- a/test/unittest/MiscTests.cpp +++ b/test/unittest/MiscTests.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2017 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2017-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/unittest/MovieTests.cpp b/test/unittest/MovieTests.cpp index 5165b2fa..77509ffe 100644 --- a/test/unittest/MovieTests.cpp +++ b/test/unittest/MovieTests.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/unittest/PlaylistTests.cpp b/test/unittest/PlaylistTests.cpp index 82e4dcb5..f5d99cd3 100644 --- a/test/unittest/PlaylistTests.cpp +++ b/test/unittest/PlaylistTests.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/unittest/RemovalNotifierTests.cpp b/test/unittest/RemovalNotifierTests.cpp index 85d1cab0..c0df8369 100644 --- a/test/unittest/RemovalNotifierTests.cpp +++ b/test/unittest/RemovalNotifierTests.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/unittest/ShowTests.cpp b/test/unittest/ShowTests.cpp index 85b0a248..f65bca92 100644 --- a/test/unittest/ShowTests.cpp +++ b/test/unittest/ShowTests.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/unittest/Tests.cpp b/test/unittest/Tests.cpp index 8876fbac..85201d98 100644 --- a/test/unittest/Tests.cpp +++ b/test/unittest/Tests.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/unittest/Tests.h b/test/unittest/Tests.h index dc86a9ec..bee4e134 100644 --- a/test/unittest/Tests.h +++ b/test/unittest/Tests.h @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/unittest/ThumbnailTests.cpp b/test/unittest/ThumbnailTests.cpp index 65e9ba62..9b5bb9a5 100644 --- a/test/unittest/ThumbnailTests.cpp +++ b/test/unittest/ThumbnailTests.cpp @@ -3,7 +3,7 @@ ***************************************************************************** * Copyright (C) 2015-2018 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/unittest/UrlTests.cpp b/test/unittest/UrlTests.cpp index 63b07f75..da89fe33 100644 --- a/test/unittest/UrlTests.cpp +++ b/test/unittest/UrlTests.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by diff --git a/test/unittest/VideoTrackTests.cpp b/test/unittest/VideoTrackTests.cpp index 3d83472d..9abc5f69 100644 --- a/test/unittest/VideoTrackTests.cpp +++ b/test/unittest/VideoTrackTests.cpp @@ -1,9 +1,9 @@ /***************************************************************************** * Media Library ***************************************************************************** - * Copyright (C) 2015 Hugo Beauzée-Luyssen, Videolabs + * Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN * - * Authors: Hugo Beauzée-Luyssen + * Authors: Hugo Beauzée-Luyssen * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by -- GitLab