diff --git a/.github/workflows/build-artifact.yml b/.github/workflows/build-artifact.yml index 21757de1..d9a7d907 100644 --- a/.github/workflows/build-artifact.yml +++ b/.github/workflows/build-artifact.yml @@ -10,7 +10,7 @@ jobs: platform: [x64, Win32] configuration: [Release, Debug, ASAN-Release, ASAN-Debug] steps: - - uses: actions/checkout@master + - uses: actions/checkout@v4 with: submodules: "recursive" fetch-depth: 0 @@ -28,7 +28,7 @@ jobs: if %ERRORLEVEL%==1 exit %ERRORLEVEL% call release.bat ${{ matrix.configuration }} ${{ matrix.platform }} ${{ env.commithash }}_${{ github.run_id }} - name: Upload binaries - uses: actions/upload-artifact@master + uses: actions/upload-artifact@v4 with: name: Dn-FamiTracker_${{ env.commithash }}_${{ github.run_id }}_${{ matrix.platform }}_${{ matrix.configuration }} path: distribute/*_${{ matrix.platform }}_${{ matrix.configuration }}.7z diff --git a/.github/workflows/build-release-artifact.yml b/.github/workflows/build-release-artifact.yml index 4dc3572f..3175e529 100644 --- a/.github/workflows/build-release-artifact.yml +++ b/.github/workflows/build-release-artifact.yml @@ -3,6 +3,8 @@ on: push: tags: - "*" +env: + commithash: "" jobs: build-matrix-publish: runs-on: windows-2022 @@ -11,13 +13,16 @@ jobs: platform: [x64, Win32] # configuration is Release only steps: - - uses: actions/checkout@master + - uses: actions/checkout@v4 with: submodules: "recursive" fetch-depth: 0 - uses: r-lib/actions/setup-pandoc@v2 with: pandoc-version: '3.1.8' + - name: Set commit hash variable + shell: powershell + run: echo "commithash=$(git describe --tags)" >> $env:GITHUB_ENV - name: Build program shell: cmd run: | @@ -26,22 +31,27 @@ jobs: if %ERRORLEVEL%==1 exit %ERRORLEVEL% call release.bat Release ${{ matrix.platform }} - name: Upload binaries - uses: actions/upload-artifact@master + uses: actions/upload-artifact@v4 with: + name: Dn-FamiTracker_${{ env.commithash }}_${{ github.run_id }}_${{ matrix.platform }} path: distribute/*_${{ matrix.platform }}_Release.7z publish-build: needs: build-matrix-publish runs-on: windows-2022 steps: - - uses: actions/download-artifact@master - name: Download binaries - shell: powershell - run: ls -R + uses: actions/download-artifact@v4 + with: + path: Dn-FamiTracker_artifacts + pattern: Dn-FamiTracker_* + merge-multiple: true + shell: powershell + - run: ls -R - name: Upload release - uses: marvinpinto/action-automatic-releases@master + uses: marvinpinto/action-automatic-releases@v1.2.1 with: repo_token: "${{ secrets.GITHUB_TOKEN }}" draft: true prerelease: false automatic_release_tag: draft - files: artifact/*.7z + files: Dn-FamiTracker_artifacts/*.7z diff --git a/Dn-FamiTracker.rc b/Dn-FamiTracker.rc index dea5bc4c..3edd92d4 100644 --- a/Dn-FamiTracker.rc +++ b/Dn-FamiTracker.rc @@ -535,8 +535,8 @@ END // VS_VERSION_INFO VERSIONINFO - FILEVERSION 0,5,0,1 - PRODUCTVERSION 0,5,0,1 + FILEVERSION 0,5,0,2 + PRODUCTVERSION 0,5,0,2 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -553,12 +553,12 @@ BEGIN BEGIN VALUE "CompanyName", "Dn Programming Core Management" VALUE "FileDescription", "Dn-FamiTracker, Extension of FamiTracker" - VALUE "FileVersion", "0.5.0.1" + VALUE "FileVersion", "0.5.0.2" VALUE "InternalName", "Dn-FamiTracker.exe" - VALUE "LegalCopyright", "(c) jsr 2005-2020, HertzDevil 2014-2018, Dn Programming Core Management 2020-2023. All rights reserved." + VALUE "LegalCopyright", "(c) jsr 2005-2020, HertzDevil 2014-2018, Dn Programming Core Management 2020-2024. All rights reserved." VALUE "OriginalFilename", "Dn-FamiTracker.exe" VALUE "ProductName", "Dn-FamiTracker" - VALUE "ProductVersion", "0.5.0.1" + VALUE "ProductVersion", "0.5.0.2" END END BLOCK "VarFileInfo" @@ -1105,7 +1105,7 @@ BEGIN ICON IDR_MAINFRAME,IDC_ICON_STATIC,11,58,20,20,SS_REALSIZEIMAGE LTEXT "Dn-FamiTracker",IDC_ABOUT1,54,58,219,11,SS_NOPREFIX LTEXT "Extension of 0CC-FamiTracker",IDC_ABOUT2,54,72,167,8,SS_NOPREFIX - LTEXT "Copyright (C) 2005 - 2020 jsr, 2014 - 2018 HertzDevil,\n2020 - 2023 Dn Programming Core Management.",IDC_ABOUT3,54,84,215,16 + LTEXT "Copyright (C) 2005 - 2020 jsr, 2014 - 2018 HertzDevil,\n2020 - 2024 Dn Programming Core Management.",IDC_ABOUT3,54,84,215,16 LTEXT "Web:",IDC_STATIC,54,107,24,9 LTEXT "Dn-FamiTracker issue tracker",IDC_BUG,84,134,194,9,SS_NOTIFY LTEXT "All comments and feedback are welcome\nGreets to everyone who has helped spread information about this mod or contributed with bug reports and suggestions!",IDC_STATIC,54,150,224,26 diff --git a/Dn-help b/Dn-help index a41c9608..bed73f83 160000 --- a/Dn-help +++ b/Dn-help @@ -1 +1 @@ -Subproject commit a41c9608e4aa9b64c2ec74a4b07236147684ddb9 +Subproject commit bed73f83d2cd3b3802c7092fd4c05380c28bd09c diff --git a/LICENSE.txt b/LICENSE.txt index 46caf1ef..262db57d 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -22,7 +22,7 @@ The texts for the MIT-0 and GPL v2 licenses are listed below: MIT No Attribution -Copyright 2022 D.P.C.M. +Copyright 2024 D.P.C.M. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/README.md b/README.md index 4bbfaca2..9e406411 100644 --- a/README.md +++ b/README.md @@ -32,9 +32,15 @@ Notice: Due to delayed Appveyor reintegration, builds for commits `dc4c9e8` to ` Notice: Due to delayed branch renaming, builds for commits `bc46c86` to `a591d15` are not available. -## License +## Licenses -The application and the source code are distributed under the GNU GPL 2 license or any later version, but depends on FDS and N163 sound emulation only under the GPL v3. The original NSF driver source code is unlicensed. 0CC FT NSF driver changes are licensed under GPL v2. Dn-FT NSF driver changes are licensed under MIT-0. +The application and the source code are distributed under the GNU GPL 2 license or any later version, but depends on FDS and N163 sound emulation only under the GPL v3. + +The original NSF driver source code is unlicensed. + +0CC FT NSF driver changes are licensed under GPL v2. + +Dn-FT NSF driver changes are licensed under MIT-0. ## See also: diff --git a/Source/APU/2A03.cpp b/Source/APU/2A03.cpp index 71de9cc2..f7b4dafd 100644 --- a/Source/APU/2A03.cpp +++ b/Source/APU/2A03.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/2A03.h b/Source/APU/2A03.h index 38a03586..6d67a408 100644 --- a/Source/APU/2A03.h +++ b/Source/APU/2A03.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/2A03Chan.h b/Source/APU/2A03Chan.h index 0a667df0..78b16570 100644 --- a/Source/APU/2A03Chan.h +++ b/Source/APU/2A03Chan.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/APU.cpp b/Source/APU/APU.cpp index 6720b08c..08e75057 100644 --- a/Source/APU/APU.cpp +++ b/Source/APU/APU.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/APU.h b/Source/APU/APU.h index 633d34df..1162cb60 100644 --- a/Source/APU/APU.h +++ b/Source/APU/APU.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/Channel.h b/Source/APU/Channel.h index 69f432c0..cca6fe06 100644 --- a/Source/APU/Channel.h +++ b/Source/APU/Channel.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/FDS.cpp b/Source/APU/FDS.cpp index 9a8451c5..485a4752 100644 --- a/Source/APU/FDS.cpp +++ b/Source/APU/FDS.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/FDS.h b/Source/APU/FDS.h index ca739f86..fbf25d06 100644 --- a/Source/APU/FDS.h +++ b/Source/APU/FDS.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/MMC5.cpp b/Source/APU/MMC5.cpp index 025fae5f..d545886f 100644 --- a/Source/APU/MMC5.cpp +++ b/Source/APU/MMC5.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/MMC5.h b/Source/APU/MMC5.h index e4347525..6715cd56 100644 --- a/Source/APU/MMC5.h +++ b/Source/APU/MMC5.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/Mixer.cpp b/Source/APU/Mixer.cpp index 37f2885d..dc40c6cd 100644 --- a/Source/APU/Mixer.cpp +++ b/Source/APU/Mixer.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/Mixer.h b/Source/APU/Mixer.h index 6297c18e..fe52abae 100644 --- a/Source/APU/Mixer.h +++ b/Source/APU/Mixer.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/N163.cpp b/Source/APU/N163.cpp index 6788d2e4..c76c36d3 100644 --- a/Source/APU/N163.cpp +++ b/Source/APU/N163.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/N163.h b/Source/APU/N163.h index d12a9891..9ee55c32 100644 --- a/Source/APU/N163.h +++ b/Source/APU/N163.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/S5B.cpp b/Source/APU/S5B.cpp index b3b8a7af..bbaff643 100644 --- a/Source/APU/S5B.cpp +++ b/Source/APU/S5B.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/S5B.h b/Source/APU/S5B.h index 0fd9c201..90fc39c8 100644 --- a/Source/APU/S5B.h +++ b/Source/APU/S5B.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/SoundChip.cpp b/Source/APU/SoundChip.cpp index e729d21c..7d8f4cd7 100644 --- a/Source/APU/SoundChip.cpp +++ b/Source/APU/SoundChip.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/SoundChip.h b/Source/APU/SoundChip.h index 8c65bf47..c2887dd7 100644 --- a/Source/APU/SoundChip.h +++ b/Source/APU/SoundChip.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/SoundChip2.cpp b/Source/APU/SoundChip2.cpp index e062ed13..9719dbeb 100644 --- a/Source/APU/SoundChip2.cpp +++ b/Source/APU/SoundChip2.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/SoundChip2.h b/Source/APU/SoundChip2.h index ec8f49be..8c392411 100644 --- a/Source/APU/SoundChip2.h +++ b/Source/APU/SoundChip2.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/Square.cpp b/Source/APU/Square.cpp index e9bf1fd5..fe04c431 100644 --- a/Source/APU/Square.cpp +++ b/Source/APU/Square.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/Square.h b/Source/APU/Square.h index abb82807..f4d8abaf 100644 --- a/Source/APU/Square.h +++ b/Source/APU/Square.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/Types.h b/Source/APU/Types.h index 4b6da565..205c2466 100644 --- a/Source/APU/Types.h +++ b/Source/APU/Types.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/VRC6.cpp b/Source/APU/VRC6.cpp index 110a77c1..3b033a39 100644 --- a/Source/APU/VRC6.cpp +++ b/Source/APU/VRC6.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/VRC6.h b/Source/APU/VRC6.h index 7df7f383..b789ac96 100644 --- a/Source/APU/VRC6.h +++ b/Source/APU/VRC6.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/VRC7.cpp b/Source/APU/VRC7.cpp index b86b80f8..e1bd1a8f 100644 --- a/Source/APU/VRC7.cpp +++ b/Source/APU/VRC7.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/APU/VRC7.h b/Source/APU/VRC7.h index 27c9b551..a12af971 100644 --- a/Source/APU/VRC7.h +++ b/Source/APU/VRC7.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/AboutDlg.cpp b/Source/AboutDlg.cpp index 6b7b28fb..17c40800 100644 --- a/Source/AboutDlg.cpp +++ b/Source/AboutDlg.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by @@ -169,7 +169,7 @@ BOOL CAboutDlg::OnInitDialog() _T("- Sunsoft 5B information in manual by forple\r\n") // // !! _T("- Additional manual information by Persune\r\n") // // !! _T("- Toolbar icons are made by ilkke\r\n") - _T("- Dn-FT icon design by Accuracy\r\n") // // !! + _T("- Dn-FT icon design by Pale Moon\r\n") // // !! _T("- DPCM import resampler by Jarhmander\r\n") _T("- DPCM sample bit order reverser mod by Persune\r\n") // // !! _T("- Module text import/export by rainwarrior")); // // // diff --git a/Source/AboutDlg.h b/Source/AboutDlg.h index ff7457c9..1efc9f6c 100644 --- a/Source/AboutDlg.h +++ b/Source/AboutDlg.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Accelerator.cpp b/Source/Accelerator.cpp index 292dd0a6..4ab7a181 100644 --- a/Source/Accelerator.cpp +++ b/Source/Accelerator.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Accelerator.h b/Source/Accelerator.h index f51a7b23..4cfd82e5 100644 --- a/Source/Accelerator.h +++ b/Source/Accelerator.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Action.cpp b/Source/Action.cpp index 1da72da2..dea0c5fe 100644 --- a/Source/Action.cpp +++ b/Source/Action.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Action.h b/Source/Action.h index ff34cd67..2d392ce2 100644 --- a/Source/Action.h +++ b/Source/Action.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Bookmark.cpp b/Source/Bookmark.cpp index ad27a6ff..3ced6047 100644 --- a/Source/Bookmark.cpp +++ b/Source/Bookmark.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Bookmark.h b/Source/Bookmark.h index 5c38367e..45added7 100644 --- a/Source/Bookmark.h +++ b/Source/Bookmark.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/BookmarkCollection.cpp b/Source/BookmarkCollection.cpp index e03c2e1c..fd0005cc 100644 --- a/Source/BookmarkCollection.cpp +++ b/Source/BookmarkCollection.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/BookmarkCollection.h b/Source/BookmarkCollection.h index dfaf2e65..42f51454 100644 --- a/Source/BookmarkCollection.h +++ b/Source/BookmarkCollection.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/BookmarkDlg.cpp b/Source/BookmarkDlg.cpp index b9464818..d8ed8e43 100644 --- a/Source/BookmarkDlg.cpp +++ b/Source/BookmarkDlg.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/BookmarkDlg.h b/Source/BookmarkDlg.h index 29e5f057..8f1f4378 100644 --- a/Source/BookmarkDlg.h +++ b/Source/BookmarkDlg.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/BookmarkManager.cpp b/Source/BookmarkManager.cpp index a48741cf..85dd7280 100644 --- a/Source/BookmarkManager.cpp +++ b/Source/BookmarkManager.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/BookmarkManager.h b/Source/BookmarkManager.h index 2ee4333f..7afc155a 100644 --- a/Source/BookmarkManager.h +++ b/Source/BookmarkManager.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChannelFactory.cpp b/Source/ChannelFactory.cpp index 1a57e62a..2605e3fe 100644 --- a/Source/ChannelFactory.cpp +++ b/Source/ChannelFactory.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChannelFactory.h b/Source/ChannelFactory.h index 01b65928..44a4536a 100644 --- a/Source/ChannelFactory.h +++ b/Source/ChannelFactory.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChannelHandler.cpp b/Source/ChannelHandler.cpp index 6b3906bb..4446eeea 100644 --- a/Source/ChannelHandler.cpp +++ b/Source/ChannelHandler.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChannelHandler.h b/Source/ChannelHandler.h index 89639758..9181a5bf 100644 --- a/Source/ChannelHandler.h +++ b/Source/ChannelHandler.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChannelHandlerInterface.h b/Source/ChannelHandlerInterface.h index 24ba8736..61a144d3 100644 --- a/Source/ChannelHandlerInterface.h +++ b/Source/ChannelHandlerInterface.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChannelMap.cpp b/Source/ChannelMap.cpp index 9a299f9c..00f9aac3 100644 --- a/Source/ChannelMap.cpp +++ b/Source/ChannelMap.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChannelMap.h b/Source/ChannelMap.h index 2c493c99..7583858c 100644 --- a/Source/ChannelMap.h +++ b/Source/ChannelMap.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChannelState.cpp b/Source/ChannelState.cpp index 9d6107dc..a4077e0c 100644 --- a/Source/ChannelState.cpp +++ b/Source/ChannelState.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChannelState.h b/Source/ChannelState.h index a8330bcd..34d7b5de 100644 --- a/Source/ChannelState.h +++ b/Source/ChannelState.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Channels2A03.cpp b/Source/Channels2A03.cpp index 368a08c6..dad94689 100644 --- a/Source/Channels2A03.cpp +++ b/Source/Channels2A03.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Channels2A03.h b/Source/Channels2A03.h index 36929634..e859ca52 100644 --- a/Source/Channels2A03.h +++ b/Source/Channels2A03.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChannelsDlg.cpp b/Source/ChannelsDlg.cpp index 7b13a0ec..e342ae3a 100644 --- a/Source/ChannelsDlg.cpp +++ b/Source/ChannelsDlg.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChannelsDlg.h b/Source/ChannelsDlg.h index 7335f266..6c90021a 100644 --- a/Source/ChannelsDlg.h +++ b/Source/ChannelsDlg.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChannelsFDS.cpp b/Source/ChannelsFDS.cpp index 7035a593..46b7d614 100644 --- a/Source/ChannelsFDS.cpp +++ b/Source/ChannelsFDS.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChannelsFDS.h b/Source/ChannelsFDS.h index 78e58a03..6769d7c7 100644 --- a/Source/ChannelsFDS.h +++ b/Source/ChannelsFDS.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChannelsMMC5.cpp b/Source/ChannelsMMC5.cpp index 9058bac0..7e0eafb3 100644 --- a/Source/ChannelsMMC5.cpp +++ b/Source/ChannelsMMC5.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChannelsMMC5.h b/Source/ChannelsMMC5.h index 42a82bf8..e0af1e11 100644 --- a/Source/ChannelsMMC5.h +++ b/Source/ChannelsMMC5.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChannelsN163.cpp b/Source/ChannelsN163.cpp index 88845021..fb8ad5ad 100644 --- a/Source/ChannelsN163.cpp +++ b/Source/ChannelsN163.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChannelsN163.h b/Source/ChannelsN163.h index 1cfc41df..96de5c44 100644 --- a/Source/ChannelsN163.h +++ b/Source/ChannelsN163.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChannelsS5B.cpp b/Source/ChannelsS5B.cpp index 6f6f88e4..6f5b20e2 100644 --- a/Source/ChannelsS5B.cpp +++ b/Source/ChannelsS5B.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChannelsS5B.h b/Source/ChannelsS5B.h index 79531e99..468d344e 100644 --- a/Source/ChannelsS5B.h +++ b/Source/ChannelsS5B.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChannelsVRC6.cpp b/Source/ChannelsVRC6.cpp index 6a461e0b..a8cbfe6b 100644 --- a/Source/ChannelsVRC6.cpp +++ b/Source/ChannelsVRC6.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChannelsVRC6.h b/Source/ChannelsVRC6.h index 7bff8dfb..857586f2 100644 --- a/Source/ChannelsVRC6.h +++ b/Source/ChannelsVRC6.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChannelsVRC7.cpp b/Source/ChannelsVRC7.cpp index 755fca52..968f7d4e 100644 --- a/Source/ChannelsVRC7.cpp +++ b/Source/ChannelsVRC7.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChannelsVRC7.h b/Source/ChannelsVRC7.h index 1697035d..526936ae 100644 --- a/Source/ChannelsVRC7.h +++ b/Source/ChannelsVRC7.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Chunk.cpp b/Source/Chunk.cpp index 2600c751..2050e26a 100644 --- a/Source/Chunk.cpp +++ b/Source/Chunk.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Chunk.h b/Source/Chunk.h index b9ca2b31..ddf781b7 100644 --- a/Source/Chunk.h +++ b/Source/Chunk.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChunkRenderBinary.cpp b/Source/ChunkRenderBinary.cpp index abd5dec9..5227dda9 100644 --- a/Source/ChunkRenderBinary.cpp +++ b/Source/ChunkRenderBinary.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChunkRenderBinary.h b/Source/ChunkRenderBinary.h index 3fb97701..127b1347 100644 --- a/Source/ChunkRenderBinary.h +++ b/Source/ChunkRenderBinary.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChunkRenderText.cpp b/Source/ChunkRenderText.cpp index 94ffe70b..5e87e933 100644 --- a/Source/ChunkRenderText.cpp +++ b/Source/ChunkRenderText.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ChunkRenderText.h b/Source/ChunkRenderText.h index 84699049..c3db454a 100644 --- a/Source/ChunkRenderText.h +++ b/Source/ChunkRenderText.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Clipboard.cpp b/Source/Clipboard.cpp index afdccf2d..d2213753 100644 --- a/Source/Clipboard.cpp +++ b/Source/Clipboard.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Clipboard.h b/Source/Clipboard.h index 6919ba40..738e0240 100644 --- a/Source/Clipboard.h +++ b/Source/Clipboard.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ColorScheme.h b/Source/ColorScheme.h index dd66b38c..b4543838 100644 --- a/Source/ColorScheme.h +++ b/Source/ColorScheme.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/CommandLineExport.cpp b/Source/CommandLineExport.cpp index 16a6184a..c1ff6a8b 100644 --- a/Source/CommandLineExport.cpp +++ b/Source/CommandLineExport.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/CommandLineExport.h b/Source/CommandLineExport.h index 093d72ae..354a4592 100644 --- a/Source/CommandLineExport.h +++ b/Source/CommandLineExport.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/CommentsDlg.cpp b/Source/CommentsDlg.cpp index 455435cf..5622fef4 100644 --- a/Source/CommentsDlg.cpp +++ b/Source/CommentsDlg.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/CommentsDlg.h b/Source/CommentsDlg.h index e650fcee..7fe3fdea 100644 --- a/Source/CommentsDlg.h +++ b/Source/CommentsDlg.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Common.h b/Source/Common.h index a16f3404..f22dc8e9 100644 --- a/Source/Common.h +++ b/Source/Common.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Compiler.cpp b/Source/Compiler.cpp index 2c8ac43c..93953e4f 100644 --- a/Source/Compiler.cpp +++ b/Source/Compiler.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Compiler.h b/Source/Compiler.h index 790e8b42..d0614c60 100644 --- a/Source/Compiler.h +++ b/Source/Compiler.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/CompoundAction.cpp b/Source/CompoundAction.cpp index 8b3f61c6..de9b89c5 100644 --- a/Source/CompoundAction.cpp +++ b/Source/CompoundAction.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/CompoundAction.h b/Source/CompoundAction.h index 02cc8ee1..b702d078 100644 --- a/Source/CompoundAction.h +++ b/Source/CompoundAction.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ConfigAppearance.cpp b/Source/ConfigAppearance.cpp index 64dcc469..75648dd8 100644 --- a/Source/ConfigAppearance.cpp +++ b/Source/ConfigAppearance.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ConfigAppearance.h b/Source/ConfigAppearance.h index 12edc7b9..a7d35d52 100644 --- a/Source/ConfigAppearance.h +++ b/Source/ConfigAppearance.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ConfigEmulation.cpp b/Source/ConfigEmulation.cpp index edb23bea..b85d2473 100644 --- a/Source/ConfigEmulation.cpp +++ b/Source/ConfigEmulation.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ConfigEmulation.h b/Source/ConfigEmulation.h index 001ac56c..1e5a37f0 100644 --- a/Source/ConfigEmulation.h +++ b/Source/ConfigEmulation.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ConfigGUI.cpp b/Source/ConfigGUI.cpp index 7585cab1..9849b9f7 100644 --- a/Source/ConfigGUI.cpp +++ b/Source/ConfigGUI.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ConfigGUI.h b/Source/ConfigGUI.h index f2c7d63d..7d8194b2 100644 --- a/Source/ConfigGUI.h +++ b/Source/ConfigGUI.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ConfigGeneral.cpp b/Source/ConfigGeneral.cpp index e5e67817..db150dfd 100644 --- a/Source/ConfigGeneral.cpp +++ b/Source/ConfigGeneral.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ConfigGeneral.h b/Source/ConfigGeneral.h index 0fd5eae0..24653ed6 100644 --- a/Source/ConfigGeneral.h +++ b/Source/ConfigGeneral.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ConfigMIDI.cpp b/Source/ConfigMIDI.cpp index 0b0e0e11..48c7413d 100644 --- a/Source/ConfigMIDI.cpp +++ b/Source/ConfigMIDI.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ConfigMIDI.h b/Source/ConfigMIDI.h index 566baf1b..0727dbc8 100644 --- a/Source/ConfigMIDI.h +++ b/Source/ConfigMIDI.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ConfigMixer.cpp b/Source/ConfigMixer.cpp index 08106717..e54faf9e 100644 --- a/Source/ConfigMixer.cpp +++ b/Source/ConfigMixer.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ConfigMixer.h b/Source/ConfigMixer.h index 04bcccc8..5aa4c0e4 100644 --- a/Source/ConfigMixer.h +++ b/Source/ConfigMixer.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ConfigShortcuts.cpp b/Source/ConfigShortcuts.cpp index be75857d..7424db0f 100644 --- a/Source/ConfigShortcuts.cpp +++ b/Source/ConfigShortcuts.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ConfigShortcuts.h b/Source/ConfigShortcuts.h index 668138d0..98600841 100644 --- a/Source/ConfigShortcuts.h +++ b/Source/ConfigShortcuts.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ConfigSound.cpp b/Source/ConfigSound.cpp index e2af2d25..49e38c8b 100644 --- a/Source/ConfigSound.cpp +++ b/Source/ConfigSound.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ConfigSound.h b/Source/ConfigSound.h index fa9f3e6d..f5509135 100644 --- a/Source/ConfigSound.h +++ b/Source/ConfigSound.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ConfigVersion.cpp b/Source/ConfigVersion.cpp index acf11115..32e805a6 100644 --- a/Source/ConfigVersion.cpp +++ b/Source/ConfigVersion.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ConfigVersion.h b/Source/ConfigVersion.h index 953e9ef4..59bd2818 100644 --- a/Source/ConfigVersion.h +++ b/Source/ConfigVersion.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ConfigWindow.cpp b/Source/ConfigWindow.cpp index 397b7e2e..d425384d 100644 --- a/Source/ConfigWindow.cpp +++ b/Source/ConfigWindow.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ConfigWindow.h b/Source/ConfigWindow.h index 3bf775d0..06506d50 100644 --- a/Source/ConfigWindow.h +++ b/Source/ConfigWindow.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ControlPanelDlg.cpp b/Source/ControlPanelDlg.cpp index b81fe9c6..3a4e9cd9 100644 --- a/Source/ControlPanelDlg.cpp +++ b/Source/ControlPanelDlg.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ControlPanelDlg.h b/Source/ControlPanelDlg.h index bb2568d1..32bce73d 100644 --- a/Source/ControlPanelDlg.h +++ b/Source/ControlPanelDlg.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/CreateWaveDlg.cpp b/Source/CreateWaveDlg.cpp index b6466284..941b15fe 100644 --- a/Source/CreateWaveDlg.cpp +++ b/Source/CreateWaveDlg.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/CreateWaveDlg.h b/Source/CreateWaveDlg.h index a0585f2e..bf781346 100644 --- a/Source/CreateWaveDlg.h +++ b/Source/CreateWaveDlg.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/CustomControls.cpp b/Source/CustomControls.cpp index 634a15b6..b391c918 100644 --- a/Source/CustomControls.cpp +++ b/Source/CustomControls.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/CustomControls.h b/Source/CustomControls.h index 7eeee44b..8814fcb6 100644 --- a/Source/CustomControls.h +++ b/Source/CustomControls.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/CustomExporterInterfaces.h b/Source/CustomExporterInterfaces.h index 06e8eff1..7eb982fb 100644 --- a/Source/CustomExporterInterfaces.h +++ b/Source/CustomExporterInterfaces.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/CustomExporters.h b/Source/CustomExporters.h index cd8b10c5..bef7b568 100644 --- a/Source/CustomExporters.h +++ b/Source/CustomExporters.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/DPI.cpp b/Source/DPI.cpp index e6bf0836..c2f5c985 100644 --- a/Source/DPI.cpp +++ b/Source/DPI.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/DPI.h b/Source/DPI.h index 049d60b2..d4e963d7 100644 --- a/Source/DPI.h +++ b/Source/DPI.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/DSample.cpp b/Source/DSample.cpp index 52dda792..4ffaee4f 100644 --- a/Source/DSample.cpp +++ b/Source/DSample.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/DSample.h b/Source/DSample.h index 0bbd3660..2bfb0c8c 100644 --- a/Source/DSample.h +++ b/Source/DSample.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/DSampleManager.cpp b/Source/DSampleManager.cpp index f55811bf..ee04dd1b 100644 --- a/Source/DSampleManager.cpp +++ b/Source/DSampleManager.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/DSampleManager.h b/Source/DSampleManager.h index b8497cc1..14467ed0 100644 --- a/Source/DSampleManager.h +++ b/Source/DSampleManager.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/DetuneDlg.cpp b/Source/DetuneDlg.cpp index 5f7e19af..587fd34a 100644 --- a/Source/DetuneDlg.cpp +++ b/Source/DetuneDlg.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/DetuneDlg.h b/Source/DetuneDlg.h index 0b37ae39..04aac17b 100644 --- a/Source/DetuneDlg.h +++ b/Source/DetuneDlg.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/DetuneTable.cpp b/Source/DetuneTable.cpp index c69bac09..64ade7d2 100644 --- a/Source/DetuneTable.cpp +++ b/Source/DetuneTable.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/DetuneTable.h b/Source/DetuneTable.h index 154c66dc..35f376e4 100644 --- a/Source/DetuneTable.h +++ b/Source/DetuneTable.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/DialogReBar.cpp b/Source/DialogReBar.cpp index 4b2e7d8d..fbfbd878 100644 --- a/Source/DialogReBar.cpp +++ b/Source/DialogReBar.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/DialogReBar.h b/Source/DialogReBar.h index 409bc368..0a80c36e 100644 --- a/Source/DialogReBar.h +++ b/Source/DialogReBar.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/DocumentFile.cpp b/Source/DocumentFile.cpp index 97a721ac..222c2fa8 100644 --- a/Source/DocumentFile.cpp +++ b/Source/DocumentFile.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/DocumentFile.h b/Source/DocumentFile.h index 3e00cebe..294a62bd 100644 --- a/Source/DocumentFile.h +++ b/Source/DocumentFile.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/DocumentWrapper.cpp b/Source/DocumentWrapper.cpp index f1f66df0..375f9c97 100644 --- a/Source/DocumentWrapper.cpp +++ b/Source/DocumentWrapper.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/DocumentWrapper.h b/Source/DocumentWrapper.h index f85a4320..2b4ecbd0 100644 --- a/Source/DocumentWrapper.h +++ b/Source/DocumentWrapper.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Driver.h b/Source/Driver.h index ca5bb126..c2949aae 100644 --- a/Source/Driver.h +++ b/Source/Driver.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Exception.cpp b/Source/Exception.cpp index 7d17a64e..4790843b 100644 --- a/Source/Exception.cpp +++ b/Source/Exception.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Exception.h b/Source/Exception.h index 98bf945e..1f3ec5ac 100644 --- a/Source/Exception.h +++ b/Source/Exception.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ExportDialog.cpp b/Source/ExportDialog.cpp index 7c93cadd..7b75b13c 100644 --- a/Source/ExportDialog.cpp +++ b/Source/ExportDialog.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ExportDialog.h b/Source/ExportDialog.h index 28f759fe..0a1ef27e 100644 --- a/Source/ExportDialog.h +++ b/Source/ExportDialog.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/FFT/FftBuffer.h b/Source/FFT/FftBuffer.h index 71a18a02..28e4ee79 100644 --- a/Source/FFT/FftBuffer.h +++ b/Source/FFT/FftBuffer.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/FTMComponentInterface.h b/Source/FTMComponentInterface.h index 1ad2159e..688eb0f3 100644 --- a/Source/FTMComponentInterface.h +++ b/Source/FTMComponentInterface.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Factory.h b/Source/Factory.h index 5898eb93..7524e480 100644 --- a/Source/Factory.h +++ b/Source/Factory.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/FamiTracker.cpp b/Source/FamiTracker.cpp index df5f66cd..817bc520 100644 --- a/Source/FamiTracker.cpp +++ b/Source/FamiTracker.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/FamiTracker.h b/Source/FamiTracker.h index 645b34f8..d6dda0b7 100644 --- a/Source/FamiTracker.h +++ b/Source/FamiTracker.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/FamiTrackerDoc.cpp b/Source/FamiTrackerDoc.cpp index 9a4b9602..cf7f195f 100644 --- a/Source/FamiTrackerDoc.cpp +++ b/Source/FamiTrackerDoc.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/FamiTrackerDoc.h b/Source/FamiTrackerDoc.h index ca560d31..61bc74a2 100644 --- a/Source/FamiTrackerDoc.h +++ b/Source/FamiTrackerDoc.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/FamiTrackerTypes.cpp b/Source/FamiTrackerTypes.cpp index 191c41f6..bfe749f2 100644 --- a/Source/FamiTrackerTypes.cpp +++ b/Source/FamiTrackerTypes.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/FamiTrackerTypes.h b/Source/FamiTrackerTypes.h index 0b7c2cfb..2a86e46d 100644 --- a/Source/FamiTrackerTypes.h +++ b/Source/FamiTrackerTypes.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/FamiTrackerView.cpp b/Source/FamiTrackerView.cpp index 7b61e31b..9e148c94 100644 --- a/Source/FamiTrackerView.cpp +++ b/Source/FamiTrackerView.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/FamiTrackerView.h b/Source/FamiTrackerView.h index e90decfe..653c6aee 100644 --- a/Source/FamiTrackerView.h +++ b/Source/FamiTrackerView.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/FamiTrackerViewMessage.h b/Source/FamiTrackerViewMessage.h index 55d2da94..0c374d61 100644 --- a/Source/FamiTrackerViewMessage.h +++ b/Source/FamiTrackerViewMessage.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/FindDlg.cpp b/Source/FindDlg.cpp index 70ad64ac..f6885136 100644 --- a/Source/FindDlg.cpp +++ b/Source/FindDlg.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/FindDlg.h b/Source/FindDlg.h index e1f1ac45..97076506 100644 --- a/Source/FindDlg.h +++ b/Source/FindDlg.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/FrameAction.cpp b/Source/FrameAction.cpp index b85305f8..a9546a97 100644 --- a/Source/FrameAction.cpp +++ b/Source/FrameAction.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/FrameAction.h b/Source/FrameAction.h index c86e1d4e..80c6a691 100644 --- a/Source/FrameAction.h +++ b/Source/FrameAction.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/FrameEditor.cpp b/Source/FrameEditor.cpp index 3c077281..110a233f 100644 --- a/Source/FrameEditor.cpp +++ b/Source/FrameEditor.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/FrameEditor.h b/Source/FrameEditor.h index d6350fe2..63d72efc 100644 --- a/Source/FrameEditor.h +++ b/Source/FrameEditor.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/FrameEditorTypes.cpp b/Source/FrameEditorTypes.cpp index d1b56181..b8712ae2 100644 --- a/Source/FrameEditorTypes.cpp +++ b/Source/FrameEditorTypes.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/FrameEditorTypes.h b/Source/FrameEditorTypes.h index b4e18190..784c670c 100644 --- a/Source/FrameEditorTypes.h +++ b/Source/FrameEditorTypes.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/GotoDlg.cpp b/Source/GotoDlg.cpp index 1117ac50..97a092c1 100644 --- a/Source/GotoDlg.cpp +++ b/Source/GotoDlg.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/GotoDlg.h b/Source/GotoDlg.h index 5b280d49..80682f0c 100644 --- a/Source/GotoDlg.h +++ b/Source/GotoDlg.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/GraphEditor.cpp b/Source/GraphEditor.cpp index 5092cdf7..166ad3b1 100644 --- a/Source/GraphEditor.cpp +++ b/Source/GraphEditor.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/GraphEditor.h b/Source/GraphEditor.h index 44c0a4f0..55b337b6 100644 --- a/Source/GraphEditor.h +++ b/Source/GraphEditor.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Graphics.cpp b/Source/Graphics.cpp index 30d0579e..0a1d5a46 100644 --- a/Source/Graphics.cpp +++ b/Source/Graphics.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Graphics.h b/Source/Graphics.h index d0cdb7ed..2da93969 100644 --- a/Source/Graphics.h +++ b/Source/Graphics.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Groove.cpp b/Source/Groove.cpp index 2250c5c6..68035d23 100644 --- a/Source/Groove.cpp +++ b/Source/Groove.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Groove.h b/Source/Groove.h index 675e138d..4ac3ca5d 100644 --- a/Source/Groove.h +++ b/Source/Groove.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/GrooveDlg.cpp b/Source/GrooveDlg.cpp index 56cf31d9..dbfb1f46 100644 --- a/Source/GrooveDlg.cpp +++ b/Source/GrooveDlg.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/GrooveDlg.h b/Source/GrooveDlg.h index 646eb48d..41449196 100644 --- a/Source/GrooveDlg.h +++ b/Source/GrooveDlg.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/HistoryFileDlg.cpp b/Source/HistoryFileDlg.cpp index 0122a9f1..a80ef2e4 100644 --- a/Source/HistoryFileDlg.cpp +++ b/Source/HistoryFileDlg.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/HistoryFileDlg.h b/Source/HistoryFileDlg.h index bed05d93..0c79170a 100644 --- a/Source/HistoryFileDlg.h +++ b/Source/HistoryFileDlg.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstHandler.h b/Source/InstHandler.h index b8bbf815..ec07442f 100644 --- a/Source/InstHandler.h +++ b/Source/InstHandler.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstHandlerDPCM.cpp b/Source/InstHandlerDPCM.cpp index 3e1ee21e..33012723 100644 --- a/Source/InstHandlerDPCM.cpp +++ b/Source/InstHandlerDPCM.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstHandlerDPCM.h b/Source/InstHandlerDPCM.h index b8d58135..db30d03e 100644 --- a/Source/InstHandlerDPCM.h +++ b/Source/InstHandlerDPCM.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstHandlerVRC7.cpp b/Source/InstHandlerVRC7.cpp index b3da01ab..cca6d798 100644 --- a/Source/InstHandlerVRC7.cpp +++ b/Source/InstHandlerVRC7.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstHandlerVRC7.h b/Source/InstHandlerVRC7.h index 4bfa180f..3c5aee46 100644 --- a/Source/InstHandlerVRC7.h +++ b/Source/InstHandlerVRC7.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Instrument.cpp b/Source/Instrument.cpp index 6d915377..27bd65ea 100644 --- a/Source/Instrument.cpp +++ b/Source/Instrument.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Instrument.h b/Source/Instrument.h index 47204ca2..192723c0 100644 --- a/Source/Instrument.h +++ b/Source/Instrument.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Instrument2A03.cpp b/Source/Instrument2A03.cpp index 19309b4f..5190cbc9 100644 --- a/Source/Instrument2A03.cpp +++ b/Source/Instrument2A03.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Instrument2A03.h b/Source/Instrument2A03.h index f22262a9..1c0eef8a 100644 --- a/Source/Instrument2A03.h +++ b/Source/Instrument2A03.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentEditDlg.cpp b/Source/InstrumentEditDlg.cpp index e539f9c0..c4ad74ea 100644 --- a/Source/InstrumentEditDlg.cpp +++ b/Source/InstrumentEditDlg.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentEditDlg.h b/Source/InstrumentEditDlg.h index 39c3b747..151db390 100644 --- a/Source/InstrumentEditDlg.h +++ b/Source/InstrumentEditDlg.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentEditPanel.cpp b/Source/InstrumentEditPanel.cpp index 54be069b..99fe1b4b 100644 --- a/Source/InstrumentEditPanel.cpp +++ b/Source/InstrumentEditPanel.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentEditPanel.h b/Source/InstrumentEditPanel.h index d41fb838..84e99345 100644 --- a/Source/InstrumentEditPanel.h +++ b/Source/InstrumentEditPanel.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentEditorDPCM.cpp b/Source/InstrumentEditorDPCM.cpp index 2879f597..1c92db33 100644 --- a/Source/InstrumentEditorDPCM.cpp +++ b/Source/InstrumentEditorDPCM.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentEditorDPCM.h b/Source/InstrumentEditorDPCM.h index 735f3783..8b0a61bc 100644 --- a/Source/InstrumentEditorDPCM.h +++ b/Source/InstrumentEditorDPCM.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentEditorFDS.cpp b/Source/InstrumentEditorFDS.cpp index d4725f25..07732d06 100644 --- a/Source/InstrumentEditorFDS.cpp +++ b/Source/InstrumentEditorFDS.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentEditorFDS.h b/Source/InstrumentEditorFDS.h index df0b6290..57855882 100644 --- a/Source/InstrumentEditorFDS.h +++ b/Source/InstrumentEditorFDS.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentEditorFDSEnvelope.cpp b/Source/InstrumentEditorFDSEnvelope.cpp index ce77c797..b79f67eb 100644 --- a/Source/InstrumentEditorFDSEnvelope.cpp +++ b/Source/InstrumentEditorFDSEnvelope.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentEditorFDSEnvelope.h b/Source/InstrumentEditorFDSEnvelope.h index 82746738..01a4dc1a 100644 --- a/Source/InstrumentEditorFDSEnvelope.h +++ b/Source/InstrumentEditorFDSEnvelope.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentEditorN163Wave.cpp b/Source/InstrumentEditorN163Wave.cpp index 2762884c..344441f0 100644 --- a/Source/InstrumentEditorN163Wave.cpp +++ b/Source/InstrumentEditorN163Wave.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentEditorN163Wave.h b/Source/InstrumentEditorN163Wave.h index d60a9073..1184fd8a 100644 --- a/Source/InstrumentEditorN163Wave.h +++ b/Source/InstrumentEditorN163Wave.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentEditorSeq.cpp b/Source/InstrumentEditorSeq.cpp index 62d04295..9969a257 100644 --- a/Source/InstrumentEditorSeq.cpp +++ b/Source/InstrumentEditorSeq.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentEditorSeq.h b/Source/InstrumentEditorSeq.h index 15b5eabf..1ffa2eb0 100644 --- a/Source/InstrumentEditorSeq.h +++ b/Source/InstrumentEditorSeq.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentEditorVRC7.cpp b/Source/InstrumentEditorVRC7.cpp index 76da3bc8..c2151c55 100644 --- a/Source/InstrumentEditorVRC7.cpp +++ b/Source/InstrumentEditorVRC7.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentEditorVRC7.h b/Source/InstrumentEditorVRC7.h index 23d51cb1..629c26e7 100644 --- a/Source/InstrumentEditorVRC7.h +++ b/Source/InstrumentEditorVRC7.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentFDS.cpp b/Source/InstrumentFDS.cpp index 3486b6d6..ccc3fd93 100644 --- a/Source/InstrumentFDS.cpp +++ b/Source/InstrumentFDS.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentFDS.h b/Source/InstrumentFDS.h index ea31f4d5..72012f19 100644 --- a/Source/InstrumentFDS.h +++ b/Source/InstrumentFDS.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentFactory.cpp b/Source/InstrumentFactory.cpp index a34d2a7e..e89cc770 100644 --- a/Source/InstrumentFactory.cpp +++ b/Source/InstrumentFactory.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentFactory.h b/Source/InstrumentFactory.h index 1383fe26..0c5d566d 100644 --- a/Source/InstrumentFactory.h +++ b/Source/InstrumentFactory.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentFileTree.cpp b/Source/InstrumentFileTree.cpp index 231e9176..fb718a6a 100644 --- a/Source/InstrumentFileTree.cpp +++ b/Source/InstrumentFileTree.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentFileTree.h b/Source/InstrumentFileTree.h index bb89d20f..4c277ae3 100644 --- a/Source/InstrumentFileTree.h +++ b/Source/InstrumentFileTree.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentListCtrl.cpp b/Source/InstrumentListCtrl.cpp index 641e132e..31b5a1ae 100644 --- a/Source/InstrumentListCtrl.cpp +++ b/Source/InstrumentListCtrl.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentManager.cpp b/Source/InstrumentManager.cpp index 7d027de5..96c5be61 100644 --- a/Source/InstrumentManager.cpp +++ b/Source/InstrumentManager.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentManager.h b/Source/InstrumentManager.h index b3f20537..04206e19 100644 --- a/Source/InstrumentManager.h +++ b/Source/InstrumentManager.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentManagerInterface.h b/Source/InstrumentManagerInterface.h index 3369b25f..d7aa988e 100644 --- a/Source/InstrumentManagerInterface.h +++ b/Source/InstrumentManagerInterface.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentN163.cpp b/Source/InstrumentN163.cpp index ce27b156..69619c4a 100644 --- a/Source/InstrumentN163.cpp +++ b/Source/InstrumentN163.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentN163.h b/Source/InstrumentN163.h index dd4964e7..031fbd97 100644 --- a/Source/InstrumentN163.h +++ b/Source/InstrumentN163.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentRecorder.cpp b/Source/InstrumentRecorder.cpp index 9b55fca8..47e6125c 100644 --- a/Source/InstrumentRecorder.cpp +++ b/Source/InstrumentRecorder.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentRecorder.h b/Source/InstrumentRecorder.h index 3a219362..58aee0d6 100644 --- a/Source/InstrumentRecorder.h +++ b/Source/InstrumentRecorder.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentS5B.cpp b/Source/InstrumentS5B.cpp index fcb09d6d..bc1f2ce9 100644 --- a/Source/InstrumentS5B.cpp +++ b/Source/InstrumentS5B.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentS5B.h b/Source/InstrumentS5B.h index 143599a5..69982f6a 100644 --- a/Source/InstrumentS5B.h +++ b/Source/InstrumentS5B.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentVRC6.cpp b/Source/InstrumentVRC6.cpp index 4bdaf42c..6e649bed 100644 --- a/Source/InstrumentVRC6.cpp +++ b/Source/InstrumentVRC6.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentVRC6.h b/Source/InstrumentVRC6.h index 5e45d912..4b898357 100644 --- a/Source/InstrumentVRC6.h +++ b/Source/InstrumentVRC6.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentVRC7.cpp b/Source/InstrumentVRC7.cpp index 30ff35ea..bc289682 100644 --- a/Source/InstrumentVRC7.cpp +++ b/Source/InstrumentVRC7.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/InstrumentVRC7.h b/Source/InstrumentVRC7.h index 31f68413..29286dc2 100644 --- a/Source/InstrumentVRC7.h +++ b/Source/InstrumentVRC7.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/IntRange.h b/Source/IntRange.h index 742dc1bb..f00fbba0 100644 --- a/Source/IntRange.h +++ b/Source/IntRange.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/JsonExporter.cpp b/Source/JsonExporter.cpp index c92b8c2b..035fe118 100644 --- a/Source/JsonExporter.cpp +++ b/Source/JsonExporter.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/JsonExporter.h b/Source/JsonExporter.h index e0bb80bf..e269ea45 100644 --- a/Source/JsonExporter.h +++ b/Source/JsonExporter.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/MIDI.cpp b/Source/MIDI.cpp index 75b40555..dee662c2 100644 --- a/Source/MIDI.cpp +++ b/Source/MIDI.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/MIDI.h b/Source/MIDI.h index 8a55c2d7..6e941135 100644 --- a/Source/MIDI.h +++ b/Source/MIDI.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/MainFrm.cpp b/Source/MainFrm.cpp index a77fed6e..f4b2c050 100644 --- a/Source/MainFrm.cpp +++ b/Source/MainFrm.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/MainFrm.h b/Source/MainFrm.h index e1ef4a7f..d339b96c 100644 --- a/Source/MainFrm.h +++ b/Source/MainFrm.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ModSequenceEditor.cpp b/Source/ModSequenceEditor.cpp index 5bc5678f..1ad744f9 100644 --- a/Source/ModSequenceEditor.cpp +++ b/Source/ModSequenceEditor.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ModSequenceEditor.h b/Source/ModSequenceEditor.h index 021ffc1e..4a6004ec 100644 --- a/Source/ModSequenceEditor.h +++ b/Source/ModSequenceEditor.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ModuleException.cpp b/Source/ModuleException.cpp index d9055484..73db8fc1 100644 --- a/Source/ModuleException.cpp +++ b/Source/ModuleException.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ModuleException.h b/Source/ModuleException.h index 600bac68..d7aa1118 100644 --- a/Source/ModuleException.h +++ b/Source/ModuleException.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ModuleImportDlg.cpp b/Source/ModuleImportDlg.cpp index 8407be2f..69a9bee7 100644 --- a/Source/ModuleImportDlg.cpp +++ b/Source/ModuleImportDlg.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ModuleImportDlg.h b/Source/ModuleImportDlg.h index 0861639b..1c8599ca 100644 --- a/Source/ModuleImportDlg.h +++ b/Source/ModuleImportDlg.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ModulePropertiesDlg.cpp b/Source/ModulePropertiesDlg.cpp index 5f77beaf..d947d973 100644 --- a/Source/ModulePropertiesDlg.cpp +++ b/Source/ModulePropertiesDlg.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/ModulePropertiesDlg.h b/Source/ModulePropertiesDlg.h index 2bc9cc57..23a626e2 100644 --- a/Source/ModulePropertiesDlg.h +++ b/Source/ModulePropertiesDlg.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/NoteQueue.cpp b/Source/NoteQueue.cpp index 4de5d30c..6ae6939a 100644 --- a/Source/NoteQueue.cpp +++ b/Source/NoteQueue.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/NoteQueue.h b/Source/NoteQueue.h index 9c75a135..e2eaaa8f 100644 --- a/Source/NoteQueue.h +++ b/Source/NoteQueue.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/NumConv.h b/Source/NumConv.h index 18ab5946..ed45dffe 100644 --- a/Source/NumConv.h +++ b/Source/NumConv.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/OldSequence.cpp b/Source/OldSequence.cpp index 9d9ecdf6..565ece01 100644 --- a/Source/OldSequence.cpp +++ b/Source/OldSequence.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/OldSequence.h b/Source/OldSequence.h index 27433f39..16d064a7 100644 --- a/Source/OldSequence.h +++ b/Source/OldSequence.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/PCMImport.cpp b/Source/PCMImport.cpp index 1bd712e5..7c838bae 100644 --- a/Source/PCMImport.cpp +++ b/Source/PCMImport.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/PCMImport.h b/Source/PCMImport.h index 159fb8db..29cef3b2 100644 --- a/Source/PCMImport.h +++ b/Source/PCMImport.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/PatternAction.cpp b/Source/PatternAction.cpp index 5a72a4d7..b7132153 100644 --- a/Source/PatternAction.cpp +++ b/Source/PatternAction.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/PatternAction.h b/Source/PatternAction.h index ef029360..eb4c28ba 100644 --- a/Source/PatternAction.h +++ b/Source/PatternAction.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/PatternCompiler.cpp b/Source/PatternCompiler.cpp index 347dd11a..0b73d39d 100644 --- a/Source/PatternCompiler.cpp +++ b/Source/PatternCompiler.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/PatternCompiler.h b/Source/PatternCompiler.h index 21b9c28e..1ae10cb3 100644 --- a/Source/PatternCompiler.h +++ b/Source/PatternCompiler.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/PatternComponent.cpp b/Source/PatternComponent.cpp index 26770c0b..670c9838 100644 --- a/Source/PatternComponent.cpp +++ b/Source/PatternComponent.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/PatternComponent.h b/Source/PatternComponent.h index 96ac8c1a..189ebd39 100644 --- a/Source/PatternComponent.h +++ b/Source/PatternComponent.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/PatternData.cpp b/Source/PatternData.cpp index 2c1a79e7..5da4e05d 100644 --- a/Source/PatternData.cpp +++ b/Source/PatternData.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/PatternData.h b/Source/PatternData.h index 4df64fe6..7b236f49 100644 --- a/Source/PatternData.h +++ b/Source/PatternData.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/PatternEditor.cpp b/Source/PatternEditor.cpp index 7158715e..a6fdb715 100644 --- a/Source/PatternEditor.cpp +++ b/Source/PatternEditor.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/PatternEditor.h b/Source/PatternEditor.h index ab1af19b..668958ea 100644 --- a/Source/PatternEditor.h +++ b/Source/PatternEditor.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/PatternEditorTypes.cpp b/Source/PatternEditorTypes.cpp index ddcbf9c7..ceffb0c5 100644 --- a/Source/PatternEditorTypes.cpp +++ b/Source/PatternEditorTypes.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/PatternEditorTypes.h b/Source/PatternEditorTypes.h index b21a6dac..3e8e11ae 100644 --- a/Source/PatternEditorTypes.h +++ b/Source/PatternEditorTypes.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/PatternNote.cpp b/Source/PatternNote.cpp index 01c54135..efa25d66 100644 --- a/Source/PatternNote.cpp +++ b/Source/PatternNote.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/PatternNote.h b/Source/PatternNote.h index a60b87be..f34894ad 100644 --- a/Source/PatternNote.h +++ b/Source/PatternNote.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/PerformanceDlg.cpp b/Source/PerformanceDlg.cpp index 8d144888..7c565974 100644 --- a/Source/PerformanceDlg.cpp +++ b/Source/PerformanceDlg.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/PerformanceDlg.h b/Source/PerformanceDlg.h index 615db4e1..dc7c3a71 100644 --- a/Source/PerformanceDlg.h +++ b/Source/PerformanceDlg.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/RecordSettingsDlg.cpp b/Source/RecordSettingsDlg.cpp index 93408a51..01829c94 100644 --- a/Source/RecordSettingsDlg.cpp +++ b/Source/RecordSettingsDlg.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/RecordSettingsDlg.h b/Source/RecordSettingsDlg.h index 5756d401..dc14127c 100644 --- a/Source/RecordSettingsDlg.h +++ b/Source/RecordSettingsDlg.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/RegisterState.cpp b/Source/RegisterState.cpp index 930b901c..cddbcc0c 100644 --- a/Source/RegisterState.cpp +++ b/Source/RegisterState.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/RegisterState.h b/Source/RegisterState.h index 5974fd25..cc64571e 100644 --- a/Source/RegisterState.h +++ b/Source/RegisterState.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SampleEditorDlg.cpp b/Source/SampleEditorDlg.cpp index 9a3dfdd3..a81e0822 100644 --- a/Source/SampleEditorDlg.cpp +++ b/Source/SampleEditorDlg.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SampleEditorDlg.h b/Source/SampleEditorDlg.h index 0c02ceea..97ac23d1 100644 --- a/Source/SampleEditorDlg.h +++ b/Source/SampleEditorDlg.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SampleEditorView.cpp b/Source/SampleEditorView.cpp index 1845637d..ecc6125d 100644 --- a/Source/SampleEditorView.cpp +++ b/Source/SampleEditorView.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SampleEditorView.h b/Source/SampleEditorView.h index fdaebb3a..953d21d2 100644 --- a/Source/SampleEditorView.h +++ b/Source/SampleEditorView.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SeqInstHandler.cpp b/Source/SeqInstHandler.cpp index 4513d127..fa3c7ecc 100644 --- a/Source/SeqInstHandler.cpp +++ b/Source/SeqInstHandler.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SeqInstHandler.h b/Source/SeqInstHandler.h index 2c954b3d..d6c6ed76 100644 --- a/Source/SeqInstHandler.h +++ b/Source/SeqInstHandler.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SeqInstHandler2A03Pulse.cpp b/Source/SeqInstHandler2A03Pulse.cpp index eff6bb91..9791a7bf 100644 --- a/Source/SeqInstHandler2A03Pulse.cpp +++ b/Source/SeqInstHandler2A03Pulse.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SeqInstHandler2A03Pulse.h b/Source/SeqInstHandler2A03Pulse.h index e24b4a4f..20b0a118 100644 --- a/Source/SeqInstHandler2A03Pulse.h +++ b/Source/SeqInstHandler2A03Pulse.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SeqInstHandlerFDS.cpp b/Source/SeqInstHandlerFDS.cpp index 453cf98b..185ef486 100644 --- a/Source/SeqInstHandlerFDS.cpp +++ b/Source/SeqInstHandlerFDS.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SeqInstHandlerFDS.h b/Source/SeqInstHandlerFDS.h index b969bf2b..a053e9b1 100644 --- a/Source/SeqInstHandlerFDS.h +++ b/Source/SeqInstHandlerFDS.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SeqInstHandlerN163.cpp b/Source/SeqInstHandlerN163.cpp index a140f951..8f141b92 100644 --- a/Source/SeqInstHandlerN163.cpp +++ b/Source/SeqInstHandlerN163.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SeqInstHandlerN163.h b/Source/SeqInstHandlerN163.h index b3ce9f7b..c9f29401 100644 --- a/Source/SeqInstHandlerN163.h +++ b/Source/SeqInstHandlerN163.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SeqInstHandlerS5B.cpp b/Source/SeqInstHandlerS5B.cpp index a05433f2..2343213f 100644 --- a/Source/SeqInstHandlerS5B.cpp +++ b/Source/SeqInstHandlerS5B.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SeqInstHandlerS5B.h b/Source/SeqInstHandlerS5B.h index 550a9653..997db9f7 100644 --- a/Source/SeqInstHandlerS5B.h +++ b/Source/SeqInstHandlerS5B.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SeqInstHandlerSawtooth.cpp b/Source/SeqInstHandlerSawtooth.cpp index 4a78ba36..d49f31ac 100644 --- a/Source/SeqInstHandlerSawtooth.cpp +++ b/Source/SeqInstHandlerSawtooth.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SeqInstHandlerSawtooth.h b/Source/SeqInstHandlerSawtooth.h index 67561d55..bc019845 100644 --- a/Source/SeqInstHandlerSawtooth.h +++ b/Source/SeqInstHandlerSawtooth.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SeqInstrument.cpp b/Source/SeqInstrument.cpp index 0d4ea02b..3a587977 100644 --- a/Source/SeqInstrument.cpp +++ b/Source/SeqInstrument.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SeqInstrument.h b/Source/SeqInstrument.h index 4da4162d..ba339b63 100644 --- a/Source/SeqInstrument.h +++ b/Source/SeqInstrument.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Sequence.cpp b/Source/Sequence.cpp index e01f20db..03f53671 100644 --- a/Source/Sequence.cpp +++ b/Source/Sequence.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Sequence.h b/Source/Sequence.h index ad47b1e0..76309367 100644 --- a/Source/Sequence.h +++ b/Source/Sequence.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SequenceCollection.cpp b/Source/SequenceCollection.cpp index 17f3b917..8fcce597 100644 --- a/Source/SequenceCollection.cpp +++ b/Source/SequenceCollection.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SequenceCollection.h b/Source/SequenceCollection.h index ef993189..0807737c 100644 --- a/Source/SequenceCollection.h +++ b/Source/SequenceCollection.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SequenceEditor.cpp b/Source/SequenceEditor.cpp index aeb98b2d..6bba883e 100644 --- a/Source/SequenceEditor.cpp +++ b/Source/SequenceEditor.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SequenceEditor.h b/Source/SequenceEditor.h index 9c69bb08..0ff1924d 100644 --- a/Source/SequenceEditor.h +++ b/Source/SequenceEditor.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SequenceEditorMessage.h b/Source/SequenceEditorMessage.h index af2aa4a2..8450988e 100644 --- a/Source/SequenceEditorMessage.h +++ b/Source/SequenceEditorMessage.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SequenceManager.cpp b/Source/SequenceManager.cpp index f0b76f92..28647b77 100644 --- a/Source/SequenceManager.cpp +++ b/Source/SequenceManager.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SequenceManager.h b/Source/SequenceManager.h index 6cd7e990..7459878b 100644 --- a/Source/SequenceManager.h +++ b/Source/SequenceManager.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SequenceParser.cpp b/Source/SequenceParser.cpp index a01e73a9..f51c011e 100644 --- a/Source/SequenceParser.cpp +++ b/Source/SequenceParser.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SequenceParser.h b/Source/SequenceParser.h index e26a7a35..e007c0e3 100644 --- a/Source/SequenceParser.h +++ b/Source/SequenceParser.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SequenceSetting.cpp b/Source/SequenceSetting.cpp index 33d46970..b8afc894 100644 --- a/Source/SequenceSetting.cpp +++ b/Source/SequenceSetting.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SequenceSetting.h b/Source/SequenceSetting.h index da5e0830..6f6a072d 100644 --- a/Source/SequenceSetting.h +++ b/Source/SequenceSetting.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Settings.cpp b/Source/Settings.cpp index 3058b44f..defd2a05 100644 --- a/Source/Settings.cpp +++ b/Source/Settings.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/Settings.h b/Source/Settings.h index bcdc8f6e..7d5da7b3 100644 --- a/Source/Settings.h +++ b/Source/Settings.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SimpleFile.cpp b/Source/SimpleFile.cpp index 6d4b7719..54f52826 100644 --- a/Source/SimpleFile.cpp +++ b/Source/SimpleFile.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SimpleFile.h b/Source/SimpleFile.h index 58dcd6aa..5d992ce1 100644 --- a/Source/SimpleFile.h +++ b/Source/SimpleFile.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SizeEditor.cpp b/Source/SizeEditor.cpp index 33a7c5f8..510e1f2b 100644 --- a/Source/SizeEditor.cpp +++ b/Source/SizeEditor.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SizeEditor.h b/Source/SizeEditor.h index 01554876..bfc1370e 100644 --- a/Source/SizeEditor.h +++ b/Source/SizeEditor.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SoundGen.cpp b/Source/SoundGen.cpp index fd55ef88..99e46986 100644 --- a/Source/SoundGen.cpp +++ b/Source/SoundGen.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SoundGen.h b/Source/SoundGen.h index c87f5f00..ae8ee18d 100644 --- a/Source/SoundGen.h +++ b/Source/SoundGen.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SoundInterface.cpp b/Source/SoundInterface.cpp index 137bc3ff..c758cb29 100644 --- a/Source/SoundInterface.cpp +++ b/Source/SoundInterface.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SoundInterface.h b/Source/SoundInterface.h index 9af09891..1cbda423 100644 --- a/Source/SoundInterface.h +++ b/Source/SoundInterface.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SpeedDlg.cpp b/Source/SpeedDlg.cpp index 89e9ed0e..48772267 100644 --- a/Source/SpeedDlg.cpp +++ b/Source/SpeedDlg.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SpeedDlg.h b/Source/SpeedDlg.h index 02132c37..3a68ecd5 100644 --- a/Source/SpeedDlg.h +++ b/Source/SpeedDlg.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SplitKeyboardDlg.cpp b/Source/SplitKeyboardDlg.cpp index 48531c8b..dc469954 100644 --- a/Source/SplitKeyboardDlg.cpp +++ b/Source/SplitKeyboardDlg.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SplitKeyboardDlg.h b/Source/SplitKeyboardDlg.h index f79116e3..ce4bb069 100644 --- a/Source/SplitKeyboardDlg.h +++ b/Source/SplitKeyboardDlg.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/StretchDlg.cpp b/Source/StretchDlg.cpp index 8e97bda1..ee2a82fc 100644 --- a/Source/StretchDlg.cpp +++ b/Source/StretchDlg.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/StretchDlg.h b/Source/StretchDlg.h index cb2d1744..f237e534 100644 --- a/Source/StretchDlg.h +++ b/Source/StretchDlg.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SwapDlg.cpp b/Source/SwapDlg.cpp index b670a2c8..bcd4c21f 100644 --- a/Source/SwapDlg.cpp +++ b/Source/SwapDlg.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/SwapDlg.h b/Source/SwapDlg.h index 41c90977..f35060ce 100644 --- a/Source/SwapDlg.h +++ b/Source/SwapDlg.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/TextExporter.cpp b/Source/TextExporter.cpp index 00f98bc7..a4d430d7 100644 --- a/Source/TextExporter.cpp +++ b/Source/TextExporter.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/TextExporter.h b/Source/TextExporter.h index 2a74c108..b65a419d 100644 --- a/Source/TextExporter.h +++ b/Source/TextExporter.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/TrackerChannel.cpp b/Source/TrackerChannel.cpp index 7e09c885..4dea3126 100644 --- a/Source/TrackerChannel.cpp +++ b/Source/TrackerChannel.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/TrackerChannel.h b/Source/TrackerChannel.h index 4b375fc1..24d3f123 100644 --- a/Source/TrackerChannel.h +++ b/Source/TrackerChannel.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/TransposeDlg.cpp b/Source/TransposeDlg.cpp index 6f407abc..b0318e63 100644 --- a/Source/TransposeDlg.cpp +++ b/Source/TransposeDlg.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/TransposeDlg.h b/Source/TransposeDlg.h index 2907168e..81492fd9 100644 --- a/Source/TransposeDlg.h +++ b/Source/TransposeDlg.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/VersionChecker.cpp b/Source/VersionChecker.cpp index 2a65cdbb..3123ac80 100644 --- a/Source/VersionChecker.cpp +++ b/Source/VersionChecker.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/VersionChecker.h b/Source/VersionChecker.h index 59d5219a..ebbc159f 100644 --- a/Source/VersionChecker.h +++ b/Source/VersionChecker.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/VersionCheckerDlg.cpp b/Source/VersionCheckerDlg.cpp index fb174282..512555e7 100644 --- a/Source/VersionCheckerDlg.cpp +++ b/Source/VersionCheckerDlg.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/VersionCheckerDlg.h b/Source/VersionCheckerDlg.h index 55e93aa2..63096ec1 100644 --- a/Source/VersionCheckerDlg.h +++ b/Source/VersionCheckerDlg.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/VisualizerBase.cpp b/Source/VisualizerBase.cpp index 4f838fe1..57b3a2b6 100644 --- a/Source/VisualizerBase.cpp +++ b/Source/VisualizerBase.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/VisualizerBase.h b/Source/VisualizerBase.h index f5295a3e..b436e3ac 100644 --- a/Source/VisualizerBase.h +++ b/Source/VisualizerBase.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/VisualizerScope.cpp b/Source/VisualizerScope.cpp index 961236d5..8ab368d0 100644 --- a/Source/VisualizerScope.cpp +++ b/Source/VisualizerScope.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/VisualizerScope.h b/Source/VisualizerScope.h index 8b6c5442..914e5089 100644 --- a/Source/VisualizerScope.h +++ b/Source/VisualizerScope.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/VisualizerSpectrum.cpp b/Source/VisualizerSpectrum.cpp index 8f967e61..84253a41 100644 --- a/Source/VisualizerSpectrum.cpp +++ b/Source/VisualizerSpectrum.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/VisualizerSpectrum.h b/Source/VisualizerSpectrum.h index 1b83f6a1..a89086ef 100644 --- a/Source/VisualizerSpectrum.h +++ b/Source/VisualizerSpectrum.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/VisualizerStatic.cpp b/Source/VisualizerStatic.cpp index 9d51938d..75e754b6 100644 --- a/Source/VisualizerStatic.cpp +++ b/Source/VisualizerStatic.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/VisualizerStatic.h b/Source/VisualizerStatic.h index 4a44090f..aa767a18 100644 --- a/Source/VisualizerStatic.h +++ b/Source/VisualizerStatic.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/VisualizerWnd.cpp b/Source/VisualizerWnd.cpp index 01c3e2a4..422da867 100644 --- a/Source/VisualizerWnd.cpp +++ b/Source/VisualizerWnd.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/VisualizerWnd.h b/Source/VisualizerWnd.h index 3dcb1f71..2ba772c7 100644 --- a/Source/VisualizerWnd.h +++ b/Source/VisualizerWnd.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/WavProgressDlg.cpp b/Source/WavProgressDlg.cpp index 07f9f69e..cf630d09 100644 --- a/Source/WavProgressDlg.cpp +++ b/Source/WavProgressDlg.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/WavProgressDlg.h b/Source/WavProgressDlg.h index 803f632d..2fb65738 100644 --- a/Source/WavProgressDlg.h +++ b/Source/WavProgressDlg.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/WaveEditor.cpp b/Source/WaveEditor.cpp index 7bd63f01..f407bc6a 100644 --- a/Source/WaveEditor.cpp +++ b/Source/WaveEditor.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/WaveEditor.h b/Source/WaveEditor.h index b917e659..abaac3ad 100644 --- a/Source/WaveEditor.h +++ b/Source/WaveEditor.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/WaveFile.cpp b/Source/WaveFile.cpp index a2507f8f..79e17090 100644 --- a/Source/WaveFile.cpp +++ b/Source/WaveFile.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/WaveFile.h b/Source/WaveFile.h index 3be8de68..4a29171c 100644 --- a/Source/WaveFile.h +++ b/Source/WaveFile.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/WaveformGenerator.cpp b/Source/WaveformGenerator.cpp index b5360883..041aa3c6 100644 --- a/Source/WaveformGenerator.cpp +++ b/Source/WaveformGenerator.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/WaveformGenerator.h b/Source/WaveformGenerator.h index e4084e2f..544e3db2 100644 --- a/Source/WaveformGenerator.h +++ b/Source/WaveformGenerator.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/WavegenBuiltin.cpp b/Source/WavegenBuiltin.cpp index 77a0f3c7..8cb51256 100644 --- a/Source/WavegenBuiltin.cpp +++ b/Source/WavegenBuiltin.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/WavegenBuiltin.h b/Source/WavegenBuiltin.h index 3697a111..17032909 100644 --- a/Source/WavegenBuiltin.h +++ b/Source/WavegenBuiltin.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/drivers/asm/LICENSE b/Source/drivers/asm/LICENSE index 352af069..070ccf7d 100644 --- a/Source/drivers/asm/LICENSE +++ b/Source/drivers/asm/LICENSE @@ -15,7 +15,7 @@ The texts for the MIT-0 and GPL v2 licenses are listed below: MIT No Attribution -Copyright 2022 D.P.C.M. +Copyright 2024 D.P.C.M. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/Source/stdafx.cpp b/Source/stdafx.cpp index 2bff3989..5edb515e 100644 --- a/Source/stdafx.cpp +++ b/Source/stdafx.cpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/stdafx.h b/Source/stdafx.h index 5747595a..482ba2c5 100644 --- a/Source/stdafx.h +++ b/Source/stdafx.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/str_conv/str_conv.hpp b/Source/str_conv/str_conv.hpp index ba41b676..e91b6c9e 100644 --- a/Source/str_conv/str_conv.hpp +++ b/Source/str_conv/str_conv.hpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/str_conv/utf8_conv.hpp b/Source/str_conv/utf8_conv.hpp index edf3c440..bf8faf03 100644 --- a/Source/str_conv/utf8_conv.hpp +++ b/Source/str_conv/utf8_conv.hpp @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/Source/to_sv.h b/Source/to_sv.h index fe688f31..5cba008a 100644 --- a/Source/to_sv.h +++ b/Source/to_sv.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index a5b71899..4d633240 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -4,10 +4,50 @@ Change Log Written by D.P.C.M. -Version 0.5.0.1 - May 10, 2023 +Version 0.5.0.2 - January 13, 2024 --- +## Dn0.5.0.2 - 01/13/2024 + +- ### Important changes: + + - Modules will be saved as Dn-FT modules + - Reintroduced JSON export + - Update app icon to mimic Frutiger Aero/Y2K aesthetic + +- ### Improvements: + + - Reintroduce JSON export from 0CC-FT (@nstbayless @Gumball2415 #197 #199) + - Update application icon (@Gumball2415 #236) + - Rewrite change log in markdown (@Gumball2415 #238) + +- ### Bug fixes: + + - Fix effect number input using numpad (@ZeroJanitor @Gumball2415 #48 #214) + - Force modules to be saved as Dn-FT modules (@Threxx11 @Gumball2415 #184 #214) + - Fix outputting audio to multi-channel output devices (@CoolJosh3k @nyanpasu64 #205 #226) + - Wait for APU mutex lock during .wav export (@nyanpasu64 @Gumball2415 #206 #214) + - Avoid checking assert with unsigned integer cast (@freq-mod @N-SPC700 @Gumball2415 #209 #214) + - Assert legacy mixing levels and ranges (@trashbinenthusiast @N-SPC700 @nyanpasu64 @Gumball2415 #213 #214) + - Avoid division by zero in MML sequence parsing (@Gumball2415 #222 #214) + - Fix incorrect speed in PAL NSF exports (@TakuikaNinja @eugene-s-nesdev @Gumball2415 #223 #242 #214) + - Fix detune offset direction (@Gumball2415 #225 #214) + - Disable Custom Exporter DLL loading (@eatscrayon @Gumball2415 #232 #214) + - Fix access violation in MRU submenu list update (@eugene-s-nesdev @Gumball2415 #243 #214) + +- ### Internal: + + - Fix version checker repository link (@Gumball2415 #229 #212) + - Include logo and icon resources in the repository (@Gumball2415 #218 #236) + - Add AddressSanitizer project configurations (@Gumball2415 #236) + - Separate Github Actions binary downloads (@Gumball2415 #237) + - Add automated draft release binary upload (@Gumball2415 #237) + - Integrate Dn-help as submodule (@Gumball2415 #238) + - Generate HTMLHelp manual change log on build time (@Gumball2415 #238) + + + ## Dn0.5.0.1 - 05/10/2023 - ### Important changes: diff --git a/docs/version update.md b/docs/version update.md index 1f6194f9..2ff8d999 100644 --- a/docs/version update.md +++ b/docs/version update.md @@ -1,9 +1,8 @@ # How to update version info in Dn-FT: - Update changelogs: - - changelog.txt - - the release page in Github - - changelog.htm (in Dn-Help) + - CHANGELOG.md, which will update upon build: + - changelog.htm (in Dn-Help) - Edit every file with version info: - Dn-FamiTracker.rc - Version.h @@ -15,7 +14,7 @@ Copyright (C) 2005-2020 Jonathan Liss 0CC-FamiTracker is (C) 2014-2018 HertzDevil -Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +Dn-FamiTracker is (C) 2020-2024 D.P.C.M. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -32,3 +31,9 @@ Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Any permitted reproduction of these routines, in whole or in part, must bear this legend. ``` +- Update copyright years in all licenses + - LICENSE.txt + - all source files with copyright info +- Push version tag to the repo + - This triggers Github Actions to build a draft release +- Edit and publish the draft release page in Github \ No newline at end of file diff --git a/version.h b/version.h index 3859dae3..1f162dbb 100644 --- a/version.h +++ b/version.h @@ -4,7 +4,7 @@ ** ** 0CC-FamiTracker is (C) 2014-2018 HertzDevil ** -** Dn-FamiTracker is (C) 2020-2023 D.P.C.M. +** Dn-FamiTracker is (C) 2020-2024 D.P.C.M. ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by @@ -37,7 +37,7 @@ #define VERSION_API 0 #define VERSION_MAJ 5 #define VERSION_MIN 0 -#define VERSION_REV 1 +#define VERSION_REV 2 #define VERSION VERSION_API,VERSION_MAJ,VERSION_MIN,VERSION_REV