updated with correct license

This commit is contained in:
2026-02-18 12:43:47 +01:00
parent a3ec699b59
commit 52e3d0c07e
65 changed files with 1166 additions and 4 deletions

View File

@@ -4,6 +4,24 @@
//
// About modal with app icon and version info
//
// SPDX-License-Identifier: AGPL-3.0-or-later
// Copyright (C) 2026 Rune Olsen
//
// This file is part of oAI.
//
// oAI is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// oAI is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General
// Public License for more details.
//
// You should have received a copy of the GNU Affero General Public
// License along with oAI. If not, see <https://www.gnu.org/licenses/>.
import SwiftUI
@@ -44,7 +62,11 @@ struct AboutView: View {
.padding(.horizontal, 40)
VStack(spacing: 4) {
Text("&copy; 2026 [Rune Olsen](https://blog.rune.pm) | [Support](mailto:support@fubar.pm)")
Text("© 2026 [Rune Olsen](https://blog.rune.pm)")
.font(.caption)
.foregroundStyle(.secondary)
Text("[GNU Affero General Public License v3.0](https://www.gnu.org/licenses/agpl-3.0.html)")
.font(.caption)
.foregroundStyle(.secondary)
@@ -63,7 +85,7 @@ struct AboutView: View {
Spacer().frame(height: 20)
}
.frame(width: 320, height: 370)
.frame(width: 320, height: 390)
}
}