Skip to content
This repository was archived by the owner on Mar 7, 2026. It is now read-only.

Commit cef34bf

Browse files
authored
Bug fixes, update names in main and update to v0.5.0
1 parent 6397003 commit cef34bf

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

Sources/prostore/prostore.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,25 +34,25 @@ struct MainSidebarView: View {
3434
case .signer:
3535
NavigationStack {
3636
SignerView()
37-
.navigationTitle("ProStore - Signer")
37+
.navigationTitle("Signer")
3838
.navigationBarTitleDisplayMode(.large)
3939
}
4040
case .certificates:
4141
NavigationStack {
4242
CertificateView()
43-
.navigationTitle("ProStore - Certificates")
43+
.navigationTitle("Certificates")
4444
.navigationBarTitleDisplayMode(.large)
4545
}
4646
case .apps:
4747
NavigationStack {
4848
AppsView()
49-
.navigationTitle("ProStore - Apps")
49+
.navigationTitle("Apps")
5050
.navigationBarTitleDisplayMode(.large)
5151
}
5252
case .about:
5353
NavigationStack {
5454
AboutView()
55-
.navigationTitle("ProStore - About")
55+
.navigationTitle("About")
5656
.navigationBarTitleDisplayMode(.large)
5757
}
5858
case nil:

Sources/prostore/views/appsView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ private struct AppDetailView: View {
360360
}
361361
}
362362

363-
if let screenshots = latestVersion?.downloadURL != nil ? [] : nil, !screenshots!.isEmpty {
363+
if let screenshots = latestVersion?.screenshotURLs, !screenshots.isEmpty {
364364
ScrollView(.horizontal, showsIndicators: false) {
365365
HStack {
366366
ForEach(screenshots!, id: \.self) { url in

0 commit comments

Comments
 (0)