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/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 b559757..b572676 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 0350ad0..0b62de1 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/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 0b5e1fa..881cbc0 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 e418e41..7f70fc4 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/MediaSegmentUpdateManager.cs b/IntroSkipper/Manager/MediaSegmentUpdateManager.cs index c3bd475..dafe45a 100644 --- a/IntroSkipper/Manager/MediaSegmentUpdateManager.cs +++ b/IntroSkipper/Manager/MediaSegmentUpdateManager.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 dbf6910..21e5e45 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 6d32f44..a81a7ff 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 a5b7dba..ec0c586 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 IntroSkipper.Manager; using IntroSkipper.Providers; diff --git a/IntroSkipper/Providers/SegmentProvider.cs b/IntroSkipper/Providers/SegmentProvider.cs index 1d6278b..18e3511 100644 --- a/IntroSkipper/Providers/SegmentProvider.cs +++ b/IntroSkipper/Providers/SegmentProvider.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/BaseItemAnalyzerTask.cs b/IntroSkipper/ScheduledTasks/BaseItemAnalyzerTask.cs index dc1fe1e..f58126c 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 14b2d5e..8c611ca 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 49ddee0..830b848 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 8527e23..ffe7c3e 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 e9240a6..8c6d3bd 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 cbce115..48913b5 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 6897471..bfe85fe 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 d83cecf..838a4a2 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 e856bfe..712f281 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;