From 1a6de3326fc224ef58b814856659940607d15dc5 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 28 Dec 2020 02:45:24 -0500 Subject: [PATCH] Add source code license and link to github to system app --- src/displayapp/screens/SystemInfo.cpp | 9 ++++++++- src/displayapp/screens/SystemInfo.h | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/displayapp/screens/SystemInfo.cpp b/src/displayapp/screens/SystemInfo.cpp index d821ac76..4fd96a82 100644 --- a/src/displayapp/screens/SystemInfo.cpp +++ b/src/displayapp/screens/SystemInfo.cpp @@ -112,6 +112,13 @@ std::unique_ptr SystemInfo::CreateScreen2() { } std::unique_ptr SystemInfo::CreateScreen3() { - strncpy(t3, "Hello from\nthe developer!", 27); + sprintf(t3, "Hello from\nthe developer!\n" + "Software Licensed\n" + "under the terms of\n" + "the GNU General\n" + "Public License v3\n" + "Source code:\n" + "https://github.com/\n" + " JF002/Pinetime"); return std::unique_ptr(new Screens::Label(app, t3)); } diff --git a/src/displayapp/screens/SystemInfo.h b/src/displayapp/screens/SystemInfo.h index a71bacc5..75268c71 100644 --- a/src/displayapp/screens/SystemInfo.h +++ b/src/displayapp/screens/SystemInfo.h @@ -43,7 +43,7 @@ namespace Pinetime { char t1[200]; char t2[200]; - char t3[30]; + char t3[200]; ScreenList<3> screens; std::unique_ptr CreateScreen1();