diff --git a/CMakeLists.txt b/CMakeLists.txt
index e49d09a0f..ade0cff52 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2020 LOVE Development Team
+# Copyright (c) 2006-2021 LOVE Development Team
#
# This software is provided 'as-is', without any express or implied
# warranty. In no event will the authors be held liable for any damages
diff --git a/changes.txt b/changes.txt
index 625fe0b63..c8d06c0fc 100644
--- a/changes.txt
+++ b/changes.txt
@@ -37,20 +37,34 @@ LOVE 11.4 [Mysterious Mysteries]
Released: N/A
+* Added Body:getLocalPoints.
+* Added Font:getKerning.
+* Added a variant of Font:getWidth which takes a codepoint number argument.
* Added support for r16, rg16, and rgba16 pixel formats in Canvases.
* Added Shader:send(name, matrixlayout, data, ...) variant, whose argument order is more consistent than Shader:send(name, data, matrixlayout, ...).
* Changed love.timer.getTime to start at 0 when the module is first loaded.
* Fixed build-time compatibility with Lua 5.4.
-* Fixed initial window creation to set the window's title during creation instead of after.
+* Fixed code compatibility with math.mod and string.gfind when LuaJIT 2.1 is used.
+* Fixed errors on some systems related to > 53 bit pointer addresses, when recent versions of LuaJIT 2.1 are used.
* Fixed drag-and-drop to open a love game on macOS causing love.event.quit("restart") to fail.
* Fixed fused macOS apps opening other love games when drag-and-drop is used (if the fused app hasn't already removed .love files from recognized document types).
+* Fixed File:isEOF when called on a dropped file.
+* Fixed support for > 2GB dropped files on desktops.
+* Fixed audio to resume properly after interruption on iOS.
+* Fixed initial window creation to set the window's title during creation instead of after.
+* Fixed the window's screen position when exiting fullscreen via love.window.setFullscreen.
* Fixed memory corruption and a crash when drawing smooth lines.
* Fixed a crash in Canvas:newImageData when the pixel format's pixel byte size multiplied by its width isn't a multiple of 4.
* Fixed love.graphics.newVolumeImage when explicit mipmaps are provided.
* Fixed freezes and crashes in automatic batching when an AMD GPU is used.
* Fixed love.graphics.print and Image:replacePixels on more AMD/ATI GPUs.
+* Fixed Font:setFallbacks to account for different DPI scales in each fallback font.
+* Fixed Text:getWidth when the Text's string only contains spaces.
+* Fixed a crash with some Intel graphics drivers on Linux.
+* Fixed a hang with some Intel graphics drivers on Windows, by preventing gamma correct rendering on affected systems.
+* Fixed a crash with some Intel graphics drivers on Windows when mipmapped Canvases are used.
* Fixed texture memory reported by love.graphics.getStats when a volume or array Canvas is created.
* Fixed rare issues where textures were not sent to shaders correctly.
* Fixed Shader:send(name, data, matrixlayout, ...).
diff --git a/extra/windows/love.rc b/extra/windows/love.rc
index e50a27472..5fcc91c8c 100644
Binary files a/extra/windows/love.rc and b/extra/windows/love.rc differ
diff --git a/license.txt b/license.txt
index 1054e4d74..a133dce58 100644
--- a/license.txt
+++ b/license.txt
@@ -6,7 +6,7 @@ This distribution contains code from the following projects (full license text b
- LOVE
Website: https://love2d.org/
License: zlib
- Copyright (c) 2006-2020 LOVE Development Team
+ Copyright (c) 2006-2021 LOVE Development Team
- ENet
Website: http://enet.bespin.org/index.html
diff --git a/platform/xcode/macosx/love-macosx.plist b/platform/xcode/macosx/love-macosx.plist
index a59b85fe2..e75688f87 100644
--- a/platform/xcode/macosx/love-macosx.plist
+++ b/platform/xcode/macosx/love-macosx.plist
@@ -70,7 +70,7 @@
NSHighResolutionCapable
NSHumanReadableCopyright
- © 2006-2020 LÖVE Development Team
+ © 2006-2021 LÖVE Development Team
NSPrincipalClass
NSApplication
NSSupportsAutomaticGraphicsSwitching
diff --git a/readme.md b/readme.md
index 74b37d122..71c46ecc4 100644
--- a/readme.md
+++ b/readme.md
@@ -1,4 +1,4 @@
-LÖVE is an *awesome* framework you can use to make 2D games in Lua. It's free, open-source, and works on Windows, Mac OS X, Linux, Android, and iOS.
+LÖVE is an *awesome* framework you can use to make 2D games in Lua. It's free, open-source, and works on Windows, macOS, Linux, Android, and iOS.
[](https://ci.appveyor.com/project/AlexSzpakowski/love)
[](https://github.com/love2d/love/actions?query=workflow%3Acontinuous-integration)
@@ -9,6 +9,35 @@ Documentation
We use our [wiki][wiki] for documentation.
If you need further help, feel free to ask on our [forums][forums], our [Discord server][discord], or our IRC channel [#love on OFTC][irc].
+Repository
+----------
+
+We use the 'master' branch for patch development of the current major release, and therefore it should not be considered stable.
+There may also be a branch for the next major version in development, which is named after that version.
+
+We tag all our releases (since we started using mercurial and git), and have binary downloads available for them.
+
+Experimental changes are developed in a separate [love-experiments][love-experiments] repository.
+
+Builds
+------
+
+Files for releases are in the [releases][releases] section on GitHub. [The site][site] has links to files and additional platform content for the latest release.
+
+There are also unstable/nightly builds:
+
+- Builds for some platforms are automatically created after each commit and are available through GitHub's CI interfaces.
+- For ubuntu linux they are in [ppa:bartbes/love-unstable][unstableppa]
+- For arch linux there's [love-git][aur] in the AUR.
+
+Contributing
+------------
+
+The best places to contribute are through the issue tracker and the official Discord server or IRC channel.
+
+For code contributions, pull requests and patches are welcome. Be sure to read the [source code style guide][codestyle].
+Changes and new features typically get discussed in the issue tracker or on Discord or the forums before a pull request is made.
+
Compilation
-----------
@@ -25,11 +54,13 @@ Run `platform/unix/automagic` from the repository root, then run ./configure and
When using a source release, automagic has already been run, and the first step can be skipped.
### macOS
-Download the required frameworks from [here][dependencies] and place them in `/Library/Frameworks/`.
+Download the required frameworks from [here][dependencies] and place them in either `/Library/Frameworks/` or `platform/xcode/macosx/Frameworks/`.
Then use the Xcode project found at `platform/xcode/love.xcodeproj` to build the `love-macosx` target.
### iOS
+Building for iOS requires macOS and Xcode.
+
Download the `ios-libraries` zip file corresponding to the LÖVE version being used from [here][dependencies-ios],
unzip it, and place the `include` and `libraries` subfolders into LÖVE's `platform/xcode/ios` folder.
@@ -40,35 +71,6 @@ See `readme-iOS.rtf` for more information.
### Android
Visit the [Android build repository][android-repository] for build instructions.
-Repository information
-----------------------
-
-We use the 'master' branch for patch development of the current major release, and therefore it should not be considered stable.
-There may also be a branch for the next major version in development, which is named after that version.
-
-We tag all our releases (since we started using mercurial and git), and have binary downloads available for them.
-
-Experimental changes are developed in the separate [love-experiments][love-experiments] repository.
-
-Contributing
-------------
-
-The best places to contribute are through the issue tracker and the official Discord server or IRC channel.
-For code contributions, pull requests and patches are welcome. Be sure to read the [source code style guide][codestyle].
-
-Builds
-------
-
-Releases are found in the [releases][releases] section on GitHub, and are linked on [the site][site],
-and there's a ppa for ubuntu, [ppa:bartbes/love-stable][stableppa].
-
-There are also unstable/nightly builds:
-
-- Builds for some platforms are automatically created after each commit and are available through GitHub's CI interfaces.
-- Otherwise, some less frequently updated builds can can be found [here][builds].
-- For ubuntu linux they are in [ppa:bartbes/love-unstable][unstableppa]
-- For arch linux there's [love-git][aur] in the AUR.
-
Dependencies
------------
@@ -89,8 +91,6 @@ Dependencies
[dependencies]: http://love2d.org/sdk
[dependencies-ios]: https://github.com/love2d/love/releases
[megasource]: https://github.com/love2d/megasource
-[builds]: http://love2d.org/builds
-[stableppa]: https://launchpad.net/~bartbes/+archive/love-stable
[unstableppa]: https://launchpad.net/~bartbes/+archive/love-unstable
[aur]: http://aur.archlinux.org/packages/love-git
[love-experiments]: https://github.com/slime73/love-experiments
diff --git a/src/common/Color.h b/src/common/Color.h
index 172c98688..ff5f74f55 100644
--- a/src/common/Color.h
+++ b/src/common/Color.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/Data.cpp b/src/common/Data.cpp
index 5fd36fca7..f38fc2782 100644
--- a/src/common/Data.cpp
+++ b/src/common/Data.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/Data.h b/src/common/Data.h
index dad7bc2eb..b1df528c3 100644
--- a/src/common/Data.h
+++ b/src/common/Data.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/EnumMap.h b/src/common/EnumMap.h
index 1c1ecfa4f..44df4c5d5 100644
--- a/src/common/EnumMap.h
+++ b/src/common/EnumMap.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/Exception.cpp b/src/common/Exception.cpp
index 278bc24ce..480d2910f 100644
--- a/src/common/Exception.cpp
+++ b/src/common/Exception.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/Exception.h b/src/common/Exception.h
index 04afa34dd..59af366f1 100644
--- a/src/common/Exception.h
+++ b/src/common/Exception.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/Matrix.cpp b/src/common/Matrix.cpp
index bfc388a1f..5aeb78670 100644
--- a/src/common/Matrix.cpp
+++ b/src/common/Matrix.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/Matrix.h b/src/common/Matrix.h
index fb70c0908..f249c276f 100644
--- a/src/common/Matrix.h
+++ b/src/common/Matrix.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/Module.cpp b/src/common/Module.cpp
index 213a39fbf..e5bf51c15 100644
--- a/src/common/Module.cpp
+++ b/src/common/Module.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/Module.h b/src/common/Module.h
index fc789b20a..3b297857e 100644
--- a/src/common/Module.h
+++ b/src/common/Module.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/Object.cpp b/src/common/Object.cpp
index 6d1746e93..407880493 100644
--- a/src/common/Object.cpp
+++ b/src/common/Object.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/Object.h b/src/common/Object.h
index 3e5c94104..62c2eabe5 100644
--- a/src/common/Object.h
+++ b/src/common/Object.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/Optional.h b/src/common/Optional.h
index c0cfbb8a6..802100755 100644
--- a/src/common/Optional.h
+++ b/src/common/Optional.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/Reference.cpp b/src/common/Reference.cpp
index b1735e637..b42824db2 100644
--- a/src/common/Reference.cpp
+++ b/src/common/Reference.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/Reference.h b/src/common/Reference.h
index ec213bdc3..e605dde52 100644
--- a/src/common/Reference.h
+++ b/src/common/Reference.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/StringMap.cpp b/src/common/StringMap.cpp
index 42732d0f6..44f982ea6 100644
--- a/src/common/StringMap.cpp
+++ b/src/common/StringMap.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/StringMap.h b/src/common/StringMap.h
index b373e8f32..fc5aeb0d4 100644
--- a/src/common/StringMap.h
+++ b/src/common/StringMap.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/Variant.cpp b/src/common/Variant.cpp
index 5c6c01dc6..28e931a3c 100644
--- a/src/common/Variant.cpp
+++ b/src/common/Variant.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/Variant.h b/src/common/Variant.h
index f7df8f686..b0089feb3 100644
--- a/src/common/Variant.h
+++ b/src/common/Variant.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/Vector.cpp b/src/common/Vector.cpp
index c4cc55143..54ac37455 100644
--- a/src/common/Vector.cpp
+++ b/src/common/Vector.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/Vector.h b/src/common/Vector.h
index e2751029d..f824f66ba 100644
--- a/src/common/Vector.h
+++ b/src/common/Vector.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/android.cpp b/src/common/android.cpp
index e6394847d..075b6b7d9 100644
--- a/src/common/android.cpp
+++ b/src/common/android.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/android.h b/src/common/android.h
index 9f066c2e8..68b2259bf 100644
--- a/src/common/android.h
+++ b/src/common/android.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/b64.cpp b/src/common/b64.cpp
index ed7de2147..882a97c86 100644
--- a/src/common/b64.cpp
+++ b/src/common/b64.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/b64.h b/src/common/b64.h
index 086cf37ff..23135f231 100644
--- a/src/common/b64.h
+++ b/src/common/b64.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/config.h b/src/common/config.h
index 3d588cbca..4254e9021 100644
--- a/src/common/config.h
+++ b/src/common/config.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/delay.cpp b/src/common/delay.cpp
index 03b7ea72d..e0bb1b445 100644
--- a/src/common/delay.cpp
+++ b/src/common/delay.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/delay.h b/src/common/delay.h
index 47217d6f2..54fa67d73 100644
--- a/src/common/delay.h
+++ b/src/common/delay.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/deprecation.cpp b/src/common/deprecation.cpp
index 037fc15d7..84e82d78b 100644
--- a/src/common/deprecation.cpp
+++ b/src/common/deprecation.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/deprecation.h b/src/common/deprecation.h
index 115ac42b3..5eea087e9 100644
--- a/src/common/deprecation.h
+++ b/src/common/deprecation.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/floattypes.cpp b/src/common/floattypes.cpp
index 13684b037..56de1a209 100644
--- a/src/common/floattypes.cpp
+++ b/src/common/floattypes.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/floattypes.h b/src/common/floattypes.h
index 4f08e6332..6bea5a875 100644
--- a/src/common/floattypes.h
+++ b/src/common/floattypes.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/int.h b/src/common/int.h
index 81692cc5a..a046c61a0 100644
--- a/src/common/int.h
+++ b/src/common/int.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/ios.h b/src/common/ios.h
index 42599535e..0f3aa1959 100644
--- a/src/common/ios.h
+++ b/src/common/ios.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/ios.mm b/src/common/ios.mm
index 8b1a87c71..3d23b67db 100644
--- a/src/common/ios.mm
+++ b/src/common/ios.mm
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/macos.h b/src/common/macos.h
index 297c8f116..299fcf8e6 100644
--- a/src/common/macos.h
+++ b/src/common/macos.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/macos.mm b/src/common/macos.mm
index 06edf8a37..8e0fe6136 100644
--- a/src/common/macos.mm
+++ b/src/common/macos.mm
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/math.h b/src/common/math.h
index b9aeb4102..9b71020b9 100644
--- a/src/common/math.h
+++ b/src/common/math.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/memory.cpp b/src/common/memory.cpp
index 6907acd02..de4e4f84a 100644
--- a/src/common/memory.cpp
+++ b/src/common/memory.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/memory.h b/src/common/memory.h
index f5b11d5e0..509c0242c 100644
--- a/src/common/memory.h
+++ b/src/common/memory.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/pixelformat.cpp b/src/common/pixelformat.cpp
index 6ded27517..e0c80f838 100644
--- a/src/common/pixelformat.cpp
+++ b/src/common/pixelformat.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/pixelformat.h b/src/common/pixelformat.h
index a1a4b1ddb..f44937f99 100644
--- a/src/common/pixelformat.h
+++ b/src/common/pixelformat.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/runtime.cpp b/src/common/runtime.cpp
index 54619bf33..3116d5dde 100644
--- a/src/common/runtime.cpp
+++ b/src/common/runtime.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/runtime.h b/src/common/runtime.h
index 871571052..f0f343bd1 100644
--- a/src/common/runtime.h
+++ b/src/common/runtime.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/types.cpp b/src/common/types.cpp
index a1ae147e2..28ec8f70c 100644
--- a/src/common/types.cpp
+++ b/src/common/types.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/types.h b/src/common/types.h
index c61c5dcf8..a96cc986c 100644
--- a/src/common/types.h
+++ b/src/common/types.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/utf8.cpp b/src/common/utf8.cpp
index f29053132..bd56b42f7 100644
--- a/src/common/utf8.cpp
+++ b/src/common/utf8.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/utf8.h b/src/common/utf8.h
index 1b18e1383..eb929d77e 100644
--- a/src/common/utf8.h
+++ b/src/common/utf8.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/common/version.h b/src/common/version.h
index 569ed158e..3f8f9cb65 100644
--- a/src/common/version.h
+++ b/src/common/version.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/libraries/luasocket/luasocket.h b/src/libraries/luasocket/luasocket.h
index 1ea74d11a..a5dd776ff 100644
--- a/src/libraries/luasocket/luasocket.h
+++ b/src/libraries/luasocket/luasocket.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/love.cpp b/src/love.cpp
index 553393bdc..ce4e5ae0d 100644
--- a/src/love.cpp
+++ b/src/love.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/Audio.cpp b/src/modules/audio/Audio.cpp
index 77b0ec833..919addc7f 100644
--- a/src/modules/audio/Audio.cpp
+++ b/src/modules/audio/Audio.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/Audio.h b/src/modules/audio/Audio.h
index d2bfc4132..79651d034 100644
--- a/src/modules/audio/Audio.h
+++ b/src/modules/audio/Audio.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/Effect.cpp b/src/modules/audio/Effect.cpp
index 0b6657c78..847af95d2 100644
--- a/src/modules/audio/Effect.cpp
+++ b/src/modules/audio/Effect.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/Effect.h b/src/modules/audio/Effect.h
index 926a64c44..e4171d068 100644
--- a/src/modules/audio/Effect.h
+++ b/src/modules/audio/Effect.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/Filter.cpp b/src/modules/audio/Filter.cpp
index c7dde72a5..87f0673db 100644
--- a/src/modules/audio/Filter.cpp
+++ b/src/modules/audio/Filter.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/Filter.h b/src/modules/audio/Filter.h
index de638d4ed..9d4e439e2 100644
--- a/src/modules/audio/Filter.h
+++ b/src/modules/audio/Filter.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/RecordingDevice.cpp b/src/modules/audio/RecordingDevice.cpp
index 2a6434fab..5c436fc38 100644
--- a/src/modules/audio/RecordingDevice.cpp
+++ b/src/modules/audio/RecordingDevice.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/RecordingDevice.h b/src/modules/audio/RecordingDevice.h
index 617ffc858..fc4446b92 100644
--- a/src/modules/audio/RecordingDevice.h
+++ b/src/modules/audio/RecordingDevice.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/Source.cpp b/src/modules/audio/Source.cpp
index 791437b56..9dbca3359 100644
--- a/src/modules/audio/Source.cpp
+++ b/src/modules/audio/Source.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/Source.h b/src/modules/audio/Source.h
index 6f5c0a0e5..30aca9614 100644
--- a/src/modules/audio/Source.h
+++ b/src/modules/audio/Source.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/null/Audio.cpp b/src/modules/audio/null/Audio.cpp
index 8fa9eee8d..6485006e1 100644
--- a/src/modules/audio/null/Audio.cpp
+++ b/src/modules/audio/null/Audio.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/null/Audio.h b/src/modules/audio/null/Audio.h
index 367c25bad..123610b12 100644
--- a/src/modules/audio/null/Audio.h
+++ b/src/modules/audio/null/Audio.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/null/RecordingDevice.cpp b/src/modules/audio/null/RecordingDevice.cpp
index ae93c8988..2ed4b3074 100644
--- a/src/modules/audio/null/RecordingDevice.cpp
+++ b/src/modules/audio/null/RecordingDevice.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/null/RecordingDevice.h b/src/modules/audio/null/RecordingDevice.h
index 4d11fad4f..084139950 100644
--- a/src/modules/audio/null/RecordingDevice.h
+++ b/src/modules/audio/null/RecordingDevice.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/null/Source.cpp b/src/modules/audio/null/Source.cpp
index 93acd345e..2335cbb6a 100644
--- a/src/modules/audio/null/Source.cpp
+++ b/src/modules/audio/null/Source.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/null/Source.h b/src/modules/audio/null/Source.h
index 23fd24ed8..6905f80df 100644
--- a/src/modules/audio/null/Source.h
+++ b/src/modules/audio/null/Source.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/openal/Audio.cpp b/src/modules/audio/openal/Audio.cpp
index d62a272ac..ee0d1de88 100644
--- a/src/modules/audio/openal/Audio.cpp
+++ b/src/modules/audio/openal/Audio.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/openal/Audio.h b/src/modules/audio/openal/Audio.h
index 75e6a26bc..3ca6dbdce 100644
--- a/src/modules/audio/openal/Audio.h
+++ b/src/modules/audio/openal/Audio.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/openal/Filter.cpp b/src/modules/audio/openal/Filter.cpp
index 8a03a5d31..52b782e10 100644
--- a/src/modules/audio/openal/Filter.cpp
+++ b/src/modules/audio/openal/Filter.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/openal/Filter.h b/src/modules/audio/openal/Filter.h
index 51465f9c0..c0b361640 100644
--- a/src/modules/audio/openal/Filter.h
+++ b/src/modules/audio/openal/Filter.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/openal/Pool.cpp b/src/modules/audio/openal/Pool.cpp
index 8548063b8..ec7e65192 100644
--- a/src/modules/audio/openal/Pool.cpp
+++ b/src/modules/audio/openal/Pool.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/openal/Pool.h b/src/modules/audio/openal/Pool.h
index bdeb71ee8..51a84c480 100644
--- a/src/modules/audio/openal/Pool.h
+++ b/src/modules/audio/openal/Pool.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/openal/RecordingDevice.cpp b/src/modules/audio/openal/RecordingDevice.cpp
index ad4f17768..7c39d33cd 100644
--- a/src/modules/audio/openal/RecordingDevice.cpp
+++ b/src/modules/audio/openal/RecordingDevice.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/openal/RecordingDevice.h b/src/modules/audio/openal/RecordingDevice.h
index 78a22962e..7d679254b 100644
--- a/src/modules/audio/openal/RecordingDevice.h
+++ b/src/modules/audio/openal/RecordingDevice.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/openal/Source.cpp b/src/modules/audio/openal/Source.cpp
index 1f17bcbe8..fae4ce0f8 100644
--- a/src/modules/audio/openal/Source.cpp
+++ b/src/modules/audio/openal/Source.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/openal/Source.h b/src/modules/audio/openal/Source.h
index 346513265..1c3595747 100644
--- a/src/modules/audio/openal/Source.h
+++ b/src/modules/audio/openal/Source.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/wrap_Audio.cpp b/src/modules/audio/wrap_Audio.cpp
index d3fea6f8e..c6588dafc 100644
--- a/src/modules/audio/wrap_Audio.cpp
+++ b/src/modules/audio/wrap_Audio.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/audio/wrap_Audio.h b/src/modules/audio/wrap_Audio.h
index 9afc5fbb9..537271f7f 100644
--- a/src/modules/audio/wrap_Audio.h
+++ b/src/modules/audio/wrap_Audio.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/data/ByteData.cpp b/src/modules/data/ByteData.cpp
index 4e1df8601..2c59a159e 100644
--- a/src/modules/data/ByteData.cpp
+++ b/src/modules/data/ByteData.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/data/ByteData.h b/src/modules/data/ByteData.h
index 6426a73bf..964c3a1a0 100644
--- a/src/modules/data/ByteData.h
+++ b/src/modules/data/ByteData.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/data/CompressedData.cpp b/src/modules/data/CompressedData.cpp
index bd7b30d6c..110a14061 100644
--- a/src/modules/data/CompressedData.cpp
+++ b/src/modules/data/CompressedData.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/data/CompressedData.h b/src/modules/data/CompressedData.h
index d4c2f4d29..b534818de 100644
--- a/src/modules/data/CompressedData.h
+++ b/src/modules/data/CompressedData.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/data/Compressor.cpp b/src/modules/data/Compressor.cpp
index 3ae03bb0a..9bdce1725 100644
--- a/src/modules/data/Compressor.cpp
+++ b/src/modules/data/Compressor.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/data/Compressor.h b/src/modules/data/Compressor.h
index 632292ef4..0b91e8ab7 100644
--- a/src/modules/data/Compressor.h
+++ b/src/modules/data/Compressor.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/data/DataModule.cpp b/src/modules/data/DataModule.cpp
index a18319c2e..2b07f3656 100644
--- a/src/modules/data/DataModule.cpp
+++ b/src/modules/data/DataModule.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/data/DataModule.h b/src/modules/data/DataModule.h
index 5eca24985..e2fa85298 100644
--- a/src/modules/data/DataModule.h
+++ b/src/modules/data/DataModule.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/data/DataView.cpp b/src/modules/data/DataView.cpp
index 047ffe103..c43a52b9a 100644
--- a/src/modules/data/DataView.cpp
+++ b/src/modules/data/DataView.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/data/DataView.h b/src/modules/data/DataView.h
index 8e1a095e3..21e27a9a4 100644
--- a/src/modules/data/DataView.h
+++ b/src/modules/data/DataView.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/data/HashFunction.cpp b/src/modules/data/HashFunction.cpp
index b645fa4e5..860f26c27 100644
--- a/src/modules/data/HashFunction.cpp
+++ b/src/modules/data/HashFunction.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/data/HashFunction.h b/src/modules/data/HashFunction.h
index 860ce0813..3ecbe0c0c 100644
--- a/src/modules/data/HashFunction.h
+++ b/src/modules/data/HashFunction.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/data/wrap_ByteData.cpp b/src/modules/data/wrap_ByteData.cpp
index 446f62214..ae82cff36 100644
--- a/src/modules/data/wrap_ByteData.cpp
+++ b/src/modules/data/wrap_ByteData.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/data/wrap_Data.cpp b/src/modules/data/wrap_Data.cpp
index 681318d4a..29541f1fb 100644
--- a/src/modules/data/wrap_Data.cpp
+++ b/src/modules/data/wrap_Data.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/data/wrap_DataModule.cpp b/src/modules/data/wrap_DataModule.cpp
index e88042b89..f18c5f6f8 100644
--- a/src/modules/data/wrap_DataModule.cpp
+++ b/src/modules/data/wrap_DataModule.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/data/wrap_DataModule.h b/src/modules/data/wrap_DataModule.h
index 353b94b91..b89a13428 100644
--- a/src/modules/data/wrap_DataModule.h
+++ b/src/modules/data/wrap_DataModule.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/data/wrap_DataView.cpp b/src/modules/data/wrap_DataView.cpp
index 9aec29d7c..9b4b29ce1 100644
--- a/src/modules/data/wrap_DataView.cpp
+++ b/src/modules/data/wrap_DataView.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/event/Event.cpp b/src/modules/event/Event.cpp
index 8f8d82f9e..0e5f12257 100644
--- a/src/modules/event/Event.cpp
+++ b/src/modules/event/Event.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/event/Event.h b/src/modules/event/Event.h
index 52583a877..85229c1de 100644
--- a/src/modules/event/Event.h
+++ b/src/modules/event/Event.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/event/sdl/Event.cpp b/src/modules/event/sdl/Event.cpp
index 59b779863..e5fb9d1eb 100644
--- a/src/modules/event/sdl/Event.cpp
+++ b/src/modules/event/sdl/Event.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/event/sdl/Event.h b/src/modules/event/sdl/Event.h
index 97c45739f..e7642e20d 100644
--- a/src/modules/event/sdl/Event.h
+++ b/src/modules/event/sdl/Event.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/filesystem/File.cpp b/src/modules/filesystem/File.cpp
index 39f3da87f..26f4f6be4 100644
--- a/src/modules/filesystem/File.cpp
+++ b/src/modules/filesystem/File.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/filesystem/File.h b/src/modules/filesystem/File.h
index 52f128066..d283d399f 100644
--- a/src/modules/filesystem/File.h
+++ b/src/modules/filesystem/File.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/filesystem/FileData.cpp b/src/modules/filesystem/FileData.cpp
index 4e4b8c6db..384da0826 100644
--- a/src/modules/filesystem/FileData.cpp
+++ b/src/modules/filesystem/FileData.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/filesystem/FileData.h b/src/modules/filesystem/FileData.h
index 344eff142..f40d0c27a 100644
--- a/src/modules/filesystem/FileData.h
+++ b/src/modules/filesystem/FileData.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/filesystem/Filesystem.cpp b/src/modules/filesystem/Filesystem.cpp
index 391bf732c..fcdc3f79a 100644
--- a/src/modules/filesystem/Filesystem.cpp
+++ b/src/modules/filesystem/Filesystem.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/filesystem/Filesystem.h b/src/modules/filesystem/Filesystem.h
index e58c9ad13..45f95af93 100644
--- a/src/modules/filesystem/Filesystem.h
+++ b/src/modules/filesystem/Filesystem.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/filesystem/NativeFile.cpp b/src/modules/filesystem/NativeFile.cpp
index e3a12166a..51465b537 100644
--- a/src/modules/filesystem/NativeFile.cpp
+++ b/src/modules/filesystem/NativeFile.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/filesystem/NativeFile.h b/src/modules/filesystem/NativeFile.h
index 1e1610343..027849966 100644
--- a/src/modules/filesystem/NativeFile.h
+++ b/src/modules/filesystem/NativeFile.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/filesystem/physfs/File.cpp b/src/modules/filesystem/physfs/File.cpp
index c20626f21..cc9165633 100644
--- a/src/modules/filesystem/physfs/File.cpp
+++ b/src/modules/filesystem/physfs/File.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/filesystem/physfs/File.h b/src/modules/filesystem/physfs/File.h
index 2872799ea..4c6fee776 100644
--- a/src/modules/filesystem/physfs/File.h
+++ b/src/modules/filesystem/physfs/File.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/filesystem/physfs/Filesystem.cpp b/src/modules/filesystem/physfs/Filesystem.cpp
index 8768711dc..ddb4b3c2c 100644
--- a/src/modules/filesystem/physfs/Filesystem.cpp
+++ b/src/modules/filesystem/physfs/Filesystem.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/filesystem/physfs/Filesystem.h b/src/modules/filesystem/physfs/Filesystem.h
index 1ad915981..6a2b3a6c6 100644
--- a/src/modules/filesystem/physfs/Filesystem.h
+++ b/src/modules/filesystem/physfs/Filesystem.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/filesystem/wrap_File.h b/src/modules/filesystem/wrap_File.h
index 342a21229..9878e8eae 100644
--- a/src/modules/filesystem/wrap_File.h
+++ b/src/modules/filesystem/wrap_File.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/filesystem/wrap_NativeFile.cpp b/src/modules/filesystem/wrap_NativeFile.cpp
index 7a2d18c45..368ba8a28 100644
--- a/src/modules/filesystem/wrap_NativeFile.cpp
+++ b/src/modules/filesystem/wrap_NativeFile.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/font/BMFontRasterizer.cpp b/src/modules/font/BMFontRasterizer.cpp
index 3495138ec..373fa2c98 100644
--- a/src/modules/font/BMFontRasterizer.cpp
+++ b/src/modules/font/BMFontRasterizer.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/font/BMFontRasterizer.h b/src/modules/font/BMFontRasterizer.h
index c5ced5eac..aaf061c2c 100644
--- a/src/modules/font/BMFontRasterizer.h
+++ b/src/modules/font/BMFontRasterizer.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/font/Font.cpp b/src/modules/font/Font.cpp
index 7b749994e..a4e210c50 100644
--- a/src/modules/font/Font.cpp
+++ b/src/modules/font/Font.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/font/Font.h b/src/modules/font/Font.h
index 5386c1e2b..2049e9d50 100644
--- a/src/modules/font/Font.h
+++ b/src/modules/font/Font.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/font/GlyphData.cpp b/src/modules/font/GlyphData.cpp
index 69ec25ca8..322f7ddb7 100644
--- a/src/modules/font/GlyphData.cpp
+++ b/src/modules/font/GlyphData.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/font/GlyphData.h b/src/modules/font/GlyphData.h
index ac57d227e..3e3ed2463 100644
--- a/src/modules/font/GlyphData.h
+++ b/src/modules/font/GlyphData.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/font/ImageRasterizer.cpp b/src/modules/font/ImageRasterizer.cpp
index 00b5f7ccd..359376566 100644
--- a/src/modules/font/ImageRasterizer.cpp
+++ b/src/modules/font/ImageRasterizer.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/font/ImageRasterizer.h b/src/modules/font/ImageRasterizer.h
index 10aa2dcff..63b82cd8e 100644
--- a/src/modules/font/ImageRasterizer.h
+++ b/src/modules/font/ImageRasterizer.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/font/Rasterizer.cpp b/src/modules/font/Rasterizer.cpp
index 04e49fea5..5cd2724b2 100644
--- a/src/modules/font/Rasterizer.cpp
+++ b/src/modules/font/Rasterizer.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/font/Rasterizer.h b/src/modules/font/Rasterizer.h
index 949af6cfe..4e529a18b 100644
--- a/src/modules/font/Rasterizer.h
+++ b/src/modules/font/Rasterizer.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/font/TrueTypeRasterizer.cpp b/src/modules/font/TrueTypeRasterizer.cpp
index f7bcce39d..286e42394 100644
--- a/src/modules/font/TrueTypeRasterizer.cpp
+++ b/src/modules/font/TrueTypeRasterizer.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/font/TrueTypeRasterizer.h b/src/modules/font/TrueTypeRasterizer.h
index 9971f12e1..02a032800 100644
--- a/src/modules/font/TrueTypeRasterizer.h
+++ b/src/modules/font/TrueTypeRasterizer.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/font/freetype/Font.cpp b/src/modules/font/freetype/Font.cpp
index b33c4e968..1cecd5f0a 100644
--- a/src/modules/font/freetype/Font.cpp
+++ b/src/modules/font/freetype/Font.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/font/freetype/Font.h b/src/modules/font/freetype/Font.h
index cc228178f..3d7955576 100644
--- a/src/modules/font/freetype/Font.h
+++ b/src/modules/font/freetype/Font.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/font/freetype/TrueTypeRasterizer.cpp b/src/modules/font/freetype/TrueTypeRasterizer.cpp
index 02ca690e2..1906048fe 100644
--- a/src/modules/font/freetype/TrueTypeRasterizer.cpp
+++ b/src/modules/font/freetype/TrueTypeRasterizer.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/font/freetype/TrueTypeRasterizer.h b/src/modules/font/freetype/TrueTypeRasterizer.h
index 7c977a9bf..159df5d2b 100644
--- a/src/modules/font/freetype/TrueTypeRasterizer.h
+++ b/src/modules/font/freetype/TrueTypeRasterizer.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/font/wrap_Font.cpp b/src/modules/font/wrap_Font.cpp
index aa4827ed5..68477a150 100644
--- a/src/modules/font/wrap_Font.cpp
+++ b/src/modules/font/wrap_Font.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/font/wrap_Font.h b/src/modules/font/wrap_Font.h
index ff3d0da31..c8e49571c 100644
--- a/src/modules/font/wrap_Font.h
+++ b/src/modules/font/wrap_Font.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/font/wrap_GlyphData.cpp b/src/modules/font/wrap_GlyphData.cpp
index 3a2adec06..1ba35bea0 100644
--- a/src/modules/font/wrap_GlyphData.cpp
+++ b/src/modules/font/wrap_GlyphData.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/font/wrap_Rasterizer.cpp b/src/modules/font/wrap_Rasterizer.cpp
index 44c656833..044825114 100644
--- a/src/modules/font/wrap_Rasterizer.cpp
+++ b/src/modules/font/wrap_Rasterizer.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/font/wrap_Rasterizer.h b/src/modules/font/wrap_Rasterizer.h
index 54b6cba83..e3ba9621e 100644
--- a/src/modules/font/wrap_Rasterizer.h
+++ b/src/modules/font/wrap_Rasterizer.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/Buffer.cpp b/src/modules/graphics/Buffer.cpp
index 380e5173c..f040cbd51 100644
--- a/src/modules/graphics/Buffer.cpp
+++ b/src/modules/graphics/Buffer.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/Buffer.h b/src/modules/graphics/Buffer.h
index e115f054a..0488404c3 100644
--- a/src/modules/graphics/Buffer.h
+++ b/src/modules/graphics/Buffer.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/Deprecations.cpp b/src/modules/graphics/Deprecations.cpp
index 9e312accb..ba997d8a7 100644
--- a/src/modules/graphics/Deprecations.cpp
+++ b/src/modules/graphics/Deprecations.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/Deprecations.h b/src/modules/graphics/Deprecations.h
index 5d7a29378..bb62d98cd 100644
--- a/src/modules/graphics/Deprecations.h
+++ b/src/modules/graphics/Deprecations.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/Drawable.cpp b/src/modules/graphics/Drawable.cpp
index e85770d11..0613e1637 100644
--- a/src/modules/graphics/Drawable.cpp
+++ b/src/modules/graphics/Drawable.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/Drawable.h b/src/modules/graphics/Drawable.h
index 444cada65..570830daf 100644
--- a/src/modules/graphics/Drawable.h
+++ b/src/modules/graphics/Drawable.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/Font.cpp b/src/modules/graphics/Font.cpp
index a3ae3082a..341526cdf 100644
--- a/src/modules/graphics/Font.cpp
+++ b/src/modules/graphics/Font.cpp
@@ -1,5 +1,5 @@
/**
-* Copyright (c) 2006-2020 LOVE Development Team
+* Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
@@ -206,7 +206,7 @@ void Font::unloadVolatile()
textures.clear();
}
-love::font::GlyphData *Font::getRasterizerGlyphData(uint32 glyph)
+love::font::GlyphData *Font::getRasterizerGlyphData(uint32 glyph, float &dpiscale)
{
// Use spaces for the tab 'glyph'.
if (glyph == 9 && useSpacesAsTab)
@@ -221,21 +221,27 @@ love::font::GlyphData *Font::getRasterizerGlyphData(uint32 glyph)
spacegd->release();
+ dpiscale = rasterizers[0]->getDPIScale();
return new love::font::GlyphData(glyph, gm, fmt);
}
for (const StrongRef &r : rasterizers)
{
if (r->hasGlyph(glyph))
+ {
+ dpiscale = r->getDPIScale();
return r->getGlyphData(glyph);
+ }
}
+ dpiscale = rasterizers[0]->getDPIScale();
return rasterizers[0]->getGlyphData(glyph);
}
const Font::Glyph &Font::addGlyph(uint32 glyph)
{
- StrongRef gd(getRasterizerGlyphData(glyph), Acquire::NORETAIN);
+ float glyphdpiscale = getDPIScale();
+ StrongRef gd(getRasterizerGlyphData(glyph, glyphdpiscale), Acquire::NORETAIN);
int w = gd->getWidth();
int h = gd->getHeight();
@@ -264,7 +270,7 @@ const Font::Glyph &Font::addGlyph(uint32 glyph)
Glyph g;
g.texture = 0;
- g.spacing = floorf(gd->getAdvance() / dpiScale + 0.5f);
+ g.spacing = floorf(gd->getAdvance() / glyphdpiscale + 0.5f);
memset(g.vertices, 0, sizeof(GlyphVertex) * 4);
@@ -292,18 +298,18 @@ const Font::Glyph &Font::addGlyph(uint32 glyph)
// 1---3
const GlyphVertex verts[4] =
{
- {float(-o), float(-o), normToUint16((tX-o)/tWidth), normToUint16((tY-o)/tHeight), c},
- {float(-o), (h+o)/dpiScale, normToUint16((tX-o)/tWidth), normToUint16((tY+h+o)/tHeight), c},
- {(w+o)/dpiScale, float(-o), normToUint16((tX+w+o)/tWidth), normToUint16((tY-o)/tHeight), c},
- {(w+o)/dpiScale, (h+o)/dpiScale, normToUint16((tX+w+o)/tWidth), normToUint16((tY+h+o)/tHeight), c}
+ {float(-o), float(-o), normToUint16((tX-o)/tWidth), normToUint16((tY-o)/tHeight), c},
+ {float(-o), (h+o)/glyphdpiscale, normToUint16((tX-o)/tWidth), normToUint16((tY+h+o)/tHeight), c},
+ {(w+o)/glyphdpiscale, float(-o), normToUint16((tX+w+o)/tWidth), normToUint16((tY-o)/tHeight), c},
+ {(w+o)/glyphdpiscale, (h+o)/glyphdpiscale, normToUint16((tX+w+o)/tWidth), normToUint16((tY+h+o)/tHeight), c}
};
// Copy vertex data to the glyph and set proper bearing.
for (int i = 0; i < 4; i++)
{
g.vertices[i] = verts[i];
- g.vertices[i].x += gd->getBearingX() / dpiScale;
- g.vertices[i].y -= gd->getBearingY() / dpiScale;
+ g.vertices[i].x += gd->getBearingX() / glyphdpiscale;
+ g.vertices[i].y -= gd->getBearingY() / glyphdpiscale;
}
textureX += w + TEXTURE_PADDING;
@@ -332,13 +338,13 @@ float Font::getKerning(uint32 leftglyph, uint32 rightglyph)
if (it != kerning.end())
return it->second;
- float k = rasterizers[0]->getKerning(leftglyph, rightglyph);
+ float k = rasterizers[0]->getKerning(leftglyph, rightglyph) / dpiScale + 0.5f;
for (const auto &r : rasterizers)
{
if (r->hasGlyph(leftglyph) && r->hasGlyph(rightglyph))
{
- k = floorf(r->getKerning(leftglyph, rightglyph) / dpiScale + 0.5f);
+ k = floorf(r->getKerning(leftglyph, rightglyph) / r->getDPIScale() + 0.5f);
break;
}
}
@@ -347,6 +353,24 @@ float Font::getKerning(uint32 leftglyph, uint32 rightglyph)
return k;
}
+float Font::getKerning(const std::string &leftchar, const std::string &rightchar)
+{
+ uint32 left = 0;
+ uint32 right = 0;
+
+ try
+ {
+ left = utf8::peek_next(leftchar.begin(), leftchar.end());
+ right = utf8::peek_next(rightchar.begin(), rightchar.end());
+ }
+ catch (utf8::exception &e)
+ {
+ throw love::Exception("UTF-8 decoding error: %s", e.what());
+ }
+
+ return getKerning(left, right);
+}
+
void Font::getCodepointsFromString(const std::string &text, Codepoints &codepoints)
{
codepoints.reserve(text.size());
@@ -723,9 +747,9 @@ int Font::getWidth(const std::string &str)
return max_width;
}
-int Font::getWidth(char character)
+int Font::getWidth(uint32 glyph)
{
- const Glyph &g = findGlyph(character);
+ const Glyph &g = findGlyph(glyph);
return g.spacing;
}
diff --git a/src/modules/graphics/Font.h b/src/modules/graphics/Font.h
index 8e0421595..ef1ede024 100644
--- a/src/modules/graphics/Font.h
+++ b/src/modules/graphics/Font.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
@@ -128,11 +128,9 @@ public:
int getWidth(const std::string &str);
/**
- * Returns the width of the passed character.
- *
- * @param character A character.
+ * Returns the width of the passed glyph.
**/
- int getWidth(char character);
+ int getWidth(uint32 glyph);
/**
* Returns the maximal width of a wrapped string
@@ -169,6 +167,9 @@ public:
bool hasGlyph(uint32 glyph) const;
bool hasGlyphs(const std::string &text) const;
+ float getKerning(uint32 leftglyph, uint32 rightglyph);
+ float getKerning(const std::string &leftchar, const std::string &rightchar);
+
void setFallbacks(const std::vector &fallbacks);
float getDPIScale() const;
@@ -203,10 +204,9 @@ private:
void createTexture();
TextureSize getNextTextureSize() const;
- love::font::GlyphData *getRasterizerGlyphData(uint32 glyph);
+ love::font::GlyphData *getRasterizerGlyphData(uint32 glyph, float &dpiscale);
const Glyph &addGlyph(uint32 glyph);
const Glyph &findGlyph(uint32 glyph);
- float getKerning(uint32 leftglyph, uint32 rightglyph);
void printv(Graphics *gfx, const Matrix4 &t, const std::vector &drawcommands, const std::vector &vertices);
std::vector> rasterizers;
diff --git a/src/modules/graphics/Graphics.cpp b/src/modules/graphics/Graphics.cpp
index 1ae95803b..7b4d9425a 100644
--- a/src/modules/graphics/Graphics.cpp
+++ b/src/modules/graphics/Graphics.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/Graphics.h b/src/modules/graphics/Graphics.h
index 67a0198a0..c03991d8b 100644
--- a/src/modules/graphics/Graphics.h
+++ b/src/modules/graphics/Graphics.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/Mesh.cpp b/src/modules/graphics/Mesh.cpp
index 410c38ab2..3199a7eb0 100644
--- a/src/modules/graphics/Mesh.cpp
+++ b/src/modules/graphics/Mesh.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/Mesh.h b/src/modules/graphics/Mesh.h
index bfe2ccec8..4ce772fce 100644
--- a/src/modules/graphics/Mesh.h
+++ b/src/modules/graphics/Mesh.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/ParticleSystem.cpp b/src/modules/graphics/ParticleSystem.cpp
index a775c1887..fb01c2b73 100644
--- a/src/modules/graphics/ParticleSystem.cpp
+++ b/src/modules/graphics/ParticleSystem.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/ParticleSystem.h b/src/modules/graphics/ParticleSystem.h
index 374cd846c..ba399ac5e 100644
--- a/src/modules/graphics/ParticleSystem.h
+++ b/src/modules/graphics/ParticleSystem.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/Polyline.cpp b/src/modules/graphics/Polyline.cpp
index a7972cc59..8df0424b8 100644
--- a/src/modules/graphics/Polyline.cpp
+++ b/src/modules/graphics/Polyline.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/Polyline.h b/src/modules/graphics/Polyline.h
index 32bd4c621..62f5dae6a 100644
--- a/src/modules/graphics/Polyline.h
+++ b/src/modules/graphics/Polyline.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/Quad.cpp b/src/modules/graphics/Quad.cpp
index b719ed25f..53ea11177 100644
--- a/src/modules/graphics/Quad.cpp
+++ b/src/modules/graphics/Quad.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/Quad.h b/src/modules/graphics/Quad.h
index 76daa46cf..c0d84b1a0 100644
--- a/src/modules/graphics/Quad.h
+++ b/src/modules/graphics/Quad.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/Resource.h b/src/modules/graphics/Resource.h
index 13173978f..a3908ead2 100644
--- a/src/modules/graphics/Resource.h
+++ b/src/modules/graphics/Resource.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/Shader.cpp b/src/modules/graphics/Shader.cpp
index a8e7457fe..46f1b9d97 100644
--- a/src/modules/graphics/Shader.cpp
+++ b/src/modules/graphics/Shader.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/Shader.h b/src/modules/graphics/Shader.h
index 3660bd16f..16eb78d22 100644
--- a/src/modules/graphics/Shader.h
+++ b/src/modules/graphics/Shader.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/ShaderStage.cpp b/src/modules/graphics/ShaderStage.cpp
index 13b91c127..0a8a355b8 100644
--- a/src/modules/graphics/ShaderStage.cpp
+++ b/src/modules/graphics/ShaderStage.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/ShaderStage.h b/src/modules/graphics/ShaderStage.h
index 6465c31c5..675da5bf8 100644
--- a/src/modules/graphics/ShaderStage.h
+++ b/src/modules/graphics/ShaderStage.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/SpriteBatch.cpp b/src/modules/graphics/SpriteBatch.cpp
index 2af56d252..97f838a0c 100644
--- a/src/modules/graphics/SpriteBatch.cpp
+++ b/src/modules/graphics/SpriteBatch.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/SpriteBatch.h b/src/modules/graphics/SpriteBatch.h
index 4a0d80cbd..ec77e2315 100644
--- a/src/modules/graphics/SpriteBatch.h
+++ b/src/modules/graphics/SpriteBatch.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/StreamBuffer.cpp b/src/modules/graphics/StreamBuffer.cpp
index 2440a3902..5a594de38 100644
--- a/src/modules/graphics/StreamBuffer.cpp
+++ b/src/modules/graphics/StreamBuffer.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/StreamBuffer.h b/src/modules/graphics/StreamBuffer.h
index a669ec78a..b590f4762 100644
--- a/src/modules/graphics/StreamBuffer.h
+++ b/src/modules/graphics/StreamBuffer.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/Text.cpp b/src/modules/graphics/Text.cpp
index 413125293..fad5f623e 100644
--- a/src/modules/graphics/Text.cpp
+++ b/src/modules/graphics/Text.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
@@ -133,9 +133,6 @@ void Text::addTextData(const TextData &t)
textData.clear();
}
- if (vertices.empty())
- return;
-
if (t.useMatrix)
t.matrix.transformXY(&vertices[0], &vertices[0], (int) vertices.size());
diff --git a/src/modules/graphics/Text.h b/src/modules/graphics/Text.h
index 424bb0859..2f7c1e200 100644
--- a/src/modules/graphics/Text.h
+++ b/src/modules/graphics/Text.h
@@ -1,5 +1,5 @@
/**
-* Copyright (c) 2006-2020 LOVE Development Team
+* Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/Texture.cpp b/src/modules/graphics/Texture.cpp
index 9b3a73698..9f45db575 100644
--- a/src/modules/graphics/Texture.cpp
+++ b/src/modules/graphics/Texture.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/Texture.h b/src/modules/graphics/Texture.h
index c56ae6e12..69cc49eea 100644
--- a/src/modules/graphics/Texture.h
+++ b/src/modules/graphics/Texture.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/Video.cpp b/src/modules/graphics/Video.cpp
index 0a05efb78..e184da236 100644
--- a/src/modules/graphics/Video.cpp
+++ b/src/modules/graphics/Video.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/Video.h b/src/modules/graphics/Video.h
index 871d8eb2e..74f82014a 100644
--- a/src/modules/graphics/Video.h
+++ b/src/modules/graphics/Video.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/Volatile.cpp b/src/modules/graphics/Volatile.cpp
index 732405b07..4f6d3b43c 100644
--- a/src/modules/graphics/Volatile.cpp
+++ b/src/modules/graphics/Volatile.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/Volatile.h b/src/modules/graphics/Volatile.h
index 402b2c44e..e05db93a6 100644
--- a/src/modules/graphics/Volatile.h
+++ b/src/modules/graphics/Volatile.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/opengl/Buffer.cpp b/src/modules/graphics/opengl/Buffer.cpp
index 80beb20b3..bda488159 100644
--- a/src/modules/graphics/opengl/Buffer.cpp
+++ b/src/modules/graphics/opengl/Buffer.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/opengl/Buffer.h b/src/modules/graphics/opengl/Buffer.h
index cf0b62a0a..f25f61bc0 100644
--- a/src/modules/graphics/opengl/Buffer.h
+++ b/src/modules/graphics/opengl/Buffer.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/opengl/FenceSync.cpp b/src/modules/graphics/opengl/FenceSync.cpp
index 68230ba0a..927bee068 100644
--- a/src/modules/graphics/opengl/FenceSync.cpp
+++ b/src/modules/graphics/opengl/FenceSync.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/opengl/FenceSync.h b/src/modules/graphics/opengl/FenceSync.h
index b7ee8657d..04f1b423e 100644
--- a/src/modules/graphics/opengl/FenceSync.h
+++ b/src/modules/graphics/opengl/FenceSync.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/opengl/Graphics.cpp b/src/modules/graphics/opengl/Graphics.cpp
index a1c32e3d9..a10d75f74 100644
--- a/src/modules/graphics/opengl/Graphics.cpp
+++ b/src/modules/graphics/opengl/Graphics.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/opengl/Graphics.h b/src/modules/graphics/opengl/Graphics.h
index 1244328d5..a319cf43f 100644
--- a/src/modules/graphics/opengl/Graphics.h
+++ b/src/modules/graphics/opengl/Graphics.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/opengl/OpenGL.cpp b/src/modules/graphics/opengl/OpenGL.cpp
index 93de3e422..587540c08 100644
--- a/src/modules/graphics/opengl/OpenGL.cpp
+++ b/src/modules/graphics/opengl/OpenGL.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/opengl/OpenGL.h b/src/modules/graphics/opengl/OpenGL.h
index dbdbe7d2d..ff76510df 100644
--- a/src/modules/graphics/opengl/OpenGL.h
+++ b/src/modules/graphics/opengl/OpenGL.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/opengl/Shader.cpp b/src/modules/graphics/opengl/Shader.cpp
index a854c7e17..045e6254f 100644
--- a/src/modules/graphics/opengl/Shader.cpp
+++ b/src/modules/graphics/opengl/Shader.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/opengl/Shader.h b/src/modules/graphics/opengl/Shader.h
index 30934a932..8c0ee538c 100644
--- a/src/modules/graphics/opengl/Shader.h
+++ b/src/modules/graphics/opengl/Shader.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/opengl/ShaderStage.cpp b/src/modules/graphics/opengl/ShaderStage.cpp
index fa31770f7..3e1684bb0 100644
--- a/src/modules/graphics/opengl/ShaderStage.cpp
+++ b/src/modules/graphics/opengl/ShaderStage.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/opengl/ShaderStage.h b/src/modules/graphics/opengl/ShaderStage.h
index 53d46f3fb..81dcf9d5e 100644
--- a/src/modules/graphics/opengl/ShaderStage.h
+++ b/src/modules/graphics/opengl/ShaderStage.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/opengl/StreamBuffer.cpp b/src/modules/graphics/opengl/StreamBuffer.cpp
index ec96ee192..091c47c59 100644
--- a/src/modules/graphics/opengl/StreamBuffer.cpp
+++ b/src/modules/graphics/opengl/StreamBuffer.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/opengl/StreamBuffer.h b/src/modules/graphics/opengl/StreamBuffer.h
index 64ee15496..807c6e822 100644
--- a/src/modules/graphics/opengl/StreamBuffer.h
+++ b/src/modules/graphics/opengl/StreamBuffer.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/opengl/Texture.h b/src/modules/graphics/opengl/Texture.h
index 40f9f26e9..6705d8597 100644
--- a/src/modules/graphics/opengl/Texture.h
+++ b/src/modules/graphics/opengl/Texture.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/renderstate.cpp b/src/modules/graphics/renderstate.cpp
index 1c4977025..28e4470d9 100644
--- a/src/modules/graphics/renderstate.cpp
+++ b/src/modules/graphics/renderstate.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/vertex.cpp b/src/modules/graphics/vertex.cpp
index 99178ff9e..04fb24bd1 100644
--- a/src/modules/graphics/vertex.cpp
+++ b/src/modules/graphics/vertex.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/vertex.h b/src/modules/graphics/vertex.h
index 006df24a7..242292dcf 100644
--- a/src/modules/graphics/vertex.h
+++ b/src/modules/graphics/vertex.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/wrap_Buffer.h b/src/modules/graphics/wrap_Buffer.h
index 3fdfeb6ca..a77ee797a 100644
--- a/src/modules/graphics/wrap_Buffer.h
+++ b/src/modules/graphics/wrap_Buffer.h
@@ -1,5 +1,5 @@
/**
-* Copyright (c) 2006-2020 LOVE Development Team
+* Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/wrap_Font.cpp b/src/modules/graphics/wrap_Font.cpp
index 468d67fe2..4c1361b5e 100644
--- a/src/modules/graphics/wrap_Font.cpp
+++ b/src/modules/graphics/wrap_Font.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
@@ -86,9 +86,16 @@ int w_Font_getHeight(lua_State *L)
int w_Font_getWidth(lua_State *L)
{
Font *t = luax_checkfont(L, 1);
- const char *str = luaL_checkstring(L, 2);
-
- luax_catchexcept(L, [&](){ lua_pushinteger(L, t->getWidth(str)); });
+ if (lua_type(L, 2) == LUA_TSTRING)
+ {
+ const char *str = luaL_checkstring(L, 2);
+ luax_catchexcept(L, [&](){ lua_pushinteger(L, t->getWidth(str)); });
+ }
+ else
+ {
+ uint32 glyph = (uint32) luaL_checknumber(L, 2);
+ luax_catchexcept(L, [&](){ lua_pushinteger(L, t->getWidth(glyph)); });
+ }
return 1;
}
@@ -214,6 +221,30 @@ int w_Font_hasGlyphs(lua_State *L)
return 1;
}
+int w_Font_getKerning(lua_State *L)
+{
+ Font *t = luax_checkfont(L, 1);
+ float kerning = 0.0f;
+
+ luax_catchexcept(L, [&]() {
+ if (lua_type(L, 2) == LUA_TSTRING)
+ {
+ std::string left = luax_checkstring(L, 2);
+ std::string right = luax_checkstring(L, 3);
+ kerning = t->getKerning(left, right);
+ }
+ else
+ {
+ uint32 left = (uint32) luaL_checknumber(L, 2);
+ uint32 right = (uint32) luaL_checknumber(L, 3);
+ kerning = t->getKerning(left, right);
+ }
+ });
+
+ lua_pushnumber(L, kerning);
+ return 1;
+}
+
int w_Font_setFallbacks(lua_State *L)
{
Font *t = luax_checkfont(L, 1);
@@ -246,6 +277,7 @@ static const luaL_Reg w_Font_functions[] =
{ "getDescent", w_Font_getDescent },
{ "getBaseline", w_Font_getBaseline },
{ "hasGlyphs", w_Font_hasGlyphs },
+ { "getKerning", w_Font_getKerning },
{ "setFallbacks", w_Font_setFallbacks },
{ "getDPIScale", w_Font_getDPIScale },
{ 0, 0 }
diff --git a/src/modules/graphics/wrap_Font.h b/src/modules/graphics/wrap_Font.h
index 2fc583422..d21709124 100644
--- a/src/modules/graphics/wrap_Font.h
+++ b/src/modules/graphics/wrap_Font.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/wrap_Graphics.cpp b/src/modules/graphics/wrap_Graphics.cpp
index 2fd3dfcb7..169b7852c 100644
--- a/src/modules/graphics/wrap_Graphics.cpp
+++ b/src/modules/graphics/wrap_Graphics.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/wrap_Graphics.h b/src/modules/graphics/wrap_Graphics.h
index 24fac737c..430257505 100644
--- a/src/modules/graphics/wrap_Graphics.h
+++ b/src/modules/graphics/wrap_Graphics.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/wrap_Graphics.lua b/src/modules/graphics/wrap_Graphics.lua
index be5d9f26e..c66e938cd 100644
--- a/src/modules/graphics/wrap_Graphics.lua
+++ b/src/modules/graphics/wrap_Graphics.lua
@@ -3,7 +3,7 @@ R"luastring"--(
-- There is a matching delimiter at the bottom of the file.
--[[
-Copyright (c) 2006-2020 LOVE Development Team
+Copyright (c) 2006-2021 LOVE Development Team
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/wrap_ParticleSystem.cpp b/src/modules/graphics/wrap_ParticleSystem.cpp
index 7458941fb..e02bdccca 100644
--- a/src/modules/graphics/wrap_ParticleSystem.cpp
+++ b/src/modules/graphics/wrap_ParticleSystem.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/wrap_Quad.cpp b/src/modules/graphics/wrap_Quad.cpp
index 1c1f2b43f..e06eac339 100644
--- a/src/modules/graphics/wrap_Quad.cpp
+++ b/src/modules/graphics/wrap_Quad.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/wrap_SpriteBatch.h b/src/modules/graphics/wrap_SpriteBatch.h
index 33ae5efa0..edaff1310 100644
--- a/src/modules/graphics/wrap_SpriteBatch.h
+++ b/src/modules/graphics/wrap_SpriteBatch.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/wrap_Texture.cpp b/src/modules/graphics/wrap_Texture.cpp
index 28e1d6b5f..8926c14bd 100644
--- a/src/modules/graphics/wrap_Texture.cpp
+++ b/src/modules/graphics/wrap_Texture.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/wrap_Texture.h b/src/modules/graphics/wrap_Texture.h
index 22e09ec3b..3b2fc3403 100644
--- a/src/modules/graphics/wrap_Texture.h
+++ b/src/modules/graphics/wrap_Texture.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/wrap_Video.h b/src/modules/graphics/wrap_Video.h
index a48bb4c5d..90b5c4d29 100644
--- a/src/modules/graphics/wrap_Video.h
+++ b/src/modules/graphics/wrap_Video.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/graphics/wrap_Video.lua b/src/modules/graphics/wrap_Video.lua
index 9a1b21ae1..7d68941e3 100644
--- a/src/modules/graphics/wrap_Video.lua
+++ b/src/modules/graphics/wrap_Video.lua
@@ -3,7 +3,7 @@ R"luastring"--(
-- There is a matching delimiter at the bottom of the file.
--[[
-Copyright (c) 2006-2020 LOVE Development Team
+Copyright (c) 2006-2021 LOVE Development Team
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/CompressedImageData.cpp b/src/modules/image/CompressedImageData.cpp
index acc066152..c548c2be0 100644
--- a/src/modules/image/CompressedImageData.cpp
+++ b/src/modules/image/CompressedImageData.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/CompressedImageData.h b/src/modules/image/CompressedImageData.h
index 592fe8e51..c2bea3fa0 100644
--- a/src/modules/image/CompressedImageData.h
+++ b/src/modules/image/CompressedImageData.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/CompressedSlice.cpp b/src/modules/image/CompressedSlice.cpp
index 237e94fc8..5066c2c1a 100644
--- a/src/modules/image/CompressedSlice.cpp
+++ b/src/modules/image/CompressedSlice.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/CompressedSlice.h b/src/modules/image/CompressedSlice.h
index 242cdab02..10377954f 100644
--- a/src/modules/image/CompressedSlice.h
+++ b/src/modules/image/CompressedSlice.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/FormatHandler.cpp b/src/modules/image/FormatHandler.cpp
index 300585df9..c0c1fd290 100644
--- a/src/modules/image/FormatHandler.cpp
+++ b/src/modules/image/FormatHandler.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/FormatHandler.h b/src/modules/image/FormatHandler.h
index ea0d324f2..0b8c29b82 100644
--- a/src/modules/image/FormatHandler.h
+++ b/src/modules/image/FormatHandler.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/Image.cpp b/src/modules/image/Image.cpp
index b03b7e405..475f2f899 100644
--- a/src/modules/image/Image.cpp
+++ b/src/modules/image/Image.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/Image.h b/src/modules/image/Image.h
index 8f84d75df..974e83118 100644
--- a/src/modules/image/Image.h
+++ b/src/modules/image/Image.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/ImageData.cpp b/src/modules/image/ImageData.cpp
index 41c89299c..72bb07802 100644
--- a/src/modules/image/ImageData.cpp
+++ b/src/modules/image/ImageData.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/ImageData.h b/src/modules/image/ImageData.h
index 003af2abd..16f44c683 100644
--- a/src/modules/image/ImageData.h
+++ b/src/modules/image/ImageData.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/ImageDataBase.cpp b/src/modules/image/ImageDataBase.cpp
index cfa7818e6..3fcd230ec 100644
--- a/src/modules/image/ImageDataBase.cpp
+++ b/src/modules/image/ImageDataBase.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/ImageDataBase.h b/src/modules/image/ImageDataBase.h
index b46502694..1a2516dd3 100644
--- a/src/modules/image/ImageDataBase.h
+++ b/src/modules/image/ImageDataBase.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/magpie/ASTCHandler.cpp b/src/modules/image/magpie/ASTCHandler.cpp
index 6de60f86e..ca624008b 100644
--- a/src/modules/image/magpie/ASTCHandler.cpp
+++ b/src/modules/image/magpie/ASTCHandler.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/magpie/ASTCHandler.h b/src/modules/image/magpie/ASTCHandler.h
index 4c55bb80b..4c38fa7f6 100644
--- a/src/modules/image/magpie/ASTCHandler.h
+++ b/src/modules/image/magpie/ASTCHandler.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/magpie/EXRHandler.cpp b/src/modules/image/magpie/EXRHandler.cpp
index b37f692b1..f5779ddfb 100644
--- a/src/modules/image/magpie/EXRHandler.cpp
+++ b/src/modules/image/magpie/EXRHandler.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/magpie/EXRHandler.h b/src/modules/image/magpie/EXRHandler.h
index 3ead10480..617bff05a 100644
--- a/src/modules/image/magpie/EXRHandler.h
+++ b/src/modules/image/magpie/EXRHandler.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/magpie/KTXHandler.cpp b/src/modules/image/magpie/KTXHandler.cpp
index 5e2da60d0..951f30731 100644
--- a/src/modules/image/magpie/KTXHandler.cpp
+++ b/src/modules/image/magpie/KTXHandler.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/magpie/KTXHandler.h b/src/modules/image/magpie/KTXHandler.h
index 8432ba48d..e6821bc88 100644
--- a/src/modules/image/magpie/KTXHandler.h
+++ b/src/modules/image/magpie/KTXHandler.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/magpie/PKMHandler.cpp b/src/modules/image/magpie/PKMHandler.cpp
index 22f3e5e4d..992f7d7ca 100644
--- a/src/modules/image/magpie/PKMHandler.cpp
+++ b/src/modules/image/magpie/PKMHandler.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/magpie/PKMHandler.h b/src/modules/image/magpie/PKMHandler.h
index a41c03894..d1233f924 100644
--- a/src/modules/image/magpie/PKMHandler.h
+++ b/src/modules/image/magpie/PKMHandler.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/magpie/PNGHandler.cpp b/src/modules/image/magpie/PNGHandler.cpp
index 731a771a1..989493c53 100644
--- a/src/modules/image/magpie/PNGHandler.cpp
+++ b/src/modules/image/magpie/PNGHandler.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/magpie/PNGHandler.h b/src/modules/image/magpie/PNGHandler.h
index d72c3809d..c27a33714 100644
--- a/src/modules/image/magpie/PNGHandler.h
+++ b/src/modules/image/magpie/PNGHandler.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/magpie/PVRHandler.cpp b/src/modules/image/magpie/PVRHandler.cpp
index b49633605..df495c130 100644
--- a/src/modules/image/magpie/PVRHandler.cpp
+++ b/src/modules/image/magpie/PVRHandler.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/magpie/PVRHandler.h b/src/modules/image/magpie/PVRHandler.h
index da2c04490..e7e950039 100644
--- a/src/modules/image/magpie/PVRHandler.h
+++ b/src/modules/image/magpie/PVRHandler.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/magpie/STBHandler.cpp b/src/modules/image/magpie/STBHandler.cpp
index 76b083f7c..519fdfb3c 100644
--- a/src/modules/image/magpie/STBHandler.cpp
+++ b/src/modules/image/magpie/STBHandler.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/magpie/STBHandler.h b/src/modules/image/magpie/STBHandler.h
index 176d2907e..5578008c5 100644
--- a/src/modules/image/magpie/STBHandler.h
+++ b/src/modules/image/magpie/STBHandler.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/magpie/ddsHandler.cpp b/src/modules/image/magpie/ddsHandler.cpp
index 066e75c78..d2c8bae9f 100644
--- a/src/modules/image/magpie/ddsHandler.cpp
+++ b/src/modules/image/magpie/ddsHandler.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/magpie/ddsHandler.h b/src/modules/image/magpie/ddsHandler.h
index b61547779..8d1bb31e8 100644
--- a/src/modules/image/magpie/ddsHandler.h
+++ b/src/modules/image/magpie/ddsHandler.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/wrap_CompressedImageData.cpp b/src/modules/image/wrap_CompressedImageData.cpp
index e52abfeac..3f5814160 100644
--- a/src/modules/image/wrap_CompressedImageData.cpp
+++ b/src/modules/image/wrap_CompressedImageData.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/wrap_CompressedImageData.h b/src/modules/image/wrap_CompressedImageData.h
index 89bd5d68b..4cc4bd65c 100644
--- a/src/modules/image/wrap_CompressedImageData.h
+++ b/src/modules/image/wrap_CompressedImageData.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/wrap_Image.cpp b/src/modules/image/wrap_Image.cpp
index 0a6f2016f..64340c3e5 100644
--- a/src/modules/image/wrap_Image.cpp
+++ b/src/modules/image/wrap_Image.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/wrap_Image.h b/src/modules/image/wrap_Image.h
index 1b3449194..fa69eebd6 100644
--- a/src/modules/image/wrap_Image.h
+++ b/src/modules/image/wrap_Image.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/wrap_ImageData.h b/src/modules/image/wrap_ImageData.h
index 11d2d3897..a6770fcdb 100644
--- a/src/modules/image/wrap_ImageData.h
+++ b/src/modules/image/wrap_ImageData.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/image/wrap_ImageData.lua b/src/modules/image/wrap_ImageData.lua
index b9842d84d..04fce1dd2 100644
--- a/src/modules/image/wrap_ImageData.lua
+++ b/src/modules/image/wrap_ImageData.lua
@@ -3,7 +3,7 @@ R"luastring"--(
-- There is a matching delimiter at the bottom of the file.
--[[
-Copyright (c) 2006-2020 LOVE Development Team
+Copyright (c) 2006-2021 LOVE Development Team
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/joystick/Joystick.cpp b/src/modules/joystick/Joystick.cpp
index b976d8b26..b2a20c1e5 100644
--- a/src/modules/joystick/Joystick.cpp
+++ b/src/modules/joystick/Joystick.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/joystick/Joystick.h b/src/modules/joystick/Joystick.h
index c635f5bff..83d3ad1e0 100644
--- a/src/modules/joystick/Joystick.h
+++ b/src/modules/joystick/Joystick.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/joystick/JoystickModule.h b/src/modules/joystick/JoystickModule.h
index ae17f13c8..50da21caf 100644
--- a/src/modules/joystick/JoystickModule.h
+++ b/src/modules/joystick/JoystickModule.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/joystick/sdl/Joystick.cpp b/src/modules/joystick/sdl/Joystick.cpp
index f05de9372..f2ee5d435 100644
--- a/src/modules/joystick/sdl/Joystick.cpp
+++ b/src/modules/joystick/sdl/Joystick.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/joystick/sdl/Joystick.h b/src/modules/joystick/sdl/Joystick.h
index 1f378d9ed..b744dcf02 100644
--- a/src/modules/joystick/sdl/Joystick.h
+++ b/src/modules/joystick/sdl/Joystick.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/joystick/sdl/JoystickModule.cpp b/src/modules/joystick/sdl/JoystickModule.cpp
index c0e98c354..25dd16d1c 100644
--- a/src/modules/joystick/sdl/JoystickModule.cpp
+++ b/src/modules/joystick/sdl/JoystickModule.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/joystick/sdl/JoystickModule.h b/src/modules/joystick/sdl/JoystickModule.h
index 871b9d4dc..a1eb9f790 100644
--- a/src/modules/joystick/sdl/JoystickModule.h
+++ b/src/modules/joystick/sdl/JoystickModule.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/joystick/wrap_JoystickModule.h b/src/modules/joystick/wrap_JoystickModule.h
index a5524c86b..df84f2c14 100644
--- a/src/modules/joystick/wrap_JoystickModule.h
+++ b/src/modules/joystick/wrap_JoystickModule.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/keyboard/Keyboard.cpp b/src/modules/keyboard/Keyboard.cpp
index 313bb21a2..494597cc1 100644
--- a/src/modules/keyboard/Keyboard.cpp
+++ b/src/modules/keyboard/Keyboard.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/keyboard/Keyboard.h b/src/modules/keyboard/Keyboard.h
index c7b43f129..f7408b3a9 100644
--- a/src/modules/keyboard/Keyboard.h
+++ b/src/modules/keyboard/Keyboard.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/keyboard/sdl/Keyboard.cpp b/src/modules/keyboard/sdl/Keyboard.cpp
index e5a2bad42..f4dfcd78f 100644
--- a/src/modules/keyboard/sdl/Keyboard.cpp
+++ b/src/modules/keyboard/sdl/Keyboard.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/keyboard/sdl/Keyboard.h b/src/modules/keyboard/sdl/Keyboard.h
index abb9df14b..8b8714007 100644
--- a/src/modules/keyboard/sdl/Keyboard.h
+++ b/src/modules/keyboard/sdl/Keyboard.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/love/love.cpp b/src/modules/love/love.cpp
index c6f1c5d2f..50eaa633d 100644
--- a/src/modules/love/love.cpp
+++ b/src/modules/love/love.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/love/love.h b/src/modules/love/love.h
index 69d2978d9..ee057f5b4 100644
--- a/src/modules/love/love.h
+++ b/src/modules/love/love.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/math/BezierCurve.cpp b/src/modules/math/BezierCurve.cpp
index 0305c69bb..1c04e1249 100644
--- a/src/modules/math/BezierCurve.cpp
+++ b/src/modules/math/BezierCurve.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/math/BezierCurve.h b/src/modules/math/BezierCurve.h
index 6c67f4a23..ba5500b4d 100644
--- a/src/modules/math/BezierCurve.h
+++ b/src/modules/math/BezierCurve.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/math/MathModule.cpp b/src/modules/math/MathModule.cpp
index aaf95ebe9..28eb45485 100644
--- a/src/modules/math/MathModule.cpp
+++ b/src/modules/math/MathModule.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/math/MathModule.h b/src/modules/math/MathModule.h
index 0b2e488d5..9fb1795cf 100644
--- a/src/modules/math/MathModule.h
+++ b/src/modules/math/MathModule.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/math/RandomGenerator.cpp b/src/modules/math/RandomGenerator.cpp
index 23ef6127b..df083fd01 100644
--- a/src/modules/math/RandomGenerator.cpp
+++ b/src/modules/math/RandomGenerator.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/math/RandomGenerator.h b/src/modules/math/RandomGenerator.h
index 39986ae12..352d2ca46 100644
--- a/src/modules/math/RandomGenerator.h
+++ b/src/modules/math/RandomGenerator.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/math/Transform.cpp b/src/modules/math/Transform.cpp
index ed5d4757f..c54115ed7 100644
--- a/src/modules/math/Transform.cpp
+++ b/src/modules/math/Transform.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/math/Transform.h b/src/modules/math/Transform.h
index f5a7edeb2..ab9bec817 100644
--- a/src/modules/math/Transform.h
+++ b/src/modules/math/Transform.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/math/wrap_BezierCurve.cpp b/src/modules/math/wrap_BezierCurve.cpp
index 00a858717..a5c7a51cc 100644
--- a/src/modules/math/wrap_BezierCurve.cpp
+++ b/src/modules/math/wrap_BezierCurve.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/math/wrap_BezierCurve.h b/src/modules/math/wrap_BezierCurve.h
index c4e787d1a..2cf44a0cc 100644
--- a/src/modules/math/wrap_BezierCurve.h
+++ b/src/modules/math/wrap_BezierCurve.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/math/wrap_Math.cpp b/src/modules/math/wrap_Math.cpp
index d699be1df..b7be334d6 100644
--- a/src/modules/math/wrap_Math.cpp
+++ b/src/modules/math/wrap_Math.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/math/wrap_RandomGenerator.cpp b/src/modules/math/wrap_RandomGenerator.cpp
index a4477d472..020463241 100644
--- a/src/modules/math/wrap_RandomGenerator.cpp
+++ b/src/modules/math/wrap_RandomGenerator.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/math/wrap_RandomGenerator.h b/src/modules/math/wrap_RandomGenerator.h
index 1af621afc..53658705f 100644
--- a/src/modules/math/wrap_RandomGenerator.h
+++ b/src/modules/math/wrap_RandomGenerator.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/mouse/Cursor.cpp b/src/modules/mouse/Cursor.cpp
index a7b6c9e0c..cdd4fa842 100644
--- a/src/modules/mouse/Cursor.cpp
+++ b/src/modules/mouse/Cursor.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/mouse/Cursor.h b/src/modules/mouse/Cursor.h
index ef186be88..6faf40df8 100644
--- a/src/modules/mouse/Cursor.h
+++ b/src/modules/mouse/Cursor.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/mouse/Mouse.h b/src/modules/mouse/Mouse.h
index cde9d8807..4fd7b5b06 100644
--- a/src/modules/mouse/Mouse.h
+++ b/src/modules/mouse/Mouse.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/mouse/sdl/Cursor.cpp b/src/modules/mouse/sdl/Cursor.cpp
index 6a283a4dc..e19e2955b 100644
--- a/src/modules/mouse/sdl/Cursor.cpp
+++ b/src/modules/mouse/sdl/Cursor.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/mouse/sdl/Cursor.h b/src/modules/mouse/sdl/Cursor.h
index 899c15053..e0e8f6d25 100644
--- a/src/modules/mouse/sdl/Cursor.h
+++ b/src/modules/mouse/sdl/Cursor.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/mouse/sdl/Mouse.cpp b/src/modules/mouse/sdl/Mouse.cpp
index 08c39b737..a6139c697 100644
--- a/src/modules/mouse/sdl/Mouse.cpp
+++ b/src/modules/mouse/sdl/Mouse.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/mouse/sdl/Mouse.h b/src/modules/mouse/sdl/Mouse.h
index ff18d8083..ed55fb5d0 100644
--- a/src/modules/mouse/sdl/Mouse.h
+++ b/src/modules/mouse/sdl/Mouse.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/mouse/wrap_Cursor.h b/src/modules/mouse/wrap_Cursor.h
index 7267fc48f..cab296d8a 100644
--- a/src/modules/mouse/wrap_Cursor.h
+++ b/src/modules/mouse/wrap_Cursor.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/Body.cpp b/src/modules/physics/Body.cpp
index 0f864eb19..c226d2648 100644
--- a/src/modules/physics/Body.cpp
+++ b/src/modules/physics/Body.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/Body.h b/src/modules/physics/Body.h
index b1790e233..86c558a8f 100644
--- a/src/modules/physics/Body.h
+++ b/src/modules/physics/Body.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/Joint.cpp b/src/modules/physics/Joint.cpp
index f70d36b6f..ebf825141 100644
--- a/src/modules/physics/Joint.cpp
+++ b/src/modules/physics/Joint.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/Joint.h b/src/modules/physics/Joint.h
index 5da9c6938..2577ae36e 100644
--- a/src/modules/physics/Joint.h
+++ b/src/modules/physics/Joint.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/Shape.cpp b/src/modules/physics/Shape.cpp
index 7c377f78a..cdfacfc23 100644
--- a/src/modules/physics/Shape.cpp
+++ b/src/modules/physics/Shape.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/Shape.h b/src/modules/physics/Shape.h
index 46cbd279e..9f5304cd7 100644
--- a/src/modules/physics/Shape.h
+++ b/src/modules/physics/Shape.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/Body.cpp b/src/modules/physics/box2d/Body.cpp
index 472c57546..61eaa042a 100644
--- a/src/modules/physics/box2d/Body.cpp
+++ b/src/modules/physics/box2d/Body.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/Body.h b/src/modules/physics/box2d/Body.h
index 5f83fdcb6..6ce32f73f 100644
--- a/src/modules/physics/box2d/Body.h
+++ b/src/modules/physics/box2d/Body.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/ChainShape.cpp b/src/modules/physics/box2d/ChainShape.cpp
index 114e40beb..3fe48c827 100644
--- a/src/modules/physics/box2d/ChainShape.cpp
+++ b/src/modules/physics/box2d/ChainShape.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/ChainShape.h b/src/modules/physics/box2d/ChainShape.h
index 3afbc7365..f38410940 100644
--- a/src/modules/physics/box2d/ChainShape.h
+++ b/src/modules/physics/box2d/ChainShape.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/CircleShape.cpp b/src/modules/physics/box2d/CircleShape.cpp
index 25c16fd8f..06126bb8d 100644
--- a/src/modules/physics/box2d/CircleShape.cpp
+++ b/src/modules/physics/box2d/CircleShape.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/CircleShape.h b/src/modules/physics/box2d/CircleShape.h
index 791d3578a..7ac4b09b5 100644
--- a/src/modules/physics/box2d/CircleShape.h
+++ b/src/modules/physics/box2d/CircleShape.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/Contact.cpp b/src/modules/physics/box2d/Contact.cpp
index 465fbcafd..0bfd400e4 100644
--- a/src/modules/physics/box2d/Contact.cpp
+++ b/src/modules/physics/box2d/Contact.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/Contact.h b/src/modules/physics/box2d/Contact.h
index 61df9eeeb..674f9c2f3 100644
--- a/src/modules/physics/box2d/Contact.h
+++ b/src/modules/physics/box2d/Contact.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/DistanceJoint.cpp b/src/modules/physics/box2d/DistanceJoint.cpp
index 892ff34fd..de10fbfd0 100644
--- a/src/modules/physics/box2d/DistanceJoint.cpp
+++ b/src/modules/physics/box2d/DistanceJoint.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/DistanceJoint.h b/src/modules/physics/box2d/DistanceJoint.h
index 45cb0a613..016b12621 100644
--- a/src/modules/physics/box2d/DistanceJoint.h
+++ b/src/modules/physics/box2d/DistanceJoint.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/EdgeShape.cpp b/src/modules/physics/box2d/EdgeShape.cpp
index aad7a36e2..ef82a13fe 100644
--- a/src/modules/physics/box2d/EdgeShape.cpp
+++ b/src/modules/physics/box2d/EdgeShape.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/EdgeShape.h b/src/modules/physics/box2d/EdgeShape.h
index ac15b940b..8df33a4be 100644
--- a/src/modules/physics/box2d/EdgeShape.h
+++ b/src/modules/physics/box2d/EdgeShape.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/Fixture.cpp b/src/modules/physics/box2d/Fixture.cpp
index 4d5c790ce..beebb2833 100644
--- a/src/modules/physics/box2d/Fixture.cpp
+++ b/src/modules/physics/box2d/Fixture.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/Fixture.h b/src/modules/physics/box2d/Fixture.h
index 7be62df1c..81ab29443 100644
--- a/src/modules/physics/box2d/Fixture.h
+++ b/src/modules/physics/box2d/Fixture.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/FrictionJoint.cpp b/src/modules/physics/box2d/FrictionJoint.cpp
index 7293d0abf..fd970a6a6 100644
--- a/src/modules/physics/box2d/FrictionJoint.cpp
+++ b/src/modules/physics/box2d/FrictionJoint.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/FrictionJoint.h b/src/modules/physics/box2d/FrictionJoint.h
index d465dbbee..0f4a7afea 100644
--- a/src/modules/physics/box2d/FrictionJoint.h
+++ b/src/modules/physics/box2d/FrictionJoint.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/GearJoint.cpp b/src/modules/physics/box2d/GearJoint.cpp
index 7bb06d4b9..5f8a2c360 100644
--- a/src/modules/physics/box2d/GearJoint.cpp
+++ b/src/modules/physics/box2d/GearJoint.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/GearJoint.h b/src/modules/physics/box2d/GearJoint.h
index f310f8589..9a5b252c9 100644
--- a/src/modules/physics/box2d/GearJoint.h
+++ b/src/modules/physics/box2d/GearJoint.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/Joint.cpp b/src/modules/physics/box2d/Joint.cpp
index ee5c46f2e..1147fe495 100644
--- a/src/modules/physics/box2d/Joint.cpp
+++ b/src/modules/physics/box2d/Joint.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/Joint.h b/src/modules/physics/box2d/Joint.h
index c8a0cbfec..45eac567e 100644
--- a/src/modules/physics/box2d/Joint.h
+++ b/src/modules/physics/box2d/Joint.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/MotorJoint.cpp b/src/modules/physics/box2d/MotorJoint.cpp
index e6d60544e..caaeeade4 100644
--- a/src/modules/physics/box2d/MotorJoint.cpp
+++ b/src/modules/physics/box2d/MotorJoint.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/MotorJoint.h b/src/modules/physics/box2d/MotorJoint.h
index 0227e0469..20fbe5bdc 100644
--- a/src/modules/physics/box2d/MotorJoint.h
+++ b/src/modules/physics/box2d/MotorJoint.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/MouseJoint.cpp b/src/modules/physics/box2d/MouseJoint.cpp
index 4475dd53d..2495d9bed 100644
--- a/src/modules/physics/box2d/MouseJoint.cpp
+++ b/src/modules/physics/box2d/MouseJoint.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/MouseJoint.h b/src/modules/physics/box2d/MouseJoint.h
index f308d7f78..301962285 100644
--- a/src/modules/physics/box2d/MouseJoint.h
+++ b/src/modules/physics/box2d/MouseJoint.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/Physics.cpp b/src/modules/physics/box2d/Physics.cpp
index da75cbf65..fa227e27a 100644
--- a/src/modules/physics/box2d/Physics.cpp
+++ b/src/modules/physics/box2d/Physics.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/Physics.h b/src/modules/physics/box2d/Physics.h
index 68518f9e0..0cd2762b2 100644
--- a/src/modules/physics/box2d/Physics.h
+++ b/src/modules/physics/box2d/Physics.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/PolygonShape.cpp b/src/modules/physics/box2d/PolygonShape.cpp
index b9b6e0c53..3a9cf58ac 100644
--- a/src/modules/physics/box2d/PolygonShape.cpp
+++ b/src/modules/physics/box2d/PolygonShape.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/PolygonShape.h b/src/modules/physics/box2d/PolygonShape.h
index 0860e6947..a37bfebcf 100644
--- a/src/modules/physics/box2d/PolygonShape.h
+++ b/src/modules/physics/box2d/PolygonShape.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/PrismaticJoint.cpp b/src/modules/physics/box2d/PrismaticJoint.cpp
index 387d6f7f0..643712d51 100644
--- a/src/modules/physics/box2d/PrismaticJoint.cpp
+++ b/src/modules/physics/box2d/PrismaticJoint.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/PrismaticJoint.h b/src/modules/physics/box2d/PrismaticJoint.h
index b4f0fbfb3..2d146f326 100644
--- a/src/modules/physics/box2d/PrismaticJoint.h
+++ b/src/modules/physics/box2d/PrismaticJoint.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/PulleyJoint.cpp b/src/modules/physics/box2d/PulleyJoint.cpp
index 71e6c1b64..f518d59c9 100644
--- a/src/modules/physics/box2d/PulleyJoint.cpp
+++ b/src/modules/physics/box2d/PulleyJoint.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/PulleyJoint.h b/src/modules/physics/box2d/PulleyJoint.h
index 8a3465377..cd814fad0 100644
--- a/src/modules/physics/box2d/PulleyJoint.h
+++ b/src/modules/physics/box2d/PulleyJoint.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/RevoluteJoint.cpp b/src/modules/physics/box2d/RevoluteJoint.cpp
index 8eefa97ba..9e580a326 100644
--- a/src/modules/physics/box2d/RevoluteJoint.cpp
+++ b/src/modules/physics/box2d/RevoluteJoint.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/RevoluteJoint.h b/src/modules/physics/box2d/RevoluteJoint.h
index 905ea00d6..e69430c3c 100644
--- a/src/modules/physics/box2d/RevoluteJoint.h
+++ b/src/modules/physics/box2d/RevoluteJoint.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/RopeJoint.cpp b/src/modules/physics/box2d/RopeJoint.cpp
index e84b397ff..4bf3146f9 100644
--- a/src/modules/physics/box2d/RopeJoint.cpp
+++ b/src/modules/physics/box2d/RopeJoint.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/RopeJoint.h b/src/modules/physics/box2d/RopeJoint.h
index a059a44a2..6948c9d52 100644
--- a/src/modules/physics/box2d/RopeJoint.h
+++ b/src/modules/physics/box2d/RopeJoint.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/Shape.cpp b/src/modules/physics/box2d/Shape.cpp
index 8411dc77c..3a03b2833 100644
--- a/src/modules/physics/box2d/Shape.cpp
+++ b/src/modules/physics/box2d/Shape.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/Shape.h b/src/modules/physics/box2d/Shape.h
index 5ea5903db..87ee049ec 100644
--- a/src/modules/physics/box2d/Shape.h
+++ b/src/modules/physics/box2d/Shape.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/WeldJoint.cpp b/src/modules/physics/box2d/WeldJoint.cpp
index 30ead28ec..97fe5c0be 100644
--- a/src/modules/physics/box2d/WeldJoint.cpp
+++ b/src/modules/physics/box2d/WeldJoint.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/WeldJoint.h b/src/modules/physics/box2d/WeldJoint.h
index e0bd27e68..4feaa8fbb 100644
--- a/src/modules/physics/box2d/WeldJoint.h
+++ b/src/modules/physics/box2d/WeldJoint.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/WheelJoint.cpp b/src/modules/physics/box2d/WheelJoint.cpp
index 52b61b998..cdd7f8190 100644
--- a/src/modules/physics/box2d/WheelJoint.cpp
+++ b/src/modules/physics/box2d/WheelJoint.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/WheelJoint.h b/src/modules/physics/box2d/WheelJoint.h
index 453ae9608..055244c1d 100644
--- a/src/modules/physics/box2d/WheelJoint.h
+++ b/src/modules/physics/box2d/WheelJoint.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/World.cpp b/src/modules/physics/box2d/World.cpp
index aa05ff826..7d96c50ac 100644
--- a/src/modules/physics/box2d/World.cpp
+++ b/src/modules/physics/box2d/World.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/World.h b/src/modules/physics/box2d/World.h
index a95ab5353..a7205f5fb 100644
--- a/src/modules/physics/box2d/World.h
+++ b/src/modules/physics/box2d/World.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/wrap_Body.cpp b/src/modules/physics/box2d/wrap_Body.cpp
index efaba3f9d..28a8de2d7 100644
--- a/src/modules/physics/box2d/wrap_Body.cpp
+++ b/src/modules/physics/box2d/wrap_Body.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/wrap_Body.h b/src/modules/physics/box2d/wrap_Body.h
index 48f3e5809..721533331 100644
--- a/src/modules/physics/box2d/wrap_Body.h
+++ b/src/modules/physics/box2d/wrap_Body.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/wrap_Contact.h b/src/modules/physics/box2d/wrap_Contact.h
index f52d7a419..f1a80a29b 100644
--- a/src/modules/physics/box2d/wrap_Contact.h
+++ b/src/modules/physics/box2d/wrap_Contact.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/wrap_Fixture.cpp b/src/modules/physics/box2d/wrap_Fixture.cpp
index 739042dda..dc6278a98 100644
--- a/src/modules/physics/box2d/wrap_Fixture.cpp
+++ b/src/modules/physics/box2d/wrap_Fixture.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/wrap_GearJoint.h b/src/modules/physics/box2d/wrap_GearJoint.h
index 69869011b..0cd64e04d 100644
--- a/src/modules/physics/box2d/wrap_GearJoint.h
+++ b/src/modules/physics/box2d/wrap_GearJoint.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/wrap_Joint.h b/src/modules/physics/box2d/wrap_Joint.h
index 05ae1fd9a..5e2cda098 100644
--- a/src/modules/physics/box2d/wrap_Joint.h
+++ b/src/modules/physics/box2d/wrap_Joint.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/wrap_MouseJoint.h b/src/modules/physics/box2d/wrap_MouseJoint.h
index a10ccae5d..4a167d7c5 100644
--- a/src/modules/physics/box2d/wrap_MouseJoint.h
+++ b/src/modules/physics/box2d/wrap_MouseJoint.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/wrap_PrismaticJoint.h b/src/modules/physics/box2d/wrap_PrismaticJoint.h
index 5d0c09856..d082227be 100644
--- a/src/modules/physics/box2d/wrap_PrismaticJoint.h
+++ b/src/modules/physics/box2d/wrap_PrismaticJoint.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/wrap_RopeJoint.h b/src/modules/physics/box2d/wrap_RopeJoint.h
index 601d726e8..97b539204 100644
--- a/src/modules/physics/box2d/wrap_RopeJoint.h
+++ b/src/modules/physics/box2d/wrap_RopeJoint.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/physics/box2d/wrap_Shape.h b/src/modules/physics/box2d/wrap_Shape.h
index edc871bc4..db4596c21 100644
--- a/src/modules/physics/box2d/wrap_Shape.h
+++ b/src/modules/physics/box2d/wrap_Shape.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/sound/Decoder.cpp b/src/modules/sound/Decoder.cpp
index 8c405084b..5d0fd2375 100644
--- a/src/modules/sound/Decoder.cpp
+++ b/src/modules/sound/Decoder.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/sound/Decoder.h b/src/modules/sound/Decoder.h
index 4f440d847..468b21da2 100644
--- a/src/modules/sound/Decoder.h
+++ b/src/modules/sound/Decoder.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/sound/Sound.cpp b/src/modules/sound/Sound.cpp
index b1080fcc7..02792592d 100644
--- a/src/modules/sound/Sound.cpp
+++ b/src/modules/sound/Sound.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/sound/Sound.h b/src/modules/sound/Sound.h
index 8427888bd..adf8ca225 100644
--- a/src/modules/sound/Sound.h
+++ b/src/modules/sound/Sound.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/sound/SoundData.cpp b/src/modules/sound/SoundData.cpp
index 567de66de..983549812 100644
--- a/src/modules/sound/SoundData.cpp
+++ b/src/modules/sound/SoundData.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/sound/SoundData.h b/src/modules/sound/SoundData.h
index 993cc0bfe..3f58be0d7 100644
--- a/src/modules/sound/SoundData.h
+++ b/src/modules/sound/SoundData.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/sound/lullaby/CoreAudioDecoder.cpp b/src/modules/sound/lullaby/CoreAudioDecoder.cpp
index f7c8212e6..c4faf44dd 100644
--- a/src/modules/sound/lullaby/CoreAudioDecoder.cpp
+++ b/src/modules/sound/lullaby/CoreAudioDecoder.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/sound/lullaby/CoreAudioDecoder.h b/src/modules/sound/lullaby/CoreAudioDecoder.h
index 53f806afa..21c4767e6 100644
--- a/src/modules/sound/lullaby/CoreAudioDecoder.h
+++ b/src/modules/sound/lullaby/CoreAudioDecoder.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/sound/lullaby/FLACDecoder.cpp b/src/modules/sound/lullaby/FLACDecoder.cpp
index 70aa03587..04e04cfe2 100644
--- a/src/modules/sound/lullaby/FLACDecoder.cpp
+++ b/src/modules/sound/lullaby/FLACDecoder.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/sound/lullaby/FLACDecoder.h b/src/modules/sound/lullaby/FLACDecoder.h
index ad090eef2..23f10d0d9 100644
--- a/src/modules/sound/lullaby/FLACDecoder.h
+++ b/src/modules/sound/lullaby/FLACDecoder.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/sound/lullaby/GmeDecoder.cpp b/src/modules/sound/lullaby/GmeDecoder.cpp
index c8497b92c..801d0c7dd 100644
--- a/src/modules/sound/lullaby/GmeDecoder.cpp
+++ b/src/modules/sound/lullaby/GmeDecoder.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/sound/lullaby/GmeDecoder.h b/src/modules/sound/lullaby/GmeDecoder.h
index 026b01250..bbc8328d1 100644
--- a/src/modules/sound/lullaby/GmeDecoder.h
+++ b/src/modules/sound/lullaby/GmeDecoder.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/sound/lullaby/MP3Decoder.h b/src/modules/sound/lullaby/MP3Decoder.h
index d76db6de7..3d1144bf4 100644
--- a/src/modules/sound/lullaby/MP3Decoder.h
+++ b/src/modules/sound/lullaby/MP3Decoder.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/sound/lullaby/ModPlugDecoder.cpp b/src/modules/sound/lullaby/ModPlugDecoder.cpp
index 29d964b3f..c563e9af6 100644
--- a/src/modules/sound/lullaby/ModPlugDecoder.cpp
+++ b/src/modules/sound/lullaby/ModPlugDecoder.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/sound/lullaby/ModPlugDecoder.h b/src/modules/sound/lullaby/ModPlugDecoder.h
index dc480cf94..5ff012413 100644
--- a/src/modules/sound/lullaby/ModPlugDecoder.h
+++ b/src/modules/sound/lullaby/ModPlugDecoder.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/sound/lullaby/Sound.cpp b/src/modules/sound/lullaby/Sound.cpp
index 532232016..f40c77d43 100644
--- a/src/modules/sound/lullaby/Sound.cpp
+++ b/src/modules/sound/lullaby/Sound.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/sound/lullaby/Sound.h b/src/modules/sound/lullaby/Sound.h
index db0ef03d6..39837ac49 100644
--- a/src/modules/sound/lullaby/Sound.h
+++ b/src/modules/sound/lullaby/Sound.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/sound/lullaby/VorbisDecoder.cpp b/src/modules/sound/lullaby/VorbisDecoder.cpp
index 40454b417..dab5f280f 100644
--- a/src/modules/sound/lullaby/VorbisDecoder.cpp
+++ b/src/modules/sound/lullaby/VorbisDecoder.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/sound/lullaby/VorbisDecoder.h b/src/modules/sound/lullaby/VorbisDecoder.h
index 22ddeb049..0673a61fc 100644
--- a/src/modules/sound/lullaby/VorbisDecoder.h
+++ b/src/modules/sound/lullaby/VorbisDecoder.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/sound/lullaby/WaveDecoder.cpp b/src/modules/sound/lullaby/WaveDecoder.cpp
index 4b09cbf6d..e0c1ac36e 100644
--- a/src/modules/sound/lullaby/WaveDecoder.cpp
+++ b/src/modules/sound/lullaby/WaveDecoder.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/sound/lullaby/WaveDecoder.h b/src/modules/sound/lullaby/WaveDecoder.h
index cfd80f39a..f4dd4741d 100644
--- a/src/modules/sound/lullaby/WaveDecoder.h
+++ b/src/modules/sound/lullaby/WaveDecoder.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/sound/wrap_Decoder.cpp b/src/modules/sound/wrap_Decoder.cpp
index beafe7e7f..124172906 100644
--- a/src/modules/sound/wrap_Decoder.cpp
+++ b/src/modules/sound/wrap_Decoder.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/sound/wrap_Decoder.h b/src/modules/sound/wrap_Decoder.h
index 2367cd903..9f2521403 100644
--- a/src/modules/sound/wrap_Decoder.h
+++ b/src/modules/sound/wrap_Decoder.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/sound/wrap_Sound.cpp b/src/modules/sound/wrap_Sound.cpp
index d34f891ec..1db64e6e8 100644
--- a/src/modules/sound/wrap_Sound.cpp
+++ b/src/modules/sound/wrap_Sound.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/sound/wrap_SoundData.h b/src/modules/sound/wrap_SoundData.h
index c4a963097..e3d8e6dff 100644
--- a/src/modules/sound/wrap_SoundData.h
+++ b/src/modules/sound/wrap_SoundData.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/system/System.cpp b/src/modules/system/System.cpp
index d5269a11d..d869f2670 100644
--- a/src/modules/system/System.cpp
+++ b/src/modules/system/System.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/system/System.h b/src/modules/system/System.h
index 5ebdd7b15..a3d261366 100644
--- a/src/modules/system/System.h
+++ b/src/modules/system/System.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/system/sdl/System.cpp b/src/modules/system/sdl/System.cpp
index b25decdd7..d03042c78 100644
--- a/src/modules/system/sdl/System.cpp
+++ b/src/modules/system/sdl/System.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/system/sdl/System.h b/src/modules/system/sdl/System.h
index 0970970e9..aa61eaae6 100644
--- a/src/modules/system/sdl/System.h
+++ b/src/modules/system/sdl/System.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/system/wrap_System.cpp b/src/modules/system/wrap_System.cpp
index 183650e1f..0db93a057 100644
--- a/src/modules/system/wrap_System.cpp
+++ b/src/modules/system/wrap_System.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/system/wrap_System.h b/src/modules/system/wrap_System.h
index 4f983908c..ea6d0ce0a 100644
--- a/src/modules/system/wrap_System.h
+++ b/src/modules/system/wrap_System.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/thread/Channel.cpp b/src/modules/thread/Channel.cpp
index 20a93d42a..124c98bbe 100644
--- a/src/modules/thread/Channel.cpp
+++ b/src/modules/thread/Channel.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/thread/Channel.h b/src/modules/thread/Channel.h
index e3a866f9b..c103d2608 100644
--- a/src/modules/thread/Channel.h
+++ b/src/modules/thread/Channel.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/thread/LuaThread.cpp b/src/modules/thread/LuaThread.cpp
index 9bb508c91..ba2d458a3 100644
--- a/src/modules/thread/LuaThread.cpp
+++ b/src/modules/thread/LuaThread.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/thread/LuaThread.h b/src/modules/thread/LuaThread.h
index df230e98c..dfe709418 100644
--- a/src/modules/thread/LuaThread.h
+++ b/src/modules/thread/LuaThread.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/thread/Thread.h b/src/modules/thread/Thread.h
index 63b89ef40..307780c58 100644
--- a/src/modules/thread/Thread.h
+++ b/src/modules/thread/Thread.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/thread/ThreadModule.cpp b/src/modules/thread/ThreadModule.cpp
index d04c23600..c935fe605 100644
--- a/src/modules/thread/ThreadModule.cpp
+++ b/src/modules/thread/ThreadModule.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/thread/ThreadModule.h b/src/modules/thread/ThreadModule.h
index cd1372384..1bd1e8b4e 100644
--- a/src/modules/thread/ThreadModule.h
+++ b/src/modules/thread/ThreadModule.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/thread/sdl/Thread.cpp b/src/modules/thread/sdl/Thread.cpp
index 65d2a7355..30ef47c9b 100644
--- a/src/modules/thread/sdl/Thread.cpp
+++ b/src/modules/thread/sdl/Thread.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/thread/sdl/Thread.h b/src/modules/thread/sdl/Thread.h
index 193d4a0f2..c28869dca 100644
--- a/src/modules/thread/sdl/Thread.h
+++ b/src/modules/thread/sdl/Thread.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/thread/sdl/threads.cpp b/src/modules/thread/sdl/threads.cpp
index 3479ae2a7..87e1f86ee 100644
--- a/src/modules/thread/sdl/threads.cpp
+++ b/src/modules/thread/sdl/threads.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/thread/sdl/threads.h b/src/modules/thread/sdl/threads.h
index e52015fd2..e03a538a6 100644
--- a/src/modules/thread/sdl/threads.h
+++ b/src/modules/thread/sdl/threads.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/thread/threads.cpp b/src/modules/thread/threads.cpp
index e3ad977a0..5bd172fd9 100644
--- a/src/modules/thread/threads.cpp
+++ b/src/modules/thread/threads.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/thread/threads.h b/src/modules/thread/threads.h
index e6b91ead4..58933946f 100644
--- a/src/modules/thread/threads.h
+++ b/src/modules/thread/threads.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/timer/Timer.cpp b/src/modules/timer/Timer.cpp
index c2d0a5cdd..d17d81c33 100644
--- a/src/modules/timer/Timer.cpp
+++ b/src/modules/timer/Timer.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/timer/Timer.h b/src/modules/timer/Timer.h
index cfd9ab180..17444836b 100644
--- a/src/modules/timer/Timer.h
+++ b/src/modules/timer/Timer.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/timer/wrap_Timer.cpp b/src/modules/timer/wrap_Timer.cpp
index ae0cfdf75..b9d9ea039 100644
--- a/src/modules/timer/wrap_Timer.cpp
+++ b/src/modules/timer/wrap_Timer.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/touch/Touch.h b/src/modules/touch/Touch.h
index db23ecfab..3ea50b0a1 100644
--- a/src/modules/touch/Touch.h
+++ b/src/modules/touch/Touch.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/touch/sdl/Touch.cpp b/src/modules/touch/sdl/Touch.cpp
index 09a9d9f22..084ca508d 100644
--- a/src/modules/touch/sdl/Touch.cpp
+++ b/src/modules/touch/sdl/Touch.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/touch/sdl/Touch.h b/src/modules/touch/sdl/Touch.h
index 67e8c9534..cc18287d3 100644
--- a/src/modules/touch/sdl/Touch.h
+++ b/src/modules/touch/sdl/Touch.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/touch/wrap_Touch.h b/src/modules/touch/wrap_Touch.h
index 8e7099854..d09bfb1bc 100644
--- a/src/modules/touch/wrap_Touch.h
+++ b/src/modules/touch/wrap_Touch.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/video/Video.h b/src/modules/video/Video.h
index 15640329b..c9ac9f217 100644
--- a/src/modules/video/Video.h
+++ b/src/modules/video/Video.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/video/VideoStream.cpp b/src/modules/video/VideoStream.cpp
index 16e7b6223..f368765d5 100644
--- a/src/modules/video/VideoStream.cpp
+++ b/src/modules/video/VideoStream.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/video/VideoStream.h b/src/modules/video/VideoStream.h
index 1a0971bb1..88597b03a 100644
--- a/src/modules/video/VideoStream.h
+++ b/src/modules/video/VideoStream.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/video/theora/TheoraVideoStream.cpp b/src/modules/video/theora/TheoraVideoStream.cpp
index 3087d820a..2871a2f1c 100644
--- a/src/modules/video/theora/TheoraVideoStream.cpp
+++ b/src/modules/video/theora/TheoraVideoStream.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/video/theora/TheoraVideoStream.h b/src/modules/video/theora/TheoraVideoStream.h
index e2013da3c..3dba047ea 100644
--- a/src/modules/video/theora/TheoraVideoStream.h
+++ b/src/modules/video/theora/TheoraVideoStream.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/video/theora/Video.cpp b/src/modules/video/theora/Video.cpp
index 450647285..1710e9179 100644
--- a/src/modules/video/theora/Video.cpp
+++ b/src/modules/video/theora/Video.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/video/theora/Video.h b/src/modules/video/theora/Video.h
index 20de72a60..b9aba849b 100644
--- a/src/modules/video/theora/Video.h
+++ b/src/modules/video/theora/Video.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/video/wrap_Video.h b/src/modules/video/wrap_Video.h
index 73da515db..3b7ae0d1b 100644
--- a/src/modules/video/wrap_Video.h
+++ b/src/modules/video/wrap_Video.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/window/Window.cpp b/src/modules/window/Window.cpp
index 804b74fa1..a23f53481 100644
--- a/src/modules/window/Window.cpp
+++ b/src/modules/window/Window.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/window/Window.h b/src/modules/window/Window.h
index 6cdacf92f..134cac5db 100644
--- a/src/modules/window/Window.h
+++ b/src/modules/window/Window.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/window/sdl/Window.cpp b/src/modules/window/sdl/Window.cpp
index 3425bd85a..2bbabb0a1 100644
--- a/src/modules/window/sdl/Window.cpp
+++ b/src/modules/window/sdl/Window.cpp
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/modules/window/sdl/Window.h b/src/modules/window/sdl/Window.h
index 0912d8454..a2aa22410 100644
--- a/src/modules/window/sdl/Window.h
+++ b/src/modules/window/sdl/Window.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/scripts/auto.lua b/src/scripts/auto.lua
index 0a81b0ab7..61a4b8ad6 100644
--- a/src/scripts/auto.lua
+++ b/src/scripts/auto.lua
@@ -7,7 +7,7 @@
local max_width = 18
local pattern = [[
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
diff --git a/src/scripts/boot.lua b/src/scripts/boot.lua
index 03db5c89e..242596380 100644
--- a/src/scripts/boot.lua
+++ b/src/scripts/boot.lua
@@ -1,5 +1,5 @@
--[[
-Copyright (c) 2006-2020 LOVE Development Team
+Copyright (c) 2006-2021 LOVE Development Team
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
diff --git a/src/scripts/boot.lua.h b/src/scripts/boot.lua.h
index 8f2e59066..1b00b86a9 100644
--- a/src/scripts/boot.lua.h
+++ b/src/scripts/boot.lua.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
@@ -27,7 +27,7 @@ const unsigned char boot_lua[] =
0x2d, 0x2d, 0x5b, 0x5b, 0x0a,
0x43, 0x6f, 0x70, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x20, 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x30, 0x36,
- 0x2d, 0x32, 0x30, 0x32, 0x30, 0x20, 0x4c, 0x4f, 0x56, 0x45, 0x20, 0x44, 0x65, 0x76, 0x65, 0x6c, 0x6f, 0x70,
+ 0x2d, 0x32, 0x30, 0x32, 0x31, 0x20, 0x4c, 0x4f, 0x56, 0x45, 0x20, 0x44, 0x65, 0x76, 0x65, 0x6c, 0x6f, 0x70,
0x6d, 0x65, 0x6e, 0x74, 0x20, 0x54, 0x65, 0x61, 0x6d, 0x0a,
0x0a,
0x54, 0x68, 0x69, 0x73, 0x20, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x20, 0x69, 0x73, 0x20, 0x70,
diff --git a/src/scripts/nogame.lua b/src/scripts/nogame.lua
index 3380dcc01..fe9103424 100644
--- a/src/scripts/nogame.lua
+++ b/src/scripts/nogame.lua
@@ -1,5 +1,5 @@
--[[
-Copyright (c) 2006-2020 LOVE Development Team
+Copyright (c) 2006-2021 LOVE Development Team
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
diff --git a/src/scripts/nogame.lua.h b/src/scripts/nogame.lua.h
index acf149c7c..8b68aae25 100644
--- a/src/scripts/nogame.lua.h
+++ b/src/scripts/nogame.lua.h
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2006-2020 LOVE Development Team
+ * Copyright (c) 2006-2021 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
@@ -27,7 +27,7 @@ const unsigned char nogame_lua[] =
0x2d, 0x2d, 0x5b, 0x5b, 0x0a,
0x43, 0x6f, 0x70, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x20, 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x30, 0x36,
- 0x2d, 0x32, 0x30, 0x32, 0x30, 0x20, 0x4c, 0x4f, 0x56, 0x45, 0x20, 0x44, 0x65, 0x76, 0x65, 0x6c, 0x6f, 0x70,
+ 0x2d, 0x32, 0x30, 0x32, 0x31, 0x20, 0x4c, 0x4f, 0x56, 0x45, 0x20, 0x44, 0x65, 0x76, 0x65, 0x6c, 0x6f, 0x70,
0x6d, 0x65, 0x6e, 0x74, 0x20, 0x54, 0x65, 0x61, 0x6d, 0x0a,
0x0a,
0x54, 0x68, 0x69, 0x73, 0x20, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x20, 0x69, 0x73, 0x20, 0x70,