Update year property in version.py to 2024

Seems like we missed this one when changing the copyright statements
to use `present` instead of the hardcoded `year`.

And backport other minor improvements from #87543.
This commit is contained in:
Rémi Verschelde
2024-01-25 13:34:52 +01:00
parent 584dc09ff8
commit f61e2491e1
4 changed files with 13 additions and 13 deletions

View File

@ -33,6 +33,12 @@
#include "core/version_generated.gen.h"
// Copied from typedefs.h to stay lean.
#ifndef _STR
#define _STR(m_x) #m_x
#define _MKSTR(m_x) _STR(m_x)
#endif
// Godot versions are of the form <major>.<minor> for the initial release,
// and then <major>.<minor>.<patch> for subsequent bugfix releases where <patch> != 0
// That's arbitrary, but we find it pretty and it's the current policy.