diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index db94f007..543b44ee 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -26,9 +26,9 @@ jobs:
- { name: Windows VS2022 x64, os: windows-2025, flags: -Ax64 }
- { name: Windows ClangCL, os: windows-2025, flags: -T ClangCL }
- { name: Windows Clang, os: windows-2025, flags: -GNinja -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ }
- - { name: Linux GCC, os: ubuntu-22.04, flags: -GNinja }
- - { name: Linux Clang, os: ubuntu-22.04, flags: -GNinja -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ }
- - { name: MacOS, os: macos-14, flags: -GNinja }
+ - { name: Linux GCC, os: ubuntu-24.04, flags: -GNinja }
+ - { name: Linux Clang, os: ubuntu-24.04, flags: -GNinja -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ }
+ - { name: MacOS, os: macos-15, flags: -GNinja }
config:
- { name: Shared, flags: -DBUILD_SHARED_LIBS=ON, csfml_flags: -DCSFML_LINK_SFML_STATICALLY=OFF }
- { name: Static, flags: -DBUILD_SHARED_LIBS=OFF, csfml_flags: -DCSFML_LINK_SFML_STATICALLY=ON }
@@ -48,7 +48,7 @@ jobs:
run: sudo apt-get update && sudo apt-get install libxrandr-dev libxcursor-dev libxi-dev libudev-dev libflac-dev libvorbis-dev libgl1-mesa-dev libegl1-mesa-dev libfreetype-dev
- name: Checkout SFML
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
with:
repository: SFML/SFML
ref: ${{env.SFML_VERSION}}
@@ -66,7 +66,7 @@ jobs:
run: cmake --build SFML/build --config ${{matrix.type.name}} --target install
- name: Checkout CSFML
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
with:
path: CSFML
@@ -96,7 +96,7 @@ jobs:
run: sudo apt-get install clang-format-17
- name: Checkout Code
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
- name: Format Code
run: cmake -DCLANG_FORMAT_EXECUTABLE=clang-format-17 -P cmake/Format.cmake
@@ -106,7 +106,7 @@ jobs:
tidy:
name: Analyze
- runs-on: macos-14
+ runs-on: macos-15
steps:
- name: Get CMake and Ninja
@@ -122,7 +122,7 @@ jobs:
echo /opt/homebrew/opt/llvm/bin >> $GITHUB_PATH
- name: Checkout SFML
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
with:
repository: SFML/SFML
ref: ${{env.SFML_VERSION}}
@@ -135,7 +135,7 @@ jobs:
run: cmake --build SFML/build --target install
- name: Checkout CSFML
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
with:
path: CSFML
@@ -147,7 +147,7 @@ jobs:
docs:
name: Documentation
- runs-on: macos-14
+ runs-on: macos-15
steps:
- name: Get CMake and Ninja
@@ -162,7 +162,7 @@ jobs:
brew install doxygen ninja || true
- name: Checkout SFML
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
with:
repository: SFML/SFML
ref: ${{env.SFML_VERSION}}
@@ -175,7 +175,7 @@ jobs:
run: cmake --build SFML/build --target install
- name: Checkout CSFML
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
with:
path: CSFML
diff --git a/.github/workflows/nuget.yml b/.github/workflows/nuget.yml
index ed844588..2d8c83df 100644
--- a/.github/workflows/nuget.yml
+++ b/.github/workflows/nuget.yml
@@ -17,13 +17,13 @@ env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
jobs:
- windows:
- name: Windows VS2022
+ windows-x86-x64:
+ name: Windows x86 x64
runs-on: windows-2025
steps:
- name: Checkout CSFML
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
with:
path: CSFML
@@ -39,6 +39,22 @@ jobs:
cd CSFML/tools/nuget
./build.win.ps1 "win-x64"
+ - name: Upload Artifact
+ uses: actions/upload-artifact@v6
+ with:
+ name: CSFML-win-x86-x64
+ path: CSFML/tools/nuget/CSFML/runtimes
+
+ windows-arm64:
+ name: Windows ARM64
+ runs-on: windows-11-arm
+
+ steps:
+ - name: Checkout CSFML
+ uses: actions/checkout@v6
+ with:
+ path: CSFML
+
- name: Build ARM64
shell: pwsh
run: |
@@ -46,20 +62,20 @@ jobs:
./build.win.ps1 "win-arm64"
- name: Upload Artifact
- uses: actions/upload-artifact@v4
+ uses: actions/upload-artifact@v6
with:
- name: CSFML-win-x86-x64-arm64
+ name: CSFML-win-arm64
path: CSFML/tools/nuget/CSFML/runtimes
linux-x64:
name: Linux x64
- runs-on: ubuntu-22.04
+ runs-on: ubuntu-24.04
container:
- image: ubuntu:22.04
+ image: ubuntu:24.04
steps:
- name: Checkout CSFML
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
with:
path: CSFML
@@ -71,84 +87,77 @@ jobs:
./docker.linux-x64.sh
- name: Upload Artifact
- uses: actions/upload-artifact@v4
+ uses: actions/upload-artifact@v6
with:
name: CSFML-linux-x64
path: CSFML/tools/nuget/CSFML/runtimes
linux-arm:
name: Linux ARM
- runs-on: ubuntu-22.04
+ runs-on: ubuntu-24.04-arm
steps:
- name: Checkout CSFML
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
with:
path: CSFML
- - name: Build in an ARM container
- uses: uraimo/run-on-arch-action@v3.0.1
- with:
- arch: armv7
- distro: ubuntu22.04
- githubToken: ${{ github.token }}
- dockerRunArgs: |
- --volume "${PWD}/CSFML:/CSFML"
- install: |
- apt-get update -y
- apt-get install -y git libfreetype6-dev xorg-dev libxrandr-dev libxcursor-dev libxi-dev libudev-dev libgl1-mesa-dev libflac-dev libogg-dev libvorbis-dev cmake g++
- run: |
- cd /CSFML/tools/nuget
- chmod +x ./build.linux.sh
- ./build.linux.sh linux-arm
+ - name: Install dependencies & cross compiler
+ run: |
+ sudo dpkg --add-architecture armhf
+ sudo apt-get update
+ sudo apt-get install -y git libfreetype6-dev:armhf xorg-dev libxrandr-dev:armhf libxcursor-dev:armhf libxi-dev:armhf libudev-dev:armhf libgl1-mesa-dev:armhf libflac-dev:armhf libogg-dev:armhf libvorbis-dev:armhf cmake g++-arm-linux-gnueabihf gcc-arm-linux-gnueabihf
+
+ - name: Build
+ shell: bash
+ run: |
+ cd ./CSFML/tools/nuget
+ chmod +x ./build.linux.sh
+ ./build.linux.sh linux-arm arm-linux-gnueabihf-g++ arm-linux-gnueabihf-gcc
- name: Upload Artifact
- uses: actions/upload-artifact@v4
+ uses: actions/upload-artifact@v6
with:
name: CSFML-linux-arm
path: CSFML/tools/nuget/CSFML/runtimes
linux-arm64:
name: Linux ARM64
- runs-on: ubuntu-22.04
+ runs-on: ubuntu-24.04-arm
steps:
- name: Checkout CSFML
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
with:
path: CSFML
- - name: Build in an ARM64 container
- uses: uraimo/run-on-arch-action@v3.0.1
- with:
- arch: aarch64
- distro: ubuntu22.04
- githubToken: ${{ github.token }}
- dockerRunArgs: |
- --volume "${PWD}/CSFML:/CSFML"
- install: |
- apt-get update -y
- apt-get install -y git libfreetype6-dev xorg-dev libxrandr-dev libxcursor-dev libudev-dev libgl1-mesa-dev libflac-dev libogg-dev libvorbis-dev cmake g++
- run: |
- cd /CSFML/tools/nuget
- chmod +x ./build.linux.sh
- ./build.linux.sh linux-arm64
+ - name: Install dependencies
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y git libfreetype6-dev xorg-dev libxrandr-dev libxcursor-dev libxi-dev libudev-dev libgl1-mesa-dev libflac-dev libogg-dev libvorbis-dev cmake gcc g++
+
+ - name: Build
+ shell: bash
+ run: |
+ cd ./CSFML/tools/nuget
+ chmod +x ./build.linux.sh
+ ./build.linux.sh linux-arm64
- name: Upload Artifact
- uses: actions/upload-artifact@v4
+ uses: actions/upload-artifact@v6
with:
name: CSFML-linux-arm64
path: CSFML/tools/nuget/CSFML/runtimes
linux-musl-x64:
name: Linux MUSL x64
- runs-on: ubuntu-22.04
+ runs-on: ubuntu-24.04
container:
image: alpine:3.20.7
steps:
- name: Checkout CSFML
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
with:
path: CSFML
@@ -160,18 +169,18 @@ jobs:
./docker.linux-musl-x64.sh
- name: Upload Artifact
- uses: actions/upload-artifact@v4
+ uses: actions/upload-artifact@v6
with:
name: CSFML-linux-musl-x64
path: CSFML/tools/nuget/CSFML/runtimes
- macos:
- name: macOS
- runs-on: macos-14
+ macos-x64-arm64:
+ name: macOS x64 and ARM64
+ runs-on: macos-15
steps:
- name: Checkout CSFML
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
with:
path: CSFML
@@ -189,7 +198,7 @@ jobs:
./build.macos.sh "osx-arm64"
- name: Upload Artifact
- uses: actions/upload-artifact@v4
+ uses: actions/upload-artifact@v6
with:
name: CSFML-macOS-x64-arm64
path: CSFML/tools/nuget/CSFML/runtimes
@@ -198,27 +207,28 @@ jobs:
name: Package Builds
runs-on: ubuntu-24.04
needs:
- - windows
+ - windows-x86-x64
+ - windows-arm64
- linux-x64
- linux-arm
- linux-arm64
- linux-musl-x64
- - macos
+ - macos-x64-arm64
steps:
- name: Checkout CSFML
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
with:
path: CSFML
- name: Download Artifacts
- uses: actions/download-artifact@v4
+ uses: actions/download-artifact@v7
with:
path: CSFML/tools/nuget/CSFML/runtimes
merge-multiple: true
- - name: Setup .NET 8 SDK
+ - name: Setup .NET 10 SDK
id: setup-dotnet
- uses: actions/setup-dotnet@v4
+ uses: actions/setup-dotnet@v5
with:
- dotnet-version: 8.0.x
+ dotnet-version: 10.0.x
- name: Enforce SDK Version
run: dotnet new globaljson --sdk-version ${{ steps.setup-dotnet.outputs.dotnet-version }} --force
- name: Verify SDK Installation
@@ -228,7 +238,7 @@ jobs:
cd CSFML/tools/nuget
dotnet build --configuration Release --verbosity detailed
- name: Upload NuGet Package
- uses: actions/upload-artifact@v4
+ uses: actions/upload-artifact@v6
with:
name: CSFML-NuGet-Package
path: CSFML/tools/nuget/CSFML/bin/Release/*.nupkg
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 523e3781..2ff24404 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -24,7 +24,7 @@ jobs:
steps:
- name: Cache MinGW x86
id: mingw-x86-cache
- uses: actions/cache@v4
+ uses: actions/cache@v5
with:
path: ${{ github.workspace }}/mingw32
key: 15.2.0posix-13.0.0-ucrt-r1-x86
@@ -41,14 +41,14 @@ jobs:
add_to_path: false
- name: Checkout SFML
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
with:
repository: SFML/SFML
ref: ${{ env.SFML_VERSION }}
path: SFML
- name: Checkout CSFML
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
with:
path: CSFML
@@ -99,7 +99,7 @@ jobs:
Move-Item -Path "CSFML-install\*" -Destination "install\CSFML"
- name: Upload Artifact
- uses: actions/upload-artifact@v4
+ uses: actions/upload-artifact@v6
with:
name: CSFML-windows-32-bit
path: install/CSFML
@@ -111,7 +111,7 @@ jobs:
steps:
- name: Cache MinGW x64
id: mingw-x64-cache
- uses: actions/cache@v4
+ uses: actions/cache@v5
with:
path: ${{ github.workspace }}/mingw64
key: 15.2.0posix-13.0.0-ucrt-r1-x64
@@ -128,14 +128,14 @@ jobs:
add_to_path: false
- name: Checkout SFML
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
with:
repository: SFML/SFML
ref: ${{ env.SFML_VERSION }}
path: SFML
- name: Checkout CSFML
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
with:
path: CSFML
@@ -186,7 +186,7 @@ jobs:
Move-Item -Path "CSFML-install\*" -Destination "install\CSFML"
- name: Upload Artifact
- uses: actions/upload-artifact@v4
+ uses: actions/upload-artifact@v6
with:
name: CSFML-windows-64-bit
path: install/CSFML
@@ -197,14 +197,14 @@ jobs:
steps:
- name: Checkout SFML
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
with:
repository: SFML/SFML
ref: ${{ env.SFML_VERSION }}
path: SFML
- name: Checkout CSFML
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
with:
path: CSFML
@@ -225,25 +225,25 @@ jobs:
Move-Item -Path "CSFML-install\*" -Destination "install\CSFML"
- name: Upload Artifact
- uses: actions/upload-artifact@v4
+ uses: actions/upload-artifact@v6
with:
name: CSFML-windows-arm64
path: install/CSFML
macos-x64:
name: macOS x64
- runs-on: macos-13
+ runs-on: macos-15
steps:
- name: Checkout SFML
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
with:
repository: SFML/SFML
ref: ${{ env.SFML_VERSION }}
path: SFML
- name: Checkout CSFML
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
with:
path: CSFML
@@ -288,25 +288,25 @@ jobs:
tar -zcvf CSFML-macOS-clang-64-bit.tar.gz CSFML-macOS-clang-64-bit
- name: Upload Artifact
- uses: actions/upload-artifact@v4
+ uses: actions/upload-artifact@v6
with:
name: CSFML-macOS-clang-64-bit
path: CSFML-macOS-clang-64-bit.tar.gz
macos-arm64:
name: macOS ARM64
- runs-on: macos-14
+ runs-on: macos-15
steps:
- name: Checkout SFML
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
with:
repository: SFML/SFML
ref: ${{ env.SFML_VERSION }}
path: SFML
- name: Checkout CSFML
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
with:
path: CSFML
- name: Build SFML
@@ -350,7 +350,7 @@ jobs:
tar -zcvf CSFML-macOS-clang-arm64.tar.gz CSFML-macOS-clang-arm64
- name: Upload Artifact
- uses: actions/upload-artifact@v4
+ uses: actions/upload-artifact@v6
with:
name: CSFML-macOS-clang-arm64
path: CSFML-macOS-clang-arm64.tar.gz
diff --git a/include/CSFML/Audio.h b/include/CSFML/Audio.h
index 85a08d05..11a1771f 100644
--- a/include/CSFML/Audio.h
+++ b/include/CSFML/Audio.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Audio/EffectProcessor.h b/include/CSFML/Audio/EffectProcessor.h
index 4fe1fea2..dcfef3b8 100644
--- a/include/CSFML/Audio/EffectProcessor.h
+++ b/include/CSFML/Audio/EffectProcessor.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Audio/Export.h b/include/CSFML/Audio/Export.h
index 9c89a0bb..b03785b7 100644
--- a/include/CSFML/Audio/Export.h
+++ b/include/CSFML/Audio/Export.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Audio/Listener.h b/include/CSFML/Audio/Listener.h
index 0bc6408a..964e491a 100644
--- a/include/CSFML/Audio/Listener.h
+++ b/include/CSFML/Audio/Listener.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Audio/Music.h b/include/CSFML/Audio/Music.h
index 4ba793a0..711a05fd 100644
--- a/include/CSFML/Audio/Music.h
+++ b/include/CSFML/Audio/Music.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Audio/Sound.h b/include/CSFML/Audio/Sound.h
index a81d6175..6bc42f24 100644
--- a/include/CSFML/Audio/Sound.h
+++ b/include/CSFML/Audio/Sound.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Audio/SoundBuffer.h b/include/CSFML/Audio/SoundBuffer.h
index 352d2930..80844b1a 100644
--- a/include/CSFML/Audio/SoundBuffer.h
+++ b/include/CSFML/Audio/SoundBuffer.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Audio/SoundBufferRecorder.h b/include/CSFML/Audio/SoundBufferRecorder.h
index fb0cb492..a585b19b 100644
--- a/include/CSFML/Audio/SoundBufferRecorder.h
+++ b/include/CSFML/Audio/SoundBufferRecorder.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Audio/SoundChannel.h b/include/CSFML/Audio/SoundChannel.h
index 409e301b..adefd0b2 100644
--- a/include/CSFML/Audio/SoundChannel.h
+++ b/include/CSFML/Audio/SoundChannel.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Audio/SoundRecorder.h b/include/CSFML/Audio/SoundRecorder.h
index c108db1d..ec960d3c 100644
--- a/include/CSFML/Audio/SoundRecorder.h
+++ b/include/CSFML/Audio/SoundRecorder.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Audio/SoundSourceCone.h b/include/CSFML/Audio/SoundSourceCone.h
index ada68ebb..08ea4468 100644
--- a/include/CSFML/Audio/SoundSourceCone.h
+++ b/include/CSFML/Audio/SoundSourceCone.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Audio/SoundStatus.h b/include/CSFML/Audio/SoundStatus.h
index e4adab11..8eae750b 100644
--- a/include/CSFML/Audio/SoundStatus.h
+++ b/include/CSFML/Audio/SoundStatus.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Audio/SoundStream.h b/include/CSFML/Audio/SoundStream.h
index a3ad4ac1..7179f2ae 100644
--- a/include/CSFML/Audio/SoundStream.h
+++ b/include/CSFML/Audio/SoundStream.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Audio/Types.h b/include/CSFML/Audio/Types.h
index 27950fbc..4b88dd89 100644
--- a/include/CSFML/Audio/Types.h
+++ b/include/CSFML/Audio/Types.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Config.h b/include/CSFML/Config.h
index d1dfec84..12b49ec3 100644
--- a/include/CSFML/Config.h
+++ b/include/CSFML/Config.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/GPUPreference.h b/include/CSFML/GPUPreference.h
index b867da11..be1928da 100644
--- a/include/CSFML/GPUPreference.h
+++ b/include/CSFML/GPUPreference.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics.h b/include/CSFML/Graphics.h
index 31214e84..c6217443 100644
--- a/include/CSFML/Graphics.h
+++ b/include/CSFML/Graphics.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/BlendMode.h b/include/CSFML/Graphics/BlendMode.h
index 8d2e9773..63fff440 100644
--- a/include/CSFML/Graphics/BlendMode.h
+++ b/include/CSFML/Graphics/BlendMode.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/CircleShape.h b/include/CSFML/Graphics/CircleShape.h
index d9b775a4..1d946ef9 100644
--- a/include/CSFML/Graphics/CircleShape.h
+++ b/include/CSFML/Graphics/CircleShape.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/Color.h b/include/CSFML/Graphics/Color.h
index 5682c68d..bd731873 100644
--- a/include/CSFML/Graphics/Color.h
+++ b/include/CSFML/Graphics/Color.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/ConvexShape.h b/include/CSFML/Graphics/ConvexShape.h
index c3372542..aca5c398 100644
--- a/include/CSFML/Graphics/ConvexShape.h
+++ b/include/CSFML/Graphics/ConvexShape.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/CoordinateType.h b/include/CSFML/Graphics/CoordinateType.h
index 029249fa..debf1b9c 100644
--- a/include/CSFML/Graphics/CoordinateType.h
+++ b/include/CSFML/Graphics/CoordinateType.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/Export.h b/include/CSFML/Graphics/Export.h
index fbd9f938..56705aae 100644
--- a/include/CSFML/Graphics/Export.h
+++ b/include/CSFML/Graphics/Export.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/Font.h b/include/CSFML/Graphics/Font.h
index 2405db09..48164f39 100644
--- a/include/CSFML/Graphics/Font.h
+++ b/include/CSFML/Graphics/Font.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/FontInfo.h b/include/CSFML/Graphics/FontInfo.h
index b516c920..6037e142 100644
--- a/include/CSFML/Graphics/FontInfo.h
+++ b/include/CSFML/Graphics/FontInfo.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/Glsl.h b/include/CSFML/Graphics/Glsl.h
index fc9636a9..cadff041 100644
--- a/include/CSFML/Graphics/Glsl.h
+++ b/include/CSFML/Graphics/Glsl.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/Glyph.h b/include/CSFML/Graphics/Glyph.h
index 7f26e759..bb1f38de 100644
--- a/include/CSFML/Graphics/Glyph.h
+++ b/include/CSFML/Graphics/Glyph.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/Image.h b/include/CSFML/Graphics/Image.h
index 28c7b629..d858b946 100644
--- a/include/CSFML/Graphics/Image.h
+++ b/include/CSFML/Graphics/Image.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/PrimitiveType.h b/include/CSFML/Graphics/PrimitiveType.h
index c817fb93..7879603f 100644
--- a/include/CSFML/Graphics/PrimitiveType.h
+++ b/include/CSFML/Graphics/PrimitiveType.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/Rect.h b/include/CSFML/Graphics/Rect.h
index 0c623438..37fc798b 100644
--- a/include/CSFML/Graphics/Rect.h
+++ b/include/CSFML/Graphics/Rect.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/RectangleShape.h b/include/CSFML/Graphics/RectangleShape.h
index b0d603d9..2834a5f9 100644
--- a/include/CSFML/Graphics/RectangleShape.h
+++ b/include/CSFML/Graphics/RectangleShape.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/RenderStates.h b/include/CSFML/Graphics/RenderStates.h
index 0e81e1e9..998bfb58 100644
--- a/include/CSFML/Graphics/RenderStates.h
+++ b/include/CSFML/Graphics/RenderStates.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/RenderTexture.h b/include/CSFML/Graphics/RenderTexture.h
index fb8049fd..8d92c11a 100644
--- a/include/CSFML/Graphics/RenderTexture.h
+++ b/include/CSFML/Graphics/RenderTexture.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/RenderWindow.h b/include/CSFML/Graphics/RenderWindow.h
index 8b4d267f..d6d894c7 100644
--- a/include/CSFML/Graphics/RenderWindow.h
+++ b/include/CSFML/Graphics/RenderWindow.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/Shader.h b/include/CSFML/Graphics/Shader.h
index b31a71b0..ab41c805 100644
--- a/include/CSFML/Graphics/Shader.h
+++ b/include/CSFML/Graphics/Shader.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/Shape.h b/include/CSFML/Graphics/Shape.h
index 97f4798a..d844ca63 100644
--- a/include/CSFML/Graphics/Shape.h
+++ b/include/CSFML/Graphics/Shape.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/Sprite.h b/include/CSFML/Graphics/Sprite.h
index 7443571c..6e9ad8c8 100644
--- a/include/CSFML/Graphics/Sprite.h
+++ b/include/CSFML/Graphics/Sprite.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/StencilMode.h b/include/CSFML/Graphics/StencilMode.h
index c25dbcf4..6b4b6533 100644
--- a/include/CSFML/Graphics/StencilMode.h
+++ b/include/CSFML/Graphics/StencilMode.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/Text.h b/include/CSFML/Graphics/Text.h
index c28d05e2..a8a0df8f 100644
--- a/include/CSFML/Graphics/Text.h
+++ b/include/CSFML/Graphics/Text.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/Texture.h b/include/CSFML/Graphics/Texture.h
index f282d0c0..8f259c78 100644
--- a/include/CSFML/Graphics/Texture.h
+++ b/include/CSFML/Graphics/Texture.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/Transform.h b/include/CSFML/Graphics/Transform.h
index 99cffa11..03f7a3f4 100644
--- a/include/CSFML/Graphics/Transform.h
+++ b/include/CSFML/Graphics/Transform.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/Transformable.h b/include/CSFML/Graphics/Transformable.h
index 18574332..84200d54 100644
--- a/include/CSFML/Graphics/Transformable.h
+++ b/include/CSFML/Graphics/Transformable.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/Types.h b/include/CSFML/Graphics/Types.h
index 3c096048..d9a5cf2a 100644
--- a/include/CSFML/Graphics/Types.h
+++ b/include/CSFML/Graphics/Types.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/Vertex.h b/include/CSFML/Graphics/Vertex.h
index e54a212f..fde0af97 100644
--- a/include/CSFML/Graphics/Vertex.h
+++ b/include/CSFML/Graphics/Vertex.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/VertexArray.h b/include/CSFML/Graphics/VertexArray.h
index 0a7af5a4..c55e0a37 100644
--- a/include/CSFML/Graphics/VertexArray.h
+++ b/include/CSFML/Graphics/VertexArray.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/VertexBuffer.h b/include/CSFML/Graphics/VertexBuffer.h
index ad25aaa5..b5c44bae 100644
--- a/include/CSFML/Graphics/VertexBuffer.h
+++ b/include/CSFML/Graphics/VertexBuffer.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Graphics/View.h b/include/CSFML/Graphics/View.h
index bbf20c90..59c3e192 100644
--- a/include/CSFML/Graphics/View.h
+++ b/include/CSFML/Graphics/View.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Network.h b/include/CSFML/Network.h
index 46773465..31ce8b7c 100644
--- a/include/CSFML/Network.h
+++ b/include/CSFML/Network.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Network/Export.h b/include/CSFML/Network/Export.h
index ef4c638b..b479e558 100644
--- a/include/CSFML/Network/Export.h
+++ b/include/CSFML/Network/Export.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Network/Ftp.h b/include/CSFML/Network/Ftp.h
index aa2429ab..1469e703 100644
--- a/include/CSFML/Network/Ftp.h
+++ b/include/CSFML/Network/Ftp.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Network/Http.h b/include/CSFML/Network/Http.h
index 836b1759..35852c4f 100644
--- a/include/CSFML/Network/Http.h
+++ b/include/CSFML/Network/Http.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Network/IpAddress.h b/include/CSFML/Network/IpAddress.h
index 69a7e43a..4b6eefca 100644
--- a/include/CSFML/Network/IpAddress.h
+++ b/include/CSFML/Network/IpAddress.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Network/Packet.h b/include/CSFML/Network/Packet.h
index 32cc5906..1832a1c5 100644
--- a/include/CSFML/Network/Packet.h
+++ b/include/CSFML/Network/Packet.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Network/SocketSelector.h b/include/CSFML/Network/SocketSelector.h
index 6572dc0f..aa0fcf35 100644
--- a/include/CSFML/Network/SocketSelector.h
+++ b/include/CSFML/Network/SocketSelector.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Network/SocketStatus.h b/include/CSFML/Network/SocketStatus.h
index 7d38823a..496fa8a7 100644
--- a/include/CSFML/Network/SocketStatus.h
+++ b/include/CSFML/Network/SocketStatus.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Network/TcpListener.h b/include/CSFML/Network/TcpListener.h
index 98848f99..b821ef2b 100644
--- a/include/CSFML/Network/TcpListener.h
+++ b/include/CSFML/Network/TcpListener.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Network/TcpSocket.h b/include/CSFML/Network/TcpSocket.h
index 300f28c9..a5d9501f 100644
--- a/include/CSFML/Network/TcpSocket.h
+++ b/include/CSFML/Network/TcpSocket.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Network/Types.h b/include/CSFML/Network/Types.h
index 110b84c2..e607e3f9 100644
--- a/include/CSFML/Network/Types.h
+++ b/include/CSFML/Network/Types.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Network/UdpSocket.h b/include/CSFML/Network/UdpSocket.h
index bfe1401f..fdfc1053 100644
--- a/include/CSFML/Network/UdpSocket.h
+++ b/include/CSFML/Network/UdpSocket.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/OpenGL.h b/include/CSFML/OpenGL.h
index 3726baa3..3aee54de 100644
--- a/include/CSFML/OpenGL.h
+++ b/include/CSFML/OpenGL.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/System.h b/include/CSFML/System.h
index 73266b17..83a73322 100644
--- a/include/CSFML/System.h
+++ b/include/CSFML/System.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/System/Alloc.h b/include/CSFML/System/Alloc.h
index 47a6d240..15d4b655 100644
--- a/include/CSFML/System/Alloc.h
+++ b/include/CSFML/System/Alloc.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/System/Buffer.h b/include/CSFML/System/Buffer.h
index 8ae27ccf..e4020bf6 100644
--- a/include/CSFML/System/Buffer.h
+++ b/include/CSFML/System/Buffer.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/System/Clock.h b/include/CSFML/System/Clock.h
index ff96aa35..93d4585e 100644
--- a/include/CSFML/System/Clock.h
+++ b/include/CSFML/System/Clock.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/System/Export.h b/include/CSFML/System/Export.h
index 359c82ed..838e9eef 100644
--- a/include/CSFML/System/Export.h
+++ b/include/CSFML/System/Export.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/System/InputStream.h b/include/CSFML/System/InputStream.h
index 5e27b10b..dc76430b 100644
--- a/include/CSFML/System/InputStream.h
+++ b/include/CSFML/System/InputStream.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/System/Sleep.h b/include/CSFML/System/Sleep.h
index f9d48181..0690ab74 100644
--- a/include/CSFML/System/Sleep.h
+++ b/include/CSFML/System/Sleep.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/System/Time.h b/include/CSFML/System/Time.h
index 62ab168f..90f14eee 100644
--- a/include/CSFML/System/Time.h
+++ b/include/CSFML/System/Time.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/System/Types.h b/include/CSFML/System/Types.h
index a0f9ad02..5817b130 100644
--- a/include/CSFML/System/Types.h
+++ b/include/CSFML/System/Types.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/System/Vector2.h b/include/CSFML/System/Vector2.h
index f1af0d3a..b5e4d3d6 100644
--- a/include/CSFML/System/Vector2.h
+++ b/include/CSFML/System/Vector2.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/System/Vector3.h b/include/CSFML/System/Vector3.h
index addf9856..d4b33f20 100644
--- a/include/CSFML/System/Vector3.h
+++ b/include/CSFML/System/Vector3.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Window.h b/include/CSFML/Window.h
index d74699cf..2ca9a65d 100644
--- a/include/CSFML/Window.h
+++ b/include/CSFML/Window.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Window/Clipboard.h b/include/CSFML/Window/Clipboard.h
index 75325fe8..25711cde 100644
--- a/include/CSFML/Window/Clipboard.h
+++ b/include/CSFML/Window/Clipboard.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Window/Context.h b/include/CSFML/Window/Context.h
index 163283dc..5532b5e4 100644
--- a/include/CSFML/Window/Context.h
+++ b/include/CSFML/Window/Context.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Window/Cursor.h b/include/CSFML/Window/Cursor.h
index e4a99276..3eef62f2 100644
--- a/include/CSFML/Window/Cursor.h
+++ b/include/CSFML/Window/Cursor.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Window/Event.h b/include/CSFML/Window/Event.h
index 6c02c6b3..8e41dd6d 100644
--- a/include/CSFML/Window/Event.h
+++ b/include/CSFML/Window/Event.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Window/Export.h b/include/CSFML/Window/Export.h
index 8ba8b249..f21dd7e5 100644
--- a/include/CSFML/Window/Export.h
+++ b/include/CSFML/Window/Export.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Window/Joystick.h b/include/CSFML/Window/Joystick.h
index 966ba689..d9c2d1a5 100644
--- a/include/CSFML/Window/Joystick.h
+++ b/include/CSFML/Window/Joystick.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Window/JoystickIdentification.h b/include/CSFML/Window/JoystickIdentification.h
index 37905624..807fa8f6 100644
--- a/include/CSFML/Window/JoystickIdentification.h
+++ b/include/CSFML/Window/JoystickIdentification.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Window/Keyboard.h b/include/CSFML/Window/Keyboard.h
index 2e40a11b..283b4525 100644
--- a/include/CSFML/Window/Keyboard.h
+++ b/include/CSFML/Window/Keyboard.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Window/Mouse.h b/include/CSFML/Window/Mouse.h
index a468d6d0..b8edb547 100644
--- a/include/CSFML/Window/Mouse.h
+++ b/include/CSFML/Window/Mouse.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Window/Sensor.h b/include/CSFML/Window/Sensor.h
index 7c47a5d1..7db7f4d1 100644
--- a/include/CSFML/Window/Sensor.h
+++ b/include/CSFML/Window/Sensor.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Window/Touch.h b/include/CSFML/Window/Touch.h
index f226416d..948fa2ac 100644
--- a/include/CSFML/Window/Touch.h
+++ b/include/CSFML/Window/Touch.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Window/Types.h b/include/CSFML/Window/Types.h
index cc6229b5..9ab41751 100644
--- a/include/CSFML/Window/Types.h
+++ b/include/CSFML/Window/Types.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Window/VideoMode.h b/include/CSFML/Window/VideoMode.h
index 9071c043..c58ea4b4 100644
--- a/include/CSFML/Window/VideoMode.h
+++ b/include/CSFML/Window/VideoMode.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Window/Vulkan.h b/include/CSFML/Window/Vulkan.h
index aed034b8..c3e509b0 100644
--- a/include/CSFML/Window/Vulkan.h
+++ b/include/CSFML/Window/Vulkan.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Window/Window.h b/include/CSFML/Window/Window.h
index fb10621c..f09f4bbd 100644
--- a/include/CSFML/Window/Window.h
+++ b/include/CSFML/Window/Window.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Window/WindowBase.h b/include/CSFML/Window/WindowBase.h
index 49d462df..93ff1a41 100644
--- a/include/CSFML/Window/WindowBase.h
+++ b/include/CSFML/Window/WindowBase.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/include/CSFML/Window/WindowHandle.h b/include/CSFML/Window/WindowHandle.h
index b9f0a645..9c0758c0 100644
--- a/include/CSFML/Window/WindowHandle.h
+++ b/include/CSFML/Window/WindowHandle.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/license.md b/license.md
index 68a50859..c6fd3cf1 100644
--- a/license.md
+++ b/license.md
@@ -1,6 +1,6 @@
# CSFML
-CSFML - Copyright (C) 2007-2025 Laurent Gomila - laurent@sfml-dev.org
+CSFML - Copyright (C) 2007-2026 Laurent Gomila - laurent@sfml-dev.org
This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/readme.md b/readme.md
index 27aabf99..4280ce49 100644
--- a/readme.md
+++ b/readme.md
@@ -6,11 +6,7 @@ SFML is a simple, fast, cross-platform and object-oriented multimedia API. It pr
## State of Development
-Development is focused on the next major version in the `master` branch. No more features are planned for the 2.x release series.
-
-- The [`master`](https://github.com/SFML/CSFML/tree/master) branch contains work in progress for the next major version CSFML 3. As such it's considered unstable, but any testing and feedback is highly appreciated.
-- The [`2.6.1`](https://github.com/SFML/CSFML/tree/2.6.1) tag is the latest official CSFML release and will be the last minor release in the 2.x series.
-- The [`2.6.x`](https://github.com/SFML/CSFML/tree/2.6.x) branch contains the latest bugfix work on CSFML 2.6.x, matching SFML's `2.6.x` branch.
+Development is focused on version 3 in the `master` branch. No more features are planned for the 2.x release series.
## Authors
diff --git a/src/CSFML/Audio/ConvertCone.hpp b/src/CSFML/Audio/ConvertCone.hpp
index a4bebf72..b30dfd53 100644
--- a/src/CSFML/Audio/ConvertCone.hpp
+++ b/src/CSFML/Audio/ConvertCone.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Audio/Listener.cpp b/src/CSFML/Audio/Listener.cpp
index f66773da..01e2f304 100644
--- a/src/CSFML/Audio/Listener.cpp
+++ b/src/CSFML/Audio/Listener.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Audio/Music.cpp b/src/CSFML/Audio/Music.cpp
index 22237e8d..fa4f79c5 100644
--- a/src/CSFML/Audio/Music.cpp
+++ b/src/CSFML/Audio/Music.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Audio/MusicStruct.hpp b/src/CSFML/Audio/MusicStruct.hpp
index cda2197a..4aa29385 100644
--- a/src/CSFML/Audio/MusicStruct.hpp
+++ b/src/CSFML/Audio/MusicStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Audio/Sound.cpp b/src/CSFML/Audio/Sound.cpp
index aa3bd946..9b0ee6c2 100644
--- a/src/CSFML/Audio/Sound.cpp
+++ b/src/CSFML/Audio/Sound.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Audio/SoundBuffer.cpp b/src/CSFML/Audio/SoundBuffer.cpp
index b0fdf25a..876cd967 100644
--- a/src/CSFML/Audio/SoundBuffer.cpp
+++ b/src/CSFML/Audio/SoundBuffer.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Audio/SoundBufferRecorder.cpp b/src/CSFML/Audio/SoundBufferRecorder.cpp
index 04a096e2..09a4e222 100644
--- a/src/CSFML/Audio/SoundBufferRecorder.cpp
+++ b/src/CSFML/Audio/SoundBufferRecorder.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Audio/SoundBufferRecorderStruct.hpp b/src/CSFML/Audio/SoundBufferRecorderStruct.hpp
index 39230a91..148fde44 100644
--- a/src/CSFML/Audio/SoundBufferRecorderStruct.hpp
+++ b/src/CSFML/Audio/SoundBufferRecorderStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Audio/SoundBufferStruct.hpp b/src/CSFML/Audio/SoundBufferStruct.hpp
index 5573980c..c6062a2d 100644
--- a/src/CSFML/Audio/SoundBufferStruct.hpp
+++ b/src/CSFML/Audio/SoundBufferStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Audio/SoundRecorder.cpp b/src/CSFML/Audio/SoundRecorder.cpp
index 7eba322c..0c1ac816 100644
--- a/src/CSFML/Audio/SoundRecorder.cpp
+++ b/src/CSFML/Audio/SoundRecorder.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Audio/SoundRecorderStruct.hpp b/src/CSFML/Audio/SoundRecorderStruct.hpp
index 1a7efd14..5afe030e 100644
--- a/src/CSFML/Audio/SoundRecorderStruct.hpp
+++ b/src/CSFML/Audio/SoundRecorderStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Audio/SoundStream.cpp b/src/CSFML/Audio/SoundStream.cpp
index 0e3cd27f..95852acb 100644
--- a/src/CSFML/Audio/SoundStream.cpp
+++ b/src/CSFML/Audio/SoundStream.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Audio/SoundStreamStruct.hpp b/src/CSFML/Audio/SoundStreamStruct.hpp
index 300f0204..9e3f29d1 100644
--- a/src/CSFML/Audio/SoundStreamStruct.hpp
+++ b/src/CSFML/Audio/SoundStreamStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Audio/SoundStruct.hpp b/src/CSFML/Audio/SoundStruct.hpp
index a4a0e1d6..7bd6368d 100644
--- a/src/CSFML/Audio/SoundStruct.hpp
+++ b/src/CSFML/Audio/SoundStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/CallbackStream.hpp b/src/CSFML/CallbackStream.hpp
index dc484a6f..c95912b5 100644
--- a/src/CSFML/CallbackStream.hpp
+++ b/src/CSFML/CallbackStream.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/BlendMode.cpp b/src/CSFML/Graphics/BlendMode.cpp
index 82721b1e..9505c3c0 100644
--- a/src/CSFML/Graphics/BlendMode.cpp
+++ b/src/CSFML/Graphics/BlendMode.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/CircleShape.cpp b/src/CSFML/Graphics/CircleShape.cpp
index 32555f1e..240702d2 100644
--- a/src/CSFML/Graphics/CircleShape.cpp
+++ b/src/CSFML/Graphics/CircleShape.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/CircleShapeStruct.hpp b/src/CSFML/Graphics/CircleShapeStruct.hpp
index 815da52a..41b09555 100644
--- a/src/CSFML/Graphics/CircleShapeStruct.hpp
+++ b/src/CSFML/Graphics/CircleShapeStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/Color.cpp b/src/CSFML/Graphics/Color.cpp
index 26a4c744..240a765f 100644
--- a/src/CSFML/Graphics/Color.cpp
+++ b/src/CSFML/Graphics/Color.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/ConvertColor.hpp b/src/CSFML/Graphics/ConvertColor.hpp
index ce6a224c..4a363b3d 100644
--- a/src/CSFML/Graphics/ConvertColor.hpp
+++ b/src/CSFML/Graphics/ConvertColor.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/ConvertRect.hpp b/src/CSFML/Graphics/ConvertRect.hpp
index b0d6a9fa..4c52c1ee 100644
--- a/src/CSFML/Graphics/ConvertRect.hpp
+++ b/src/CSFML/Graphics/ConvertRect.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/ConvertRenderStates.hpp b/src/CSFML/Graphics/ConvertRenderStates.hpp
index d694d66d..e3e25a39 100644
--- a/src/CSFML/Graphics/ConvertRenderStates.hpp
+++ b/src/CSFML/Graphics/ConvertRenderStates.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/ConvertStencil.hpp b/src/CSFML/Graphics/ConvertStencil.hpp
index ee819e33..f5792c8f 100644
--- a/src/CSFML/Graphics/ConvertStencil.hpp
+++ b/src/CSFML/Graphics/ConvertStencil.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/ConvertTransform.hpp b/src/CSFML/Graphics/ConvertTransform.hpp
index 60572d94..89128521 100644
--- a/src/CSFML/Graphics/ConvertTransform.hpp
+++ b/src/CSFML/Graphics/ConvertTransform.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/ConvexShape.cpp b/src/CSFML/Graphics/ConvexShape.cpp
index 9216ad11..58093715 100644
--- a/src/CSFML/Graphics/ConvexShape.cpp
+++ b/src/CSFML/Graphics/ConvexShape.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/ConvexShapeStruct.hpp b/src/CSFML/Graphics/ConvexShapeStruct.hpp
index 3e54f276..b5d7ec6f 100644
--- a/src/CSFML/Graphics/ConvexShapeStruct.hpp
+++ b/src/CSFML/Graphics/ConvexShapeStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/Font.cpp b/src/CSFML/Graphics/Font.cpp
index 5e4d53c7..46529bff 100644
--- a/src/CSFML/Graphics/Font.cpp
+++ b/src/CSFML/Graphics/Font.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/FontStruct.hpp b/src/CSFML/Graphics/FontStruct.hpp
index 245b6897..80e1dab3 100644
--- a/src/CSFML/Graphics/FontStruct.hpp
+++ b/src/CSFML/Graphics/FontStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/Image.cpp b/src/CSFML/Graphics/Image.cpp
index fb625acd..0503f136 100644
--- a/src/CSFML/Graphics/Image.cpp
+++ b/src/CSFML/Graphics/Image.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/ImageStruct.hpp b/src/CSFML/Graphics/ImageStruct.hpp
index 0246f46f..697f764b 100644
--- a/src/CSFML/Graphics/ImageStruct.hpp
+++ b/src/CSFML/Graphics/ImageStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/Rect.cpp b/src/CSFML/Graphics/Rect.cpp
index b1e4db32..202d7655 100644
--- a/src/CSFML/Graphics/Rect.cpp
+++ b/src/CSFML/Graphics/Rect.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/RectangleShape.cpp b/src/CSFML/Graphics/RectangleShape.cpp
index df879ff4..9563e7c6 100644
--- a/src/CSFML/Graphics/RectangleShape.cpp
+++ b/src/CSFML/Graphics/RectangleShape.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/RectangleShapeStruct.hpp b/src/CSFML/Graphics/RectangleShapeStruct.hpp
index 55be7e89..19f963f8 100644
--- a/src/CSFML/Graphics/RectangleShapeStruct.hpp
+++ b/src/CSFML/Graphics/RectangleShapeStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/RenderStates.cpp b/src/CSFML/Graphics/RenderStates.cpp
index 3fe4a2f0..19214aa9 100644
--- a/src/CSFML/Graphics/RenderStates.cpp
+++ b/src/CSFML/Graphics/RenderStates.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/RenderTexture.cpp b/src/CSFML/Graphics/RenderTexture.cpp
index 32abcc7e..0855ac4d 100644
--- a/src/CSFML/Graphics/RenderTexture.cpp
+++ b/src/CSFML/Graphics/RenderTexture.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/RenderTextureStruct.hpp b/src/CSFML/Graphics/RenderTextureStruct.hpp
index 57c475b9..bb02467b 100644
--- a/src/CSFML/Graphics/RenderTextureStruct.hpp
+++ b/src/CSFML/Graphics/RenderTextureStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/RenderWindow.cpp b/src/CSFML/Graphics/RenderWindow.cpp
index a8743882..06ce05b3 100644
--- a/src/CSFML/Graphics/RenderWindow.cpp
+++ b/src/CSFML/Graphics/RenderWindow.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/RenderWindowStruct.hpp b/src/CSFML/Graphics/RenderWindowStruct.hpp
index d34ca3aa..64cfc57e 100644
--- a/src/CSFML/Graphics/RenderWindowStruct.hpp
+++ b/src/CSFML/Graphics/RenderWindowStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/Shader.cpp b/src/CSFML/Graphics/Shader.cpp
index 0abc3253..deb4f66c 100644
--- a/src/CSFML/Graphics/Shader.cpp
+++ b/src/CSFML/Graphics/Shader.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/ShaderStruct.hpp b/src/CSFML/Graphics/ShaderStruct.hpp
index 6576aae0..ce6bfdae 100644
--- a/src/CSFML/Graphics/ShaderStruct.hpp
+++ b/src/CSFML/Graphics/ShaderStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/Shape.cpp b/src/CSFML/Graphics/Shape.cpp
index 03eee8f9..243f2f25 100644
--- a/src/CSFML/Graphics/Shape.cpp
+++ b/src/CSFML/Graphics/Shape.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/ShapeStruct.hpp b/src/CSFML/Graphics/ShapeStruct.hpp
index 624a9dda..f6947286 100644
--- a/src/CSFML/Graphics/ShapeStruct.hpp
+++ b/src/CSFML/Graphics/ShapeStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/Sprite.cpp b/src/CSFML/Graphics/Sprite.cpp
index 78507b4d..363f1bf1 100644
--- a/src/CSFML/Graphics/Sprite.cpp
+++ b/src/CSFML/Graphics/Sprite.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/SpriteStruct.hpp b/src/CSFML/Graphics/SpriteStruct.hpp
index fb197d2e..8e3fbc7e 100644
--- a/src/CSFML/Graphics/SpriteStruct.hpp
+++ b/src/CSFML/Graphics/SpriteStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/StencilMode.cpp b/src/CSFML/Graphics/StencilMode.cpp
index b1ea4bc2..3da71399 100644
--- a/src/CSFML/Graphics/StencilMode.cpp
+++ b/src/CSFML/Graphics/StencilMode.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/Text.cpp b/src/CSFML/Graphics/Text.cpp
index 06fd6d9d..d838219e 100644
--- a/src/CSFML/Graphics/Text.cpp
+++ b/src/CSFML/Graphics/Text.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/TextStruct.hpp b/src/CSFML/Graphics/TextStruct.hpp
index 5829052c..628504a7 100644
--- a/src/CSFML/Graphics/TextStruct.hpp
+++ b/src/CSFML/Graphics/TextStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/Texture.cpp b/src/CSFML/Graphics/Texture.cpp
index b9f35922..3545759a 100644
--- a/src/CSFML/Graphics/Texture.cpp
+++ b/src/CSFML/Graphics/Texture.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/TextureStruct.hpp b/src/CSFML/Graphics/TextureStruct.hpp
index a69e481c..39363ccd 100644
--- a/src/CSFML/Graphics/TextureStruct.hpp
+++ b/src/CSFML/Graphics/TextureStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/Transform.cpp b/src/CSFML/Graphics/Transform.cpp
index e6de330d..e09109cf 100644
--- a/src/CSFML/Graphics/Transform.cpp
+++ b/src/CSFML/Graphics/Transform.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/Transformable.cpp b/src/CSFML/Graphics/Transformable.cpp
index 4329635c..3ba2e971 100644
--- a/src/CSFML/Graphics/Transformable.cpp
+++ b/src/CSFML/Graphics/Transformable.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/TransformableStruct.hpp b/src/CSFML/Graphics/TransformableStruct.hpp
index 562a9693..071f7001 100644
--- a/src/CSFML/Graphics/TransformableStruct.hpp
+++ b/src/CSFML/Graphics/TransformableStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/VertexArray.cpp b/src/CSFML/Graphics/VertexArray.cpp
index 9bce3715..db3a9947 100644
--- a/src/CSFML/Graphics/VertexArray.cpp
+++ b/src/CSFML/Graphics/VertexArray.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/VertexArrayStruct.hpp b/src/CSFML/Graphics/VertexArrayStruct.hpp
index 98ab139b..432ab4f4 100644
--- a/src/CSFML/Graphics/VertexArrayStruct.hpp
+++ b/src/CSFML/Graphics/VertexArrayStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/VertexBuffer.cpp b/src/CSFML/Graphics/VertexBuffer.cpp
index 67456434..90152c6c 100644
--- a/src/CSFML/Graphics/VertexBuffer.cpp
+++ b/src/CSFML/Graphics/VertexBuffer.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/VertexBufferStruct.hpp b/src/CSFML/Graphics/VertexBufferStruct.hpp
index fb5b0c99..af16eed0 100644
--- a/src/CSFML/Graphics/VertexBufferStruct.hpp
+++ b/src/CSFML/Graphics/VertexBufferStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/View.cpp b/src/CSFML/Graphics/View.cpp
index 76650240..e698d2fa 100644
--- a/src/CSFML/Graphics/View.cpp
+++ b/src/CSFML/Graphics/View.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Graphics/ViewStruct.hpp b/src/CSFML/Graphics/ViewStruct.hpp
index f1371776..1a788589 100644
--- a/src/CSFML/Graphics/ViewStruct.hpp
+++ b/src/CSFML/Graphics/ViewStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Main/SFML_Main.cpp b/src/CSFML/Main/SFML_Main.cpp
index d1f917d5..7b1eb24b 100644
--- a/src/CSFML/Main/SFML_Main.cpp
+++ b/src/CSFML/Main/SFML_Main.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Network/Ftp.cpp b/src/CSFML/Network/Ftp.cpp
index 33eeb89c..0cf64026 100644
--- a/src/CSFML/Network/Ftp.cpp
+++ b/src/CSFML/Network/Ftp.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Network/FtpStruct.hpp b/src/CSFML/Network/FtpStruct.hpp
index 5ae0ef0c..3119fa70 100644
--- a/src/CSFML/Network/FtpStruct.hpp
+++ b/src/CSFML/Network/FtpStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Network/Http.cpp b/src/CSFML/Network/Http.cpp
index 94c93a8e..ea5877af 100644
--- a/src/CSFML/Network/Http.cpp
+++ b/src/CSFML/Network/Http.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Network/HttpStruct.hpp b/src/CSFML/Network/HttpStruct.hpp
index cd148772..e9a70f40 100644
--- a/src/CSFML/Network/HttpStruct.hpp
+++ b/src/CSFML/Network/HttpStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Network/IpAddress.cpp b/src/CSFML/Network/IpAddress.cpp
index 2552de22..d48a66dc 100644
--- a/src/CSFML/Network/IpAddress.cpp
+++ b/src/CSFML/Network/IpAddress.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Network/Packet.cpp b/src/CSFML/Network/Packet.cpp
index 7c1a02eb..3d93b08d 100644
--- a/src/CSFML/Network/Packet.cpp
+++ b/src/CSFML/Network/Packet.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Network/PacketStruct.hpp b/src/CSFML/Network/PacketStruct.hpp
index 2fe12ee8..6ca67e0a 100644
--- a/src/CSFML/Network/PacketStruct.hpp
+++ b/src/CSFML/Network/PacketStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Network/SocketSelector.cpp b/src/CSFML/Network/SocketSelector.cpp
index af0e9a5f..9d4673df 100644
--- a/src/CSFML/Network/SocketSelector.cpp
+++ b/src/CSFML/Network/SocketSelector.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Network/SocketSelectorStruct.hpp b/src/CSFML/Network/SocketSelectorStruct.hpp
index ccc2ad1b..95e22f22 100644
--- a/src/CSFML/Network/SocketSelectorStruct.hpp
+++ b/src/CSFML/Network/SocketSelectorStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Network/TcpListener.cpp b/src/CSFML/Network/TcpListener.cpp
index 2682e541..a1d0318d 100644
--- a/src/CSFML/Network/TcpListener.cpp
+++ b/src/CSFML/Network/TcpListener.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Network/TcpListenerStruct.hpp b/src/CSFML/Network/TcpListenerStruct.hpp
index 383e9822..dffc67b8 100644
--- a/src/CSFML/Network/TcpListenerStruct.hpp
+++ b/src/CSFML/Network/TcpListenerStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Network/TcpSocket.cpp b/src/CSFML/Network/TcpSocket.cpp
index dd991015..599a83b7 100644
--- a/src/CSFML/Network/TcpSocket.cpp
+++ b/src/CSFML/Network/TcpSocket.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Network/TcpSocketStruct.hpp b/src/CSFML/Network/TcpSocketStruct.hpp
index b4d3a83f..f4c89087 100644
--- a/src/CSFML/Network/TcpSocketStruct.hpp
+++ b/src/CSFML/Network/TcpSocketStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Network/UdpSocket.cpp b/src/CSFML/Network/UdpSocket.cpp
index 4d383a30..05f1778c 100644
--- a/src/CSFML/Network/UdpSocket.cpp
+++ b/src/CSFML/Network/UdpSocket.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Network/UdpSocketStruct.hpp b/src/CSFML/Network/UdpSocketStruct.hpp
index 8bd06f44..adb64ef6 100644
--- a/src/CSFML/Network/UdpSocketStruct.hpp
+++ b/src/CSFML/Network/UdpSocketStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/System/Alloc.cpp b/src/CSFML/System/Alloc.cpp
index b8a00346..e30282f1 100644
--- a/src/CSFML/System/Alloc.cpp
+++ b/src/CSFML/System/Alloc.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/System/Buffer.cpp b/src/CSFML/System/Buffer.cpp
index a80aadcb..1b7d9e42 100644
--- a/src/CSFML/System/Buffer.cpp
+++ b/src/CSFML/System/Buffer.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/System/BufferStruct.hpp b/src/CSFML/System/BufferStruct.hpp
index f1803942..a588b155 100644
--- a/src/CSFML/System/BufferStruct.hpp
+++ b/src/CSFML/System/BufferStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/System/Clock.cpp b/src/CSFML/System/Clock.cpp
index b951691e..cba2421c 100644
--- a/src/CSFML/System/Clock.cpp
+++ b/src/CSFML/System/Clock.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/System/ClockStruct.hpp b/src/CSFML/System/ClockStruct.hpp
index aef147be..f0318c30 100644
--- a/src/CSFML/System/ClockStruct.hpp
+++ b/src/CSFML/System/ClockStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/System/ConvertVector2.hpp b/src/CSFML/System/ConvertVector2.hpp
index 45287c70..6953faa5 100644
--- a/src/CSFML/System/ConvertVector2.hpp
+++ b/src/CSFML/System/ConvertVector2.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/System/ConvertVector3.hpp b/src/CSFML/System/ConvertVector3.hpp
index c2a75bd6..8a8a094c 100644
--- a/src/CSFML/System/ConvertVector3.hpp
+++ b/src/CSFML/System/ConvertVector3.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/System/Sleep.cpp b/src/CSFML/System/Sleep.cpp
index 46d48822..78c38cd8 100644
--- a/src/CSFML/System/Sleep.cpp
+++ b/src/CSFML/System/Sleep.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/System/Time.cpp b/src/CSFML/System/Time.cpp
index d562a6a8..415116a4 100644
--- a/src/CSFML/System/Time.cpp
+++ b/src/CSFML/System/Time.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Window/Clipboard.cpp b/src/CSFML/Window/Clipboard.cpp
index 3ec5c6da..34c213ef 100644
--- a/src/CSFML/Window/Clipboard.cpp
+++ b/src/CSFML/Window/Clipboard.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Window/Context.cpp b/src/CSFML/Window/Context.cpp
index f682d2f1..c51c71fc 100644
--- a/src/CSFML/Window/Context.cpp
+++ b/src/CSFML/Window/Context.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Window/ContextStruct.hpp b/src/CSFML/Window/ContextStruct.hpp
index aaa11cef..54d51f65 100644
--- a/src/CSFML/Window/ContextStruct.hpp
+++ b/src/CSFML/Window/ContextStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Window/ConvertContextSettings.hpp b/src/CSFML/Window/ConvertContextSettings.hpp
index 0abbb617..405d60c3 100644
--- a/src/CSFML/Window/ConvertContextSettings.hpp
+++ b/src/CSFML/Window/ConvertContextSettings.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Window/ConvertEvent.hpp b/src/CSFML/Window/ConvertEvent.hpp
index fcf5ed41..a061613d 100644
--- a/src/CSFML/Window/ConvertEvent.hpp
+++ b/src/CSFML/Window/ConvertEvent.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Window/ConvertVideoMode.hpp b/src/CSFML/Window/ConvertVideoMode.hpp
index 1d127240..f0c3ccdf 100644
--- a/src/CSFML/Window/ConvertVideoMode.hpp
+++ b/src/CSFML/Window/ConvertVideoMode.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Window/Cursor.cpp b/src/CSFML/Window/Cursor.cpp
index 1d6e5a31..c70cca0e 100644
--- a/src/CSFML/Window/Cursor.cpp
+++ b/src/CSFML/Window/Cursor.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Window/CursorStruct.hpp b/src/CSFML/Window/CursorStruct.hpp
index 332d3c49..9abc02f3 100644
--- a/src/CSFML/Window/CursorStruct.hpp
+++ b/src/CSFML/Window/CursorStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Window/Joystick.cpp b/src/CSFML/Window/Joystick.cpp
index 624389f1..533a255e 100644
--- a/src/CSFML/Window/Joystick.cpp
+++ b/src/CSFML/Window/Joystick.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Window/Keyboard.cpp b/src/CSFML/Window/Keyboard.cpp
index 49c33889..1003f7cb 100644
--- a/src/CSFML/Window/Keyboard.cpp
+++ b/src/CSFML/Window/Keyboard.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Window/Mouse.cpp b/src/CSFML/Window/Mouse.cpp
index 256f3cf8..4d5bdb86 100644
--- a/src/CSFML/Window/Mouse.cpp
+++ b/src/CSFML/Window/Mouse.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Window/Sensor.cpp b/src/CSFML/Window/Sensor.cpp
index 0c52d8cd..4439e49e 100644
--- a/src/CSFML/Window/Sensor.cpp
+++ b/src/CSFML/Window/Sensor.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Window/Touch.cpp b/src/CSFML/Window/Touch.cpp
index 73c47127..2d789573 100644
--- a/src/CSFML/Window/Touch.cpp
+++ b/src/CSFML/Window/Touch.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Window/VideoMode.cpp b/src/CSFML/Window/VideoMode.cpp
index 5acd7aa2..4fb5f3eb 100644
--- a/src/CSFML/Window/VideoMode.cpp
+++ b/src/CSFML/Window/VideoMode.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Window/Vulkan.cpp b/src/CSFML/Window/Vulkan.cpp
index 81689957..9f15722d 100644
--- a/src/CSFML/Window/Vulkan.cpp
+++ b/src/CSFML/Window/Vulkan.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Window/Window.cpp b/src/CSFML/Window/Window.cpp
index d0d50f8d..5939a4b7 100644
--- a/src/CSFML/Window/Window.cpp
+++ b/src/CSFML/Window/Window.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Window/WindowBase.cpp b/src/CSFML/Window/WindowBase.cpp
index d72a27c9..e4c4a8fe 100644
--- a/src/CSFML/Window/WindowBase.cpp
+++ b/src/CSFML/Window/WindowBase.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Window/WindowBaseStruct.hpp b/src/CSFML/Window/WindowBaseStruct.hpp
index c4c291cb..dbab8423 100644
--- a/src/CSFML/Window/WindowBaseStruct.hpp
+++ b/src/CSFML/Window/WindowBaseStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/src/CSFML/Window/WindowStruct.hpp b/src/CSFML/Window/WindowStruct.hpp
index 13628712..1818f25f 100644
--- a/src/CSFML/Window/WindowStruct.hpp
+++ b/src/CSFML/Window/WindowStruct.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2025 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2026 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
diff --git a/tools/nuget/CSFML/CSFML.csproj b/tools/nuget/CSFML/CSFML.csproj
index 1e141318..6b2d69f3 100644
--- a/tools/nuget/CSFML/CSFML.csproj
+++ b/tools/nuget/CSFML/CSFML.csproj
@@ -4,7 +4,7 @@
netstandard2.0
true
- 3.0.0-rc.3
+ 3.0.0
Laurent Gomila
sfml csfml
Copyright © Laurent Gomila
diff --git a/tools/nuget/README.md b/tools/nuget/README.md
index f220fdc8..d2f9563d 100644
--- a/tools/nuget/README.md
+++ b/tools/nuget/README.md
@@ -17,21 +17,20 @@ All build scripts follow the same routine:
* `build.linux.sh`
* A [Bash](https://www.gnu.org/software/bash/) script to build libraries for a generic Linux distribution. The [Runtime Identifier](https://docs.microsoft.com/en-us/dotnet/core/rid-catalog) of the linux distribution must be specified as a parameter to the script.
- This generic script doesn't install any of its dependencies. As such, you must have cmake and make installed, as well as all [SFML Dependencies](https://www.sfml-dev.org/tutorials/2.6/compile-with-cmake.php#installing-dependencies) available to cmake.
+ This generic script doesn't install any of its dependencies. As such, you must have cmake and make installed, as well as all [SFML Dependencies](https://www.sfml-dev.org/tutorials/3.0/getting-started/build-from-source/#installing-dependencies) available to cmake.
* `build.macos.sh`
* A [Bash](https://www.gnu.org/software/bash/) script to build libraries for macOS. The [Runtime Identifier](https://docs.microsoft.com/en-us/dotnet/core/rid-catalog#macos-rids) of the macOS distribution must be specified as parameter to the script. Latest macOS SDKs can be downloaded [here](https://github.com/phracker/MacOSX-SDKs/releases).
Currently supported RIDs are:
- * `osx-x64` (uses macOS SDK 10.12)
- * `osx.11.0-x64`
- * `osx.11.0-arm64` (requires SFML 2.6+)
+ * `osx-x64`
+ * `osx-arm64` (requires SFML 2.6+)
* `build.docker.sh`, `build.docker.ps1`
* A script to build the native libraries for a Linux distribution in a Docker container. If no RID is specified as a parameter, all supported RIDs will be built. Currently, the supported RIDs are:
* `linux-x64` (uses Ubuntu)
* `linux-musl-x64` (uses Apline)
* `linux-arm` (uses Arm32v7 Ubuntu)
- * `linux-arm64` (uses Arm64v8 Ubuntu )
+ * `linux-arm64` (uses Arm64v8 Ubuntu)
* `alpine-x64`
* `debian-x64` (compatible with derivatives such as Ubuntu and Linux Mint)
* `ubuntu-x64`
diff --git a/tools/nuget/build.linux.sh b/tools/nuget/build.linux.sh
index 843decf3..c2db8915 100755
--- a/tools/nuget/build.linux.sh
+++ b/tools/nuget/build.linux.sh
@@ -34,13 +34,29 @@ set -e
# =================================================== #
if [[ -z "$1" ]]; then
- echo "Please specify the platform Runtime Identifier as an argument to this script"
+ echo "Usage: $0 [ ]"
+ echo "Example: $0 linux-arm arm-linux-gnueabihf-g++ arm-linux-gnueabihf-gcc"
exit 1
fi
echo "Please note that all SFML dependencies must be installed and available to cmake. SFML does not ship with its linux dependencies."
RID="$1"
+CXX_COMPILER="$2"
+C_COMPILER="$3"
+
+if [[ -n "$CXX_COMPILER" || -n "$C_COMPILER" ]]; then
+ if [[ -z "$CXX_COMPILER" || -z "$C_COMPILER" ]]; then
+ echo "When overriding compilers, specify both C++ and C compilers."
+ exit 1
+ fi
+fi
+
+CMAKE_COMPILER_ARGS=()
+if [[ -n "$CXX_COMPILER" ]]; then
+ CMAKE_COMPILER_ARGS+=("-DCMAKE_CXX_COMPILER=$CXX_COMPILER" "-DCMAKE_C_COMPILER=$C_COMPILER")
+ echo "Using custom compilers: CXX=$CXX_COMPILER, CC=$C_COMPILER"
+fi
SFMLBranch="3.0.2" # The branch or tag of the SFML repository to be cloned
CSFMLDir="$(realpath ../../)" # The directory of the source code of CSFML
@@ -87,7 +103,7 @@ mkdir -p lib
SFMLLibDir="$(realpath lib)"
cmake -E env LDFLAGS="-z origin" \
- cmake \
+ cmake "${CMAKE_COMPILER_ARGS[@]}" \
'-DBUILD_SHARED_LIBS=ON' \
'-DCMAKE_BUILD_TYPE=Release' \
"-DCMAKE_INSTALL_PREFIX=$SFMLLibDir" \
@@ -114,7 +130,7 @@ mkdir -p lib
CSFMLLibDir="$(realpath lib)" # The directory that contains the final CSFML libraries. Used to copy the result into SFML.Net
cmake -E env LDFLAGS="-z origin" \
- cmake \
+ cmake "${CMAKE_COMPILER_ARGS[@]}" \
"-DSFML_ROOT=$SFMLLibDir" \
'-DBUILD_SHARED_LIBS=ON' \
'-DCMAKE_BUILD_TYPE=Release' \
@@ -145,7 +161,7 @@ copymodule()
# SFML.Net only searches for the name with common pre- and suffixes
# As such we need to ship e.g. libcsfml-graphics.so
# But the CSFML libs will look for the major.minor version
- # As such we also need to ship e.g. libcsfml-graphics.so.2.6
+ # As such we also need to ship e.g. libcsfml-graphics.so.3.0
# Unfortunately NuGet package don't support symlinks: https://github.com/NuGet/Home/issues/10734
# For SFML, we can just ship one version that CSFML will be looking for
cp "$SFMLLibDir/libsfml-$MODULE.so.$SFMLMajorMinor" "$OutDir"
diff --git a/tools/nuget/build.macos.sh b/tools/nuget/build.macos.sh
index eb3303d9..cfa76fc8 100755
--- a/tools/nuget/build.macos.sh
+++ b/tools/nuget/build.macos.sh
@@ -95,7 +95,7 @@ if [ $RID == "osx-x64" ]; then
elif [ $RID == "osx-arm64" ]; then
ARCHITECTURE="arm64"
- echo "Note: arm64 is only supported with SFML 2.6"
+ echo "Note: arm64 is only supported starting with SFML 2.6"
else
echo "Unsupported RID provided. Use 'osx-x64', 'osx-arm64'"
exit 1
@@ -168,7 +168,7 @@ copymodule()
# SFML.Net only searches for the name with common pre- and suffixes
# As such we need to ship e.g. libcsfml-graphics.dylib
# But the CSFML libs will look for the major.minor version
- # As such we also need to ship e.g. libcsfml-graphics.2.6.dylib
+ # As such we also need to ship e.g. libcsfml-graphics.3.0.dylib
# Unfortunately NuGet package don't support symlinks: https://github.com/NuGet/Home/issues/10734
# For SFML, we can just ship one version that CSFML will be looking for
cp "$SFMLLibDir/libsfml-$MODULE.$SFMLMajorMinor.dylib" "$OutDir"