From 76a4647e8b8b4dfdd99b19075aab2c9cbcd5defe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=A1=D1=83=D1=85=D0=BE=D0=B2?= Date: Wed, 9 Sep 2020 16:10:54 +0600 Subject: [PATCH] Fix year Fixing the year string to show a 4-digit year instead of 3-digit --- inc/product.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/product.h b/inc/product.h index 0ab8bef..3093545 100644 --- a/inc/product.h +++ b/inc/product.h @@ -37,7 +37,7 @@ public: public: const StringRef name { "YaPB" }; - const StringRef year { __DATE__ + 8 }; + const StringRef year { __DATE__ + 7 }; const StringRef author { "YaPB Development Team" }; const StringRef email { "team@yapb.ru" }; const StringRef url { "https://yapb.ru/" };