29 lines
1.4 KiB
Diff
29 lines
1.4 KiB
Diff
|
|
From 77e3cdac535359ec5e6f013702653675ab448d80 Mon Sep 17 00:00:00 2001
|
||
|
|
From: leeffo <leeffo@yeah.net>
|
||
|
|
Date: Wed, 8 Mar 2023 11:21:10 +0800
|
||
|
|
Subject: [PATCH] feat: modify copyright read current year
|
||
|
|
|
||
|
|
---
|
||
|
|
src/frame/window/modules/systeminfo/nativeinfowidget.cpp | 4 ++--
|
||
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
|
||
|
|
diff --git a/src/frame/window/modules/systeminfo/nativeinfowidget.cpp b/src/frame/window/modules/systeminfo/nativeinfowidget.cpp
|
||
|
|
index 771bb57..3ba9b1f 100644
|
||
|
|
--- a/src/frame/window/modules/systeminfo/nativeinfowidget.cpp
|
||
|
|
+++ b/src/frame/window/modules/systeminfo/nativeinfowidget.cpp
|
||
|
|
@@ -371,9 +371,9 @@ const QString NativeInfoWidget::systemCopyright() const
|
||
|
|
|
||
|
|
if (oem_copyright.isEmpty()) {
|
||
|
|
if (DSysInfo::isCommunityEdition())
|
||
|
|
- return QApplication::translate("dcc::systeminfo::SystemInfoWidget", "Copyright© 2011-%1 Deepin Community").arg(2022);
|
||
|
|
+ return QApplication::translate("dcc::systeminfo::SystemInfoWidget", "Copyright© 2011-%1 Deepin Community").arg(QString(__DATE__).right(4));
|
||
|
|
else
|
||
|
|
- return QApplication::translate("dcc::systeminfo::SystemInfoWidget", "Copyright© 2019-%1 UnionTech Software Technology Co., LTD").arg(2022);
|
||
|
|
+ return QApplication::translate("dcc::systeminfo::SystemInfoWidget", "Copyright© 2019-%1 UnionTech Software Technology Co., LTD").arg(QString(__DATE__).right(4));
|
||
|
|
} else {
|
||
|
|
return oem_copyright;
|
||
|
|
}
|
||
|
|
--
|
||
|
|
2.20.1
|
||
|
|
|