From 07b3321c5a04b7c29227e2e5b85aae6aabf5c3ac Mon Sep 17 00:00:00 2001 From: Ashley Mensah Date: Thu, 29 Jan 2026 12:47:21 +0100 Subject: [PATCH 1/2] Update the year on the 'about' screen from 2023 -> 2026 --- NetBird/Source/App/Views/AboutView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NetBird/Source/App/Views/AboutView.swift b/NetBird/Source/App/Views/AboutView.swift index bf4adf7..b3500e7 100644 --- a/NetBird/Source/App/Views/AboutView.swift +++ b/NetBird/Source/App/Views/AboutView.swift @@ -54,7 +54,7 @@ struct AboutView: View { .padding(.horizontal, UIScreen.main.bounds.width * 0.20) .padding(.bottom, 50) - Text("© 2023 NetBird all rights reserved") + Text("© 2026 NetBird all rights reserved") .foregroundColor(.white) .padding(.bottom, UIScreen.main.bounds.height * 0.01) } From 42e2d16b78568e59b7c28a85261a38912159af53 Mon Sep 17 00:00:00 2001 From: Ashley Mensah Date: Thu, 29 Jan 2026 13:22:12 +0100 Subject: [PATCH 2/2] calculate about screen year dynamically instead of hard-coding --- NetBird/Source/App/Views/AboutView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NetBird/Source/App/Views/AboutView.swift b/NetBird/Source/App/Views/AboutView.swift index b3500e7..5857c52 100644 --- a/NetBird/Source/App/Views/AboutView.swift +++ b/NetBird/Source/App/Views/AboutView.swift @@ -54,7 +54,7 @@ struct AboutView: View { .padding(.horizontal, UIScreen.main.bounds.width * 0.20) .padding(.bottom, 50) - Text("© 2026 NetBird all rights reserved") + Text("© \(String(Calendar.current.component(.year, from: Date()))) NetBird all rights reserved") .foregroundColor(.white) .padding(.bottom, UIScreen.main.bounds.height * 0.01) }