Skip to content

Commit d17c06f

Browse files
committed
Update copyright year and license header
- Updated copyright year from 2025 to 2025-2026. - Update licensing information to in all files to be consistent
1 parent 21b28c1 commit d17c06f

288 files changed

Lines changed: 367 additions & 357 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

examples/BasicUsage/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// TagLibSharp2 Basic Usage Examples
2-
// Demonstrates core BinaryData and BinaryDataBuilder functionality
1+
// Copyright (c) 2025-2026 Stephen Shaw and contributors
2+
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
33

44
using System.Text;
55
using TagLibSharp2.Core;

examples/FileOperations/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// FileOperations Example
2-
// Demonstrates file I/O patterns with TagLibSharp2
1+
// Copyright (c) 2025-2026 Stephen Shaw and contributors
2+
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
33

44
using TagLibSharp2.Core;
55
using TagLibSharp2.Id3.Id3v2;

examples/TagOperations/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// TagLibSharp2 Tag Operations Examples
2-
// Demonstrates reading, writing, and modifying audio metadata
1+
// Copyright (c) 2025-2026 Stephen Shaw and contributors
2+
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
33

44
using TagLibSharp2.Core;
55
using TagLibSharp2.Id3;

src/TagLibSharp2/Aiff/AiffAudioProperties.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// Copyright (c) 2025 Stephen Shaw and contributors
1+
// Copyright (c) 2025-2026 Stephen Shaw and contributors
2+
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
23

34
using TagLibSharp2.Core;
45

src/TagLibSharp2/Aiff/AiffChunk.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// Copyright (c) 2025 Stephen Shaw and contributors
1+
// Copyright (c) 2025-2026 Stephen Shaw and contributors
2+
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
23

34
using TagLibSharp2.Core;
45

src/TagLibSharp2/Aiff/AiffFile.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// Copyright (c) 2025 Stephen Shaw and contributors
1+
// Copyright (c) 2025-2026 Stephen Shaw and contributors
2+
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
23

34
using TagLibSharp2.Core;
45
using TagLibSharp2.Id3.Id3v2;

src/TagLibSharp2/Ape/ApeItemType.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// APE Tag Item Type enumeration
2-
// Based on APEv2 specification: bits 2-1 of item flags
1+
// Copyright (c) 2025-2026 Stephen Shaw and contributors
2+
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
33

44
#pragma warning disable CA1700 // Do not name enum values 'Reserved'
55

src/TagLibSharp2/Ape/ApePicture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2025 Stephen Shaw and contributors
1+
// Copyright (c) 2025-2026 Stephen Shaw and contributors
22
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
33

44
using System.IO;

src/TagLibSharp2/Ape/ApeTag.cs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
1-
// APE Tag v2 implementation
2-
// Implements the abstract Tag class for APE format metadata
3-
//
4-
// Expert input:
5-
// - C# Expert: Use Dictionary<string, ApeTagItem> for O(1) lookups with case-insensitive keys
6-
// - Audio Expert: Support standard keys (Artist, Title, Album) plus extended (ReplayGain, MusicBrainz)
7-
// - Audiophile: Preserve binary cover art with proper filename handling
8-
// - QA Manager: Full round-trip capability, preserve unknown items
1+
// Copyright (c) 2025-2026 Stephen Shaw and contributors
2+
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
93

104
using System;
115
using System.Collections.Generic;

src/TagLibSharp2/Ape/ApeTagFooter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// APE Tag Footer/Header parsing
2-
// APEv2 specification: 32-byte structure at end of tag (footer) or start (header)
1+
// Copyright (c) 2025-2026 Stephen Shaw and contributors
2+
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
33

44
using System;
55
using System.Buffers.Binary;

0 commit comments

Comments
 (0)