diff --git a/.editorconfig b/.editorconfig index b84e563..e1bf76f 100644 --- a/.editorconfig +++ b/.editorconfig @@ -192,3 +192,5 @@ csharp_space_between_method_call_empty_parameter_list_parentheses = false # Wrapping preferences 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 diff --git a/IntroSkipper.Tests/TestAudioFingerprinting.cs b/IntroSkipper.Tests/TestAudioFingerprinting.cs index a8bb4dd..57a4bf4 100644 --- a/IntroSkipper.Tests/TestAudioFingerprinting.cs +++ b/IntroSkipper.Tests/TestAudioFingerprinting.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.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 93b390a..051144e 100644 --- a/IntroSkipper.Tests/TestBlackFrames.cs +++ b/IntroSkipper.Tests/TestBlackFrames.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + namespace IntroSkipper.Tests; using System; diff --git a/IntroSkipper.Tests/TestChapterAnalyzer.cs b/IntroSkipper.Tests/TestChapterAnalyzer.cs index a20406c..cec2317 100644 --- a/IntroSkipper.Tests/TestChapterAnalyzer.cs +++ b/IntroSkipper.Tests/TestChapterAnalyzer.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + namespace IntroSkipper.Tests; using System; diff --git a/IntroSkipper.Tests/TestContiguous.cs b/IntroSkipper.Tests/TestContiguous.cs index cb59d52..1d08853 100644 --- a/IntroSkipper.Tests/TestContiguous.cs +++ b/IntroSkipper.Tests/TestContiguous.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using IntroSkipper.Data; using Xunit; diff --git a/IntroSkipper.Tests/TestWarnings.cs b/IntroSkipper.Tests/TestWarnings.cs index 827c1ec..a1c0204 100644 --- a/IntroSkipper.Tests/TestWarnings.cs +++ b/IntroSkipper.Tests/TestWarnings.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + namespace IntroSkipper.Tests; using IntroSkipper.Data; diff --git a/IntroSkipper/Analyzers/AnalyzerHelper.cs b/IntroSkipper/Analyzers/AnalyzerHelper.cs index e1c23d1..b559757 100644 --- a/IntroSkipper/Analyzers/AnalyzerHelper.cs +++ b/IntroSkipper/Analyzers/AnalyzerHelper.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Collections.Generic; using System.Linq; diff --git a/IntroSkipper/Analyzers/BlackFrameAnalyzer.cs b/IntroSkipper/Analyzers/BlackFrameAnalyzer.cs index 5230224..915f603 100644 --- a/IntroSkipper/Analyzers/BlackFrameAnalyzer.cs +++ b/IntroSkipper/Analyzers/BlackFrameAnalyzer.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Collections.Generic; using System.Linq; diff --git a/IntroSkipper/Analyzers/ChapterAnalyzer.cs b/IntroSkipper/Analyzers/ChapterAnalyzer.cs index 5662a54..5db8bfe 100644 --- a/IntroSkipper/Analyzers/ChapterAnalyzer.cs +++ b/IntroSkipper/Analyzers/ChapterAnalyzer.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Collections.Generic; using System.Globalization; diff --git a/IntroSkipper/Analyzers/ChromaprintAnalyzer.cs b/IntroSkipper/Analyzers/ChromaprintAnalyzer.cs index 9c5899e..57646a8 100644 --- a/IntroSkipper/Analyzers/ChromaprintAnalyzer.cs +++ b/IntroSkipper/Analyzers/ChromaprintAnalyzer.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Collections.Generic; using System.IO; diff --git a/IntroSkipper/Analyzers/IMediaFileAnalyzer.cs b/IntroSkipper/Analyzers/IMediaFileAnalyzer.cs index f67b3cb..8f27f82 100644 --- a/IntroSkipper/Analyzers/IMediaFileAnalyzer.cs +++ b/IntroSkipper/Analyzers/IMediaFileAnalyzer.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System.Collections.Generic; using System.Threading; using IntroSkipper.Data; diff --git a/IntroSkipper/Analyzers/SegmentAnalyzer.cs b/IntroSkipper/Analyzers/SegmentAnalyzer.cs index 67be5d6..1014fa1 100644 --- a/IntroSkipper/Analyzers/SegmentAnalyzer.cs +++ b/IntroSkipper/Analyzers/SegmentAnalyzer.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System.Collections.Generic; using System.Threading; using IntroSkipper.Data; diff --git a/IntroSkipper/Configuration/PluginConfiguration.cs b/IntroSkipper/Configuration/PluginConfiguration.cs index 0107fe8..0350ad0 100644 --- a/IntroSkipper/Configuration/PluginConfiguration.cs +++ b/IntroSkipper/Configuration/PluginConfiguration.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System.Diagnostics; using IntroSkipper.Data; using MediaBrowser.Model.Plugins; diff --git a/IntroSkipper/Configuration/UserInterfaceConfiguration.cs b/IntroSkipper/Configuration/UserInterfaceConfiguration.cs index 7fac79d..54de538 100644 --- a/IntroSkipper/Configuration/UserInterfaceConfiguration.cs +++ b/IntroSkipper/Configuration/UserInterfaceConfiguration.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + namespace IntroSkipper.Configuration; /// diff --git a/IntroSkipper/Controllers/SkipIntroController.cs b/IntroSkipper/Controllers/SkipIntroController.cs index 2c1007d..7c20aaf 100644 --- a/IntroSkipper/Controllers/SkipIntroController.cs +++ b/IntroSkipper/Controllers/SkipIntroController.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Collections.Generic; using System.Net.Mime; diff --git a/IntroSkipper/Controllers/TroubleshootingController.cs b/IntroSkipper/Controllers/TroubleshootingController.cs index 4eb0bd0..977a65c 100644 --- a/IntroSkipper/Controllers/TroubleshootingController.cs +++ b/IntroSkipper/Controllers/TroubleshootingController.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Globalization; using System.IO; diff --git a/IntroSkipper/Controllers/VisualizationController.cs b/IntroSkipper/Controllers/VisualizationController.cs index 5d2c78a..f1ce4b7 100644 --- a/IntroSkipper/Controllers/VisualizationController.cs +++ b/IntroSkipper/Controllers/VisualizationController.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Collections.Generic; using System.Globalization; diff --git a/IntroSkipper/Data/AnalysisMode.cs b/IntroSkipper/Data/AnalysisMode.cs index 9abb7b9..a7c1dc0 100644 --- a/IntroSkipper/Data/AnalysisMode.cs +++ b/IntroSkipper/Data/AnalysisMode.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + namespace IntroSkipper.Data; /// diff --git a/IntroSkipper/Data/BlackFrame.cs b/IntroSkipper/Data/BlackFrame.cs index 99eb1db..8a1fdde 100644 --- a/IntroSkipper/Data/BlackFrame.cs +++ b/IntroSkipper/Data/BlackFrame.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + namespace IntroSkipper.Data; /// diff --git a/IntroSkipper/Data/EpisodeState.cs b/IntroSkipper/Data/EpisodeState.cs index a7e2491..7efe85c 100644 --- a/IntroSkipper/Data/EpisodeState.cs +++ b/IntroSkipper/Data/EpisodeState.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; namespace IntroSkipper.Data; diff --git a/IntroSkipper/Data/EpisodeVisualization.cs b/IntroSkipper/Data/EpisodeVisualization.cs index 2e36a23..a5f0537 100644 --- a/IntroSkipper/Data/EpisodeVisualization.cs +++ b/IntroSkipper/Data/EpisodeVisualization.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; namespace IntroSkipper.Data; diff --git a/IntroSkipper/Data/FingerprintException.cs b/IntroSkipper/Data/FingerprintException.cs index 4c94fc4..83f1531 100644 --- a/IntroSkipper/Data/FingerprintException.cs +++ b/IntroSkipper/Data/FingerprintException.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; namespace IntroSkipper.Data; diff --git a/IntroSkipper/Data/IgnoreListItem.cs b/IntroSkipper/Data/IgnoreListItem.cs index 4039815..27ba01c 100644 --- a/IntroSkipper/Data/IgnoreListItem.cs +++ b/IntroSkipper/Data/IgnoreListItem.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Runtime.Serialization; diff --git a/IntroSkipper/Data/Intro.cs b/IntroSkipper/Data/Intro.cs index 5d19756..b9eda2a 100644 --- a/IntroSkipper/Data/Intro.cs +++ b/IntroSkipper/Data/Intro.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Runtime.Serialization; diff --git a/IntroSkipper/Data/PluginWarning.cs b/IntroSkipper/Data/PluginWarning.cs index 6c9424f..c163929 100644 --- a/IntroSkipper/Data/PluginWarning.cs +++ b/IntroSkipper/Data/PluginWarning.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; namespace IntroSkipper.Data; diff --git a/IntroSkipper/Data/QueuedEpisode.cs b/IntroSkipper/Data/QueuedEpisode.cs index 28826d3..751023f 100644 --- a/IntroSkipper/Data/QueuedEpisode.cs +++ b/IntroSkipper/Data/QueuedEpisode.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; namespace IntroSkipper.Data; diff --git a/IntroSkipper/Data/Segment.cs b/IntroSkipper/Data/Segment.cs index e97eedf..0b5e1fa 100644 --- a/IntroSkipper/Data/Segment.cs +++ b/IntroSkipper/Data/Segment.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Globalization; using System.Runtime.Serialization; diff --git a/IntroSkipper/Data/ShowInfos.cs b/IntroSkipper/Data/ShowInfos.cs index 68a3b0a..ce6110e 100644 --- a/IntroSkipper/Data/ShowInfos.cs +++ b/IntroSkipper/Data/ShowInfos.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Collections.Generic; diff --git a/IntroSkipper/Data/TimeRange.cs b/IntroSkipper/Data/TimeRange.cs index 4b70ca1..3b25eb0 100644 --- a/IntroSkipper/Data/TimeRange.cs +++ b/IntroSkipper/Data/TimeRange.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; namespace IntroSkipper.Data; diff --git a/IntroSkipper/Data/TimeRangeHelpers.cs b/IntroSkipper/Data/TimeRangeHelpers.cs index f020f64..189cb68 100644 --- a/IntroSkipper/Data/TimeRangeHelpers.cs +++ b/IntroSkipper/Data/TimeRangeHelpers.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Collections.Generic; diff --git a/IntroSkipper/Data/TimeStamps.cs b/IntroSkipper/Data/TimeStamps.cs index 344f665..af8cbe0 100644 --- a/IntroSkipper/Data/TimeStamps.cs +++ b/IntroSkipper/Data/TimeStamps.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + namespace IntroSkipper.Data { /// diff --git a/IntroSkipper/Data/WarningManager.cs b/IntroSkipper/Data/WarningManager.cs index 12a280e..cc40f1f 100644 --- a/IntroSkipper/Data/WarningManager.cs +++ b/IntroSkipper/Data/WarningManager.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + namespace IntroSkipper.Data; /// diff --git a/IntroSkipper/FFmpegWrapper.cs b/IntroSkipper/FFmpegWrapper.cs index e83da36..05f80cc 100644 --- a/IntroSkipper/FFmpegWrapper.cs +++ b/IntroSkipper/FFmpegWrapper.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Collections.Concurrent; using System.Collections.Generic; diff --git a/IntroSkipper/Helper/Commit.cs b/IntroSkipper/Helper/Commit.cs index e5cbc22..3eb40c3 100644 --- a/IntroSkipper/Helper/Commit.cs +++ b/IntroSkipper/Helper/Commit.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + namespace IntroSkipper.Helper { /// diff --git a/IntroSkipper/Helper/XmlSerializationHelper.cs b/IntroSkipper/Helper/XmlSerializationHelper.cs index 5137112..e418e41 100644 --- a/IntroSkipper/Helper/XmlSerializationHelper.cs +++ b/IntroSkipper/Helper/XmlSerializationHelper.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Collections.Generic; using System.IO; diff --git a/IntroSkipper/Manager/MediaSegmentUpdateManager.cs b/IntroSkipper/Manager/MediaSegmentUpdateManager.cs index fdf7480..c3bd475 100644 --- a/IntroSkipper/Manager/MediaSegmentUpdateManager.cs +++ b/IntroSkipper/Manager/MediaSegmentUpdateManager.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Collections.Generic; using System.Linq; diff --git a/IntroSkipper/Manager/QueueManager.cs b/IntroSkipper/Manager/QueueManager.cs index 64c3396..dbf6910 100644 --- a/IntroSkipper/Manager/QueueManager.cs +++ b/IntroSkipper/Manager/QueueManager.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Collections.Generic; using System.IO; diff --git a/IntroSkipper/Plugin.cs b/IntroSkipper/Plugin.cs index 8a5a90c..6d32f44 100644 --- a/IntroSkipper/Plugin.cs +++ b/IntroSkipper/Plugin.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Collections.Concurrent; using System.Collections.Generic; diff --git a/IntroSkipper/PluginServiceRegistrator.cs b/IntroSkipper/PluginServiceRegistrator.cs index e9284af..a5b7dba 100644 --- a/IntroSkipper/PluginServiceRegistrator.cs +++ b/IntroSkipper/PluginServiceRegistrator.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using IntroSkipper.Manager; using IntroSkipper.Providers; using IntroSkipper.Services; diff --git a/IntroSkipper/Providers/SegmentProvider.cs b/IntroSkipper/Providers/SegmentProvider.cs index 5104820..1d6278b 100644 --- a/IntroSkipper/Providers/SegmentProvider.cs +++ b/IntroSkipper/Providers/SegmentProvider.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Collections.Generic; using System.Threading; diff --git a/IntroSkipper/ScheduledTasks/BaseItemAnalyzerTask.cs b/IntroSkipper/ScheduledTasks/BaseItemAnalyzerTask.cs index 0451f7b..dc1fe1e 100644 --- a/IntroSkipper/ScheduledTasks/BaseItemAnalyzerTask.cs +++ b/IntroSkipper/ScheduledTasks/BaseItemAnalyzerTask.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Collections.Generic; using System.Collections.ObjectModel; diff --git a/IntroSkipper/ScheduledTasks/CleanCacheTask.cs b/IntroSkipper/ScheduledTasks/CleanCacheTask.cs index 18c585e..14b2d5e 100644 --- a/IntroSkipper/ScheduledTasks/CleanCacheTask.cs +++ b/IntroSkipper/ScheduledTasks/CleanCacheTask.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Collections.Generic; using System.IO; diff --git a/IntroSkipper/ScheduledTasks/DetectCreditsTask.cs b/IntroSkipper/ScheduledTasks/DetectCreditsTask.cs index 6267ad6..49ddee0 100644 --- a/IntroSkipper/ScheduledTasks/DetectCreditsTask.cs +++ b/IntroSkipper/ScheduledTasks/DetectCreditsTask.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Collections.Generic; using System.Threading; diff --git a/IntroSkipper/ScheduledTasks/DetectIntrosCreditsTask.cs b/IntroSkipper/ScheduledTasks/DetectIntrosCreditsTask.cs index a1eae26..8527e23 100644 --- a/IntroSkipper/ScheduledTasks/DetectIntrosCreditsTask.cs +++ b/IntroSkipper/ScheduledTasks/DetectIntrosCreditsTask.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Collections.Generic; using System.Threading; diff --git a/IntroSkipper/ScheduledTasks/DetectIntrosTask.cs b/IntroSkipper/ScheduledTasks/DetectIntrosTask.cs index b797bc4..e9240a6 100644 --- a/IntroSkipper/ScheduledTasks/DetectIntrosTask.cs +++ b/IntroSkipper/ScheduledTasks/DetectIntrosTask.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Collections.Generic; using System.Threading; diff --git a/IntroSkipper/ScheduledTasks/ScheduledTaskSemaphore.cs b/IntroSkipper/ScheduledTasks/ScheduledTaskSemaphore.cs index 4ddffa8..cbce115 100644 --- a/IntroSkipper/ScheduledTasks/ScheduledTaskSemaphore.cs +++ b/IntroSkipper/ScheduledTasks/ScheduledTaskSemaphore.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Threading; using System.Threading.Tasks; diff --git a/IntroSkipper/Services/AutoSkip.cs b/IntroSkipper/Services/AutoSkip.cs index 00aea07..6897471 100644 --- a/IntroSkipper/Services/AutoSkip.cs +++ b/IntroSkipper/Services/AutoSkip.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Collections.Generic; using System.Linq; diff --git a/IntroSkipper/Services/AutoSkipCredits.cs b/IntroSkipper/Services/AutoSkipCredits.cs index 4fca15e..d83cecf 100644 --- a/IntroSkipper/Services/AutoSkipCredits.cs +++ b/IntroSkipper/Services/AutoSkipCredits.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Collections.Generic; using System.Linq; diff --git a/IntroSkipper/Services/Entrypoint.cs b/IntroSkipper/Services/Entrypoint.cs index 6cf03bb..e856bfe 100644 --- a/IntroSkipper/Services/Entrypoint.cs +++ b/IntroSkipper/Services/Entrypoint.cs @@ -1,3 +1,6 @@ +// Copyright (C) 2024 Intro-Skipper Contributors +// SPDX-License-Identifier: GNU General Public License v3.0 only. + using System; using System.Collections.Generic; using System.Threading; diff --git a/LICENSE b/LICENSE index 7d37342..f288702 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,3 @@ - Copyright (c) 2024 Intro-Skipper Contributors - GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007