From 45279e0a85f9027269f5eca130929e28116c2121 Mon Sep 17 00:00:00 2001 From: TwistedUmbrellaX Date: Fri, 25 Oct 2024 14:33:26 -0400 Subject: [PATCH] Fix identifier and name --- .editorconfig | 2 +- IntroSkipper.Tests/TestAudioFingerprinting.cs | 4 ++-- IntroSkipper.Tests/TestBlackFrames.cs | 4 ++-- IntroSkipper.Tests/TestChapterAnalyzer.cs | 4 ++-- IntroSkipper.Tests/TestContiguous.cs | 4 ++-- IntroSkipper.Tests/TestEdl.cs | 4 ++-- IntroSkipper.Tests/TestWarnings.cs | 4 ++-- IntroSkipper/Analyzers/AnalyzerHelper.cs | 4 ++-- IntroSkipper/Analyzers/BlackFrameAnalyzer.cs | 4 ++-- IntroSkipper/Analyzers/ChapterAnalyzer.cs | 4 ++-- IntroSkipper/Analyzers/ChromaprintAnalyzer.cs | 4 ++-- IntroSkipper/Analyzers/IMediaFileAnalyzer.cs | 4 ++-- IntroSkipper/Analyzers/SegmentAnalyzer.cs | 4 ++-- IntroSkipper/Configuration/PluginConfiguration.cs | 4 ++-- IntroSkipper/Configuration/UserInterfaceConfiguration.cs | 4 ++-- IntroSkipper/Controllers/SkipIntroController.cs | 4 ++-- IntroSkipper/Controllers/TroubleshootingController.cs | 4 ++-- IntroSkipper/Controllers/VisualizationController.cs | 4 ++-- IntroSkipper/Data/AnalysisMode.cs | 4 ++-- IntroSkipper/Data/BlackFrame.cs | 4 ++-- IntroSkipper/Data/EdlAction.cs | 4 ++-- IntroSkipper/Data/EpisodeState.cs | 4 ++-- IntroSkipper/Data/EpisodeVisualization.cs | 4 ++-- IntroSkipper/Data/FingerprintException.cs | 4 ++-- IntroSkipper/Data/IgnoreListItem.cs | 4 ++-- IntroSkipper/Data/Intro.cs | 4 ++-- IntroSkipper/Data/PluginWarning.cs | 4 ++-- IntroSkipper/Data/QueuedEpisode.cs | 4 ++-- IntroSkipper/Data/Segment.cs | 4 ++-- IntroSkipper/Data/ShowInfos.cs | 4 ++-- IntroSkipper/Data/TimeRange.cs | 4 ++-- IntroSkipper/Data/TimeRangeHelpers.cs | 4 ++-- IntroSkipper/Data/TimeStamps.cs | 4 ++-- IntroSkipper/Data/WarningManager.cs | 4 ++-- IntroSkipper/FFmpegWrapper.cs | 4 ++-- IntroSkipper/Helper/Commit.cs | 4 ++-- IntroSkipper/Helper/XmlSerializationHelper.cs | 4 ++-- IntroSkipper/Manager/EdlManager.cs | 4 ++-- IntroSkipper/Manager/QueueManager.cs | 4 ++-- IntroSkipper/Plugin.cs | 4 ++-- IntroSkipper/PluginServiceRegistrator.cs | 4 ++-- IntroSkipper/ScheduledTasks/BaseItemAnalyzerTask.cs | 4 ++-- IntroSkipper/ScheduledTasks/CleanCacheTask.cs | 4 ++-- IntroSkipper/ScheduledTasks/DetectCreditsTask.cs | 4 ++-- IntroSkipper/ScheduledTasks/DetectIntrosCreditsTask.cs | 4 ++-- IntroSkipper/ScheduledTasks/DetectIntrosTask.cs | 4 ++-- IntroSkipper/ScheduledTasks/ScheduledTaskSemaphore.cs | 4 ++-- IntroSkipper/Services/AutoSkip.cs | 4 ++-- IntroSkipper/Services/AutoSkipCredits.cs | 4 ++-- IntroSkipper/Services/Entrypoint.cs | 4 ++-- 50 files changed, 99 insertions(+), 99 deletions(-) diff --git a/.editorconfig b/.editorconfig index e1bf76f..99740ff 100644 --- a/.editorconfig +++ b/.editorconfig @@ -193,4 +193,4 @@ csharp_space_between_method_call_empty_parameter_list_parentheses = false csharp_preserve_single_line_statements = true csharp_preserve_single_line_blocks = true -file_header_template = Copyright (C) 2024 Intro-Skipper Contributors \nSPDX-License-Identifier: GNU General Public License v3.0 only. \ No newline at end of file +file_header_template = Copyright (C) 2024 Intro-Skipper contributors \nSPDX-License-Identifier: GPL-3.0-only. \ No newline at end of file diff --git a/IntroSkipper.Tests/TestAudioFingerprinting.cs b/IntroSkipper.Tests/TestAudioFingerprinting.cs index 57a4bf4..73aabdc 100644 --- a/IntroSkipper.Tests/TestAudioFingerprinting.cs +++ b/IntroSkipper.Tests/TestAudioFingerprinting.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. /* These tests require that the host system has a version of FFmpeg installed * which supports both chromaprint and the "-fp_format raw" flag. diff --git a/IntroSkipper.Tests/TestBlackFrames.cs b/IntroSkipper.Tests/TestBlackFrames.cs index 051144e..e459d14 100644 --- a/IntroSkipper.Tests/TestBlackFrames.cs +++ b/IntroSkipper.Tests/TestBlackFrames.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. namespace IntroSkipper.Tests; diff --git a/IntroSkipper.Tests/TestChapterAnalyzer.cs b/IntroSkipper.Tests/TestChapterAnalyzer.cs index cec2317..ab163fd 100644 --- a/IntroSkipper.Tests/TestChapterAnalyzer.cs +++ b/IntroSkipper.Tests/TestChapterAnalyzer.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. namespace IntroSkipper.Tests; diff --git a/IntroSkipper.Tests/TestContiguous.cs b/IntroSkipper.Tests/TestContiguous.cs index 1d08853..a4f02ac 100644 --- a/IntroSkipper.Tests/TestContiguous.cs +++ b/IntroSkipper.Tests/TestContiguous.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using IntroSkipper.Data; using Xunit; diff --git a/IntroSkipper.Tests/TestEdl.cs b/IntroSkipper.Tests/TestEdl.cs index 553db8a..4356428 100644 --- a/IntroSkipper.Tests/TestEdl.cs +++ b/IntroSkipper.Tests/TestEdl.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using IntroSkipper.Data; diff --git a/IntroSkipper.Tests/TestWarnings.cs b/IntroSkipper.Tests/TestWarnings.cs index a1c0204..79267b0 100644 --- a/IntroSkipper.Tests/TestWarnings.cs +++ b/IntroSkipper.Tests/TestWarnings.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. namespace IntroSkipper.Tests; diff --git a/IntroSkipper/Analyzers/AnalyzerHelper.cs b/IntroSkipper/Analyzers/AnalyzerHelper.cs index 438d93f..de50d3d 100644 --- a/IntroSkipper/Analyzers/AnalyzerHelper.cs +++ b/IntroSkipper/Analyzers/AnalyzerHelper.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Collections.Generic; diff --git a/IntroSkipper/Analyzers/BlackFrameAnalyzer.cs b/IntroSkipper/Analyzers/BlackFrameAnalyzer.cs index 915f603..facba8c 100644 --- a/IntroSkipper/Analyzers/BlackFrameAnalyzer.cs +++ b/IntroSkipper/Analyzers/BlackFrameAnalyzer.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Collections.Generic; diff --git a/IntroSkipper/Analyzers/ChapterAnalyzer.cs b/IntroSkipper/Analyzers/ChapterAnalyzer.cs index 5db8bfe..733a2e6 100644 --- a/IntroSkipper/Analyzers/ChapterAnalyzer.cs +++ b/IntroSkipper/Analyzers/ChapterAnalyzer.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Collections.Generic; diff --git a/IntroSkipper/Analyzers/ChromaprintAnalyzer.cs b/IntroSkipper/Analyzers/ChromaprintAnalyzer.cs index 57646a8..865e2b3 100644 --- a/IntroSkipper/Analyzers/ChromaprintAnalyzer.cs +++ b/IntroSkipper/Analyzers/ChromaprintAnalyzer.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Collections.Generic; diff --git a/IntroSkipper/Analyzers/IMediaFileAnalyzer.cs b/IntroSkipper/Analyzers/IMediaFileAnalyzer.cs index 8f27f82..32b8b5b 100644 --- a/IntroSkipper/Analyzers/IMediaFileAnalyzer.cs +++ b/IntroSkipper/Analyzers/IMediaFileAnalyzer.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System.Collections.Generic; using System.Threading; diff --git a/IntroSkipper/Analyzers/SegmentAnalyzer.cs b/IntroSkipper/Analyzers/SegmentAnalyzer.cs index 1014fa1..bb3a179 100644 --- a/IntroSkipper/Analyzers/SegmentAnalyzer.cs +++ b/IntroSkipper/Analyzers/SegmentAnalyzer.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System.Collections.Generic; using System.Threading; diff --git a/IntroSkipper/Configuration/PluginConfiguration.cs b/IntroSkipper/Configuration/PluginConfiguration.cs index 46cb1b3..8cdb72f 100644 --- a/IntroSkipper/Configuration/PluginConfiguration.cs +++ b/IntroSkipper/Configuration/PluginConfiguration.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System.Diagnostics; using IntroSkipper.Data; diff --git a/IntroSkipper/Configuration/UserInterfaceConfiguration.cs b/IntroSkipper/Configuration/UserInterfaceConfiguration.cs index 54de538..407e3d3 100644 --- a/IntroSkipper/Configuration/UserInterfaceConfiguration.cs +++ b/IntroSkipper/Configuration/UserInterfaceConfiguration.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. namespace IntroSkipper.Configuration; diff --git a/IntroSkipper/Controllers/SkipIntroController.cs b/IntroSkipper/Controllers/SkipIntroController.cs index 7c20aaf..dd747de 100644 --- a/IntroSkipper/Controllers/SkipIntroController.cs +++ b/IntroSkipper/Controllers/SkipIntroController.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Collections.Generic; diff --git a/IntroSkipper/Controllers/TroubleshootingController.cs b/IntroSkipper/Controllers/TroubleshootingController.cs index 977a65c..852fce7 100644 --- a/IntroSkipper/Controllers/TroubleshootingController.cs +++ b/IntroSkipper/Controllers/TroubleshootingController.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Globalization; diff --git a/IntroSkipper/Controllers/VisualizationController.cs b/IntroSkipper/Controllers/VisualizationController.cs index f1ce4b7..8bf2f6f 100644 --- a/IntroSkipper/Controllers/VisualizationController.cs +++ b/IntroSkipper/Controllers/VisualizationController.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Collections.Generic; diff --git a/IntroSkipper/Data/AnalysisMode.cs b/IntroSkipper/Data/AnalysisMode.cs index a7c1dc0..8c26dff 100644 --- a/IntroSkipper/Data/AnalysisMode.cs +++ b/IntroSkipper/Data/AnalysisMode.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. namespace IntroSkipper.Data; diff --git a/IntroSkipper/Data/BlackFrame.cs b/IntroSkipper/Data/BlackFrame.cs index 8a1fdde..eaa41bc 100644 --- a/IntroSkipper/Data/BlackFrame.cs +++ b/IntroSkipper/Data/BlackFrame.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. namespace IntroSkipper.Data; diff --git a/IntroSkipper/Data/EdlAction.cs b/IntroSkipper/Data/EdlAction.cs index 52cfd3e..b188239 100644 --- a/IntroSkipper/Data/EdlAction.cs +++ b/IntroSkipper/Data/EdlAction.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. namespace IntroSkipper.Data; diff --git a/IntroSkipper/Data/EpisodeState.cs b/IntroSkipper/Data/EpisodeState.cs index 7efe85c..bd6ef2d 100644 --- a/IntroSkipper/Data/EpisodeState.cs +++ b/IntroSkipper/Data/EpisodeState.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; diff --git a/IntroSkipper/Data/EpisodeVisualization.cs b/IntroSkipper/Data/EpisodeVisualization.cs index a5f0537..5b0a829 100644 --- a/IntroSkipper/Data/EpisodeVisualization.cs +++ b/IntroSkipper/Data/EpisodeVisualization.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; diff --git a/IntroSkipper/Data/FingerprintException.cs b/IntroSkipper/Data/FingerprintException.cs index 83f1531..82c5c61 100644 --- a/IntroSkipper/Data/FingerprintException.cs +++ b/IntroSkipper/Data/FingerprintException.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; diff --git a/IntroSkipper/Data/IgnoreListItem.cs b/IntroSkipper/Data/IgnoreListItem.cs index 27ba01c..212b50e 100644 --- a/IntroSkipper/Data/IgnoreListItem.cs +++ b/IntroSkipper/Data/IgnoreListItem.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Runtime.Serialization; diff --git a/IntroSkipper/Data/Intro.cs b/IntroSkipper/Data/Intro.cs index b9eda2a..b11ea90 100644 --- a/IntroSkipper/Data/Intro.cs +++ b/IntroSkipper/Data/Intro.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Runtime.Serialization; diff --git a/IntroSkipper/Data/PluginWarning.cs b/IntroSkipper/Data/PluginWarning.cs index c163929..c21c579 100644 --- a/IntroSkipper/Data/PluginWarning.cs +++ b/IntroSkipper/Data/PluginWarning.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; diff --git a/IntroSkipper/Data/QueuedEpisode.cs b/IntroSkipper/Data/QueuedEpisode.cs index 751023f..b4a5803 100644 --- a/IntroSkipper/Data/QueuedEpisode.cs +++ b/IntroSkipper/Data/QueuedEpisode.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; diff --git a/IntroSkipper/Data/Segment.cs b/IntroSkipper/Data/Segment.cs index 356bf86..b5d2995 100644 --- a/IntroSkipper/Data/Segment.cs +++ b/IntroSkipper/Data/Segment.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Globalization; diff --git a/IntroSkipper/Data/ShowInfos.cs b/IntroSkipper/Data/ShowInfos.cs index ce6110e..dbdcda4 100644 --- a/IntroSkipper/Data/ShowInfos.cs +++ b/IntroSkipper/Data/ShowInfos.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Collections.Generic; diff --git a/IntroSkipper/Data/TimeRange.cs b/IntroSkipper/Data/TimeRange.cs index 3b25eb0..677b117 100644 --- a/IntroSkipper/Data/TimeRange.cs +++ b/IntroSkipper/Data/TimeRange.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; diff --git a/IntroSkipper/Data/TimeRangeHelpers.cs b/IntroSkipper/Data/TimeRangeHelpers.cs index 189cb68..866c129 100644 --- a/IntroSkipper/Data/TimeRangeHelpers.cs +++ b/IntroSkipper/Data/TimeRangeHelpers.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Collections.Generic; diff --git a/IntroSkipper/Data/TimeStamps.cs b/IntroSkipper/Data/TimeStamps.cs index af8cbe0..8ce57bf 100644 --- a/IntroSkipper/Data/TimeStamps.cs +++ b/IntroSkipper/Data/TimeStamps.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. namespace IntroSkipper.Data { diff --git a/IntroSkipper/Data/WarningManager.cs b/IntroSkipper/Data/WarningManager.cs index cc40f1f..4547c1a 100644 --- a/IntroSkipper/Data/WarningManager.cs +++ b/IntroSkipper/Data/WarningManager.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. namespace IntroSkipper.Data; diff --git a/IntroSkipper/FFmpegWrapper.cs b/IntroSkipper/FFmpegWrapper.cs index 05f80cc..c04693b 100644 --- a/IntroSkipper/FFmpegWrapper.cs +++ b/IntroSkipper/FFmpegWrapper.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Collections.Concurrent; diff --git a/IntroSkipper/Helper/Commit.cs b/IntroSkipper/Helper/Commit.cs index 3eb40c3..568523b 100644 --- a/IntroSkipper/Helper/Commit.cs +++ b/IntroSkipper/Helper/Commit.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. namespace IntroSkipper.Helper { diff --git a/IntroSkipper/Helper/XmlSerializationHelper.cs b/IntroSkipper/Helper/XmlSerializationHelper.cs index cd9d3b3..992ca6a 100644 --- a/IntroSkipper/Helper/XmlSerializationHelper.cs +++ b/IntroSkipper/Helper/XmlSerializationHelper.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Collections.Generic; diff --git a/IntroSkipper/Manager/EdlManager.cs b/IntroSkipper/Manager/EdlManager.cs index 04c6c08..d5c21f5 100644 --- a/IntroSkipper/Manager/EdlManager.cs +++ b/IntroSkipper/Manager/EdlManager.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Collections.Generic; diff --git a/IntroSkipper/Manager/QueueManager.cs b/IntroSkipper/Manager/QueueManager.cs index 99368f3..5b06e0f 100644 --- a/IntroSkipper/Manager/QueueManager.cs +++ b/IntroSkipper/Manager/QueueManager.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Collections.Generic; diff --git a/IntroSkipper/Plugin.cs b/IntroSkipper/Plugin.cs index a4181f2..b6f8f52 100644 --- a/IntroSkipper/Plugin.cs +++ b/IntroSkipper/Plugin.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Collections.Concurrent; diff --git a/IntroSkipper/PluginServiceRegistrator.cs b/IntroSkipper/PluginServiceRegistrator.cs index d7d8595..6bc0f03 100644 --- a/IntroSkipper/PluginServiceRegistrator.cs +++ b/IntroSkipper/PluginServiceRegistrator.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using MediaBrowser.Controller; using MediaBrowser.Controller.Plugins; diff --git a/IntroSkipper/ScheduledTasks/BaseItemAnalyzerTask.cs b/IntroSkipper/ScheduledTasks/BaseItemAnalyzerTask.cs index df6bcaf..e73dbfe 100644 --- a/IntroSkipper/ScheduledTasks/BaseItemAnalyzerTask.cs +++ b/IntroSkipper/ScheduledTasks/BaseItemAnalyzerTask.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Collections.Generic; diff --git a/IntroSkipper/ScheduledTasks/CleanCacheTask.cs b/IntroSkipper/ScheduledTasks/CleanCacheTask.cs index 8f57781..c14fc48 100644 --- a/IntroSkipper/ScheduledTasks/CleanCacheTask.cs +++ b/IntroSkipper/ScheduledTasks/CleanCacheTask.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Collections.Generic; diff --git a/IntroSkipper/ScheduledTasks/DetectCreditsTask.cs b/IntroSkipper/ScheduledTasks/DetectCreditsTask.cs index fd133e2..f5f636c 100644 --- a/IntroSkipper/ScheduledTasks/DetectCreditsTask.cs +++ b/IntroSkipper/ScheduledTasks/DetectCreditsTask.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Collections.Generic; diff --git a/IntroSkipper/ScheduledTasks/DetectIntrosCreditsTask.cs b/IntroSkipper/ScheduledTasks/DetectIntrosCreditsTask.cs index 29dec04..9e361c4 100644 --- a/IntroSkipper/ScheduledTasks/DetectIntrosCreditsTask.cs +++ b/IntroSkipper/ScheduledTasks/DetectIntrosCreditsTask.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Collections.Generic; diff --git a/IntroSkipper/ScheduledTasks/DetectIntrosTask.cs b/IntroSkipper/ScheduledTasks/DetectIntrosTask.cs index 48081ef..c4f90d4 100644 --- a/IntroSkipper/ScheduledTasks/DetectIntrosTask.cs +++ b/IntroSkipper/ScheduledTasks/DetectIntrosTask.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Collections.Generic; diff --git a/IntroSkipper/ScheduledTasks/ScheduledTaskSemaphore.cs b/IntroSkipper/ScheduledTasks/ScheduledTaskSemaphore.cs index eb6b05b..81bb3fa 100644 --- a/IntroSkipper/ScheduledTasks/ScheduledTaskSemaphore.cs +++ b/IntroSkipper/ScheduledTasks/ScheduledTaskSemaphore.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Threading; diff --git a/IntroSkipper/Services/AutoSkip.cs b/IntroSkipper/Services/AutoSkip.cs index 9143dec..1cd3ade 100644 --- a/IntroSkipper/Services/AutoSkip.cs +++ b/IntroSkipper/Services/AutoSkip.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Collections.Generic; diff --git a/IntroSkipper/Services/AutoSkipCredits.cs b/IntroSkipper/Services/AutoSkipCredits.cs index c5c8809..a514690 100644 --- a/IntroSkipper/Services/AutoSkipCredits.cs +++ b/IntroSkipper/Services/AutoSkipCredits.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Collections.Generic; diff --git a/IntroSkipper/Services/Entrypoint.cs b/IntroSkipper/Services/Entrypoint.cs index 39f9264..9685e12 100644 --- a/IntroSkipper/Services/Entrypoint.cs +++ b/IntroSkipper/Services/Entrypoint.cs @@ -1,5 +1,5 @@ -// Copyright (C) 2024 Intro-Skipper Contributors -// SPDX-License-Identifier: GNU General Public License v3.0 only. +// Copyright (C) 2024 Intro-Skipper contributors +// SPDX-License-Identifier: GPL-3.0-only. using System; using System.Collections.Generic;