Skip to content

Commit

Permalink
fix:修复 iAppStore 命名错误的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
iHTCboy committed Dec 9, 2022
1 parent a4d6b17 commit 909a9ec
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## 简介

iAppStroe 是一款使用 SwiftUI 打造的苹果商店工具类 App。
iAppStore 是一款使用 SwiftUI 打造的苹果商店工具类 App。

- 1、提供苹果实时榜单查询,包含 iOS 和 iPad 的热门免费榜、热门付费榜、畅销榜,还有新上架榜、新上架免费榜、新上架付费榜等。
- 2、提供查询 app 详细页面内容、搜索 app、订阅 app 状态等功能。
Expand Down Expand Up @@ -63,4 +63,4 @@ iAppStroe 是一款使用 SwiftUI 打造的苹果商店工具类 App。

### License

iAppStroe is released under the GPL-3.0 license. [See LICENSE](https://github.com/37iOS/iAppStore-SwiftUI/blob/main/LICENSE) for details.
iAppStore is released under the GPL-3.0 license. [See LICENSE](https://github.com/37iOS/iAppStore-SwiftUI/blob/main/LICENSE) for details.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
"size" : "83.5x83.5"
},
{
"filename" : "icon-1024.png",
"filename" : "37-icon-1024.png",
"idiom" : "ios-marketing",
"scale" : "1x",
"size" : "1024x1024"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
"size" : "83.5x83.5"
},
{
"filename" : "icon-1024.png",
"filename" : "ios-icon-1024.png",
"idiom" : "ios-marketing",
"scale" : "1x",
"size" : "1024x1024"
Expand Down
8 changes: 4 additions & 4 deletions iAppStore/components/setting/AboutAppView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ struct AboutAppView: View {
var body: some View {
ScrollView {
Spacer().frame(height: 50)
Image("iAppStroe_icon").cornerRadius(15).padding(.bottom, 10)
Text("iAppStroe").fontWeight(.bold).padding(.bottom, 5)
Image("iAppStore_icon").cornerRadius(15).padding(.bottom, 10)
Text("iAppStore").fontWeight(.bold).padding(.bottom, 5)
Text("v \(appVersion ?? "") (\(appSubVersion ?? ""))").font(.footnote).foregroundColor(.gray).padding(.bottom, 10)
Text("iAppStroe 是一款使用 SwiftUI 打造的苹果商店工具类 App。").padding([.leading, .trailing], 20).padding(.bottom, 10)
Text("iAppStore 是一款使用 SwiftUI 打造的苹果商店工具类 App。").padding([.leading, .trailing], 20).padding(.bottom, 10)
Text("1、提供苹果实时榜单查询,包含 iOS 和 iPad 的热门免费榜、热门付费榜、畅销榜,还有新上架榜、新上架免费榜、新上架付费榜等。\n2、提供查询 app 详细页面内容、搜索 app、订阅 app 状态等功能。\n3、支持苹果所有国家和地区的商店,无需切换 Apple Id,即可查看!")
.font(.footnote)
.padding([.leading, .trailing], 20).padding(.bottom, 10)

Spacer()
}
.navigationTitle("关于 iAppStroe")
.navigationTitle("关于 iAppStore")
.navigationBarTitleDisplayMode(.inline)
}
}
Expand Down
2 changes: 1 addition & 1 deletion iAppStore/components/setting/SettingHome.swift
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ struct SettingItemCell: View {
let type = icons[index]
VStack{
HStack {
Image(type.count > 0 ? type + "_icon" : "iAppStroe_icon")
Image(type.count > 0 ? type + "_icon" : "iAppStore_icon")
.resizable()
.renderingMode(.original)
.frame(width: 65, height: 65)
Expand Down

0 comments on commit 909a9ec

Please sign in to comment.