What changed, and why it matters
This commit only changes the displayed copyright year from 2025 to 2026 in the app's about/credits screen. It is a routine legal notice update with no security relevance.
No action required; this is a non-security cosmetic change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
A single string literal in src/ui/menu_nbgl.c is updated from “(c) 2025 Ledger” to “(c) 2026 Ledger”. This is a display-only change in the device UI’s info list and does not alter any code logic, memory handling, cryptography, parsing, or authorization behavior.
Changed components
src/ui/menu_nbgl.cInspect captured patch +1 / −1
diff --git a/src/ui/menu_nbgl.c b/src/ui/menu_nbgl.c
index 2deed25..8f561ed 100644
--- a/src/ui/menu_nbgl.c
+++ b/src/ui/menu_nbgl.c
@@ -24,7 +24,7 @@
#define SETTING_INFO_NB 3
static const char* const INFO_TYPES[SETTING_INFO_NB] = {"Version", "Developer", "Copyright"};
-static const char* const INFO_CONTENTS[SETTING_INFO_NB] = {APPVERSION, "Ledger", "(c) 2025 Ledger"};
+static const char* const INFO_CONTENTS[SETTING_INFO_NB] = {APPVERSION, "Ledger", "(c) 2026 Ledger"};
static const nbgl_contentInfoList_t infoList = {
.nbInfos = SETTING_INFO_NB,
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.