-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Includes: - Credits - Donations - Diagnostics - Version Had to: - Wrap tab view into a NavigationStack for full-screen navigation - Take out navigation titles of about subviews - Customize donations view layout with modifier - Fix credits and debug log to support scrolling Closes #914
- Loading branch information
Showing
27 changed files
with
487 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
Passepartout/Library/Sources/AppUIMain/Views/About/iOS/DonateViewModifier+iOS.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// | ||
// DonateViewModifier+iOS.swift | ||
// Passepartout | ||
// | ||
// Created by Davide De Rosa on 11/23/24. | ||
// Copyright (c) 2024 Davide De Rosa. All rights reserved. | ||
// | ||
// https://github.com/passepartoutvpn | ||
// | ||
// This file is part of Passepartout. | ||
// | ||
// Passepartout is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// Passepartout 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 General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with Passepartout. If not, see <http://www.gnu.org/licenses/>. | ||
// | ||
|
||
#if os(iOS) | ||
|
||
import SwiftUI | ||
|
||
struct DonateViewModifier: ViewModifier { | ||
func body(content: Content) -> some View { | ||
List { | ||
content | ||
.themeSection(footer: Strings.Views.Donate.Sections.Main.footer) | ||
} | ||
} | ||
} | ||
|
||
#endif |
42 changes: 42 additions & 0 deletions
42
Passepartout/Library/Sources/AppUIMain/Views/About/macOS/DonateViewModifier+macOS.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
// | ||
// DonateViewModifier+macOS.swift | ||
// Passepartout | ||
// | ||
// Created by Davide De Rosa on 11/23/24. | ||
// Copyright (c) 2024 Davide De Rosa. All rights reserved. | ||
// | ||
// https://github.com/passepartoutvpn | ||
// | ||
// This file is part of Passepartout. | ||
// | ||
// Passepartout is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// Passepartout 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 General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with Passepartout. If not, see <http://www.gnu.org/licenses/>. | ||
// | ||
|
||
#if os(macOS) | ||
|
||
import SwiftUI | ||
|
||
struct DonateViewModifier: ViewModifier { | ||
func body(content: Content) -> some View { | ||
Form { | ||
Section { | ||
Text(Strings.Views.Donate.Sections.Main.footer) | ||
} | ||
content | ||
} | ||
.themeForm() | ||
} | ||
} | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
Passepartout/Library/Sources/AppUITV/Views/App/AppCoordinatorRoute.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// | ||
// AppCoordinatorRoute.swift | ||
// Passepartout | ||
// | ||
// Created by Davide De Rosa on 11/23/24. | ||
// Copyright (c) 2024 Davide De Rosa. All rights reserved. | ||
// | ||
// https://github.com/passepartoutvpn | ||
// | ||
// This file is part of Passepartout. | ||
// | ||
// Passepartout is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// Passepartout 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 General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with Passepartout. If not, see <http://www.gnu.org/licenses/>. | ||
// | ||
|
||
import Foundation | ||
|
||
enum AppCoordinatorRoute: Hashable { | ||
case appLog | ||
|
||
case credits | ||
|
||
case donate | ||
|
||
case tunnelLog | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.