Skip to content

Commit 5260cb4

Browse files
committed
Release V1.5
1 parent 173707d commit 5260cb4

File tree

6 files changed

+50
-13
lines changed

6 files changed

+50
-13
lines changed

Guozaoke.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -436,10 +436,10 @@
436436
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
437437
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
438438
CODE_SIGN_IDENTITY = "Apple Development";
439-
CODE_SIGN_STYLE = Automatic;
439+
CODE_SIGN_STYLE = Manual;
440440
CURRENT_PROJECT_VERSION = 121;
441441
DEVELOPMENT_ASSET_PATHS = "\"Guozaoke/Preview Content\"";
442-
DEVELOPMENT_TEAM = W3H3KU6C4U;
442+
DEVELOPMENT_TEAM = "";
443443
ENABLE_PREVIEWS = YES;
444444
GENERATE_INFOPLIST_FILE = YES;
445445
INFOPLIST_FILE = Guozaoke/Info.plist;
@@ -457,7 +457,7 @@
457457
"@executable_path/Frameworks",
458458
);
459459
MARKETING_VERSION = 1.5;
460-
PRODUCT_BUNDLE_IDENTIFIER = com.youyu.meetyou;
460+
PRODUCT_BUNDLE_IDENTIFIER = com.guozaoke.app.ios;
461461
PRODUCT_NAME = "$(TARGET_NAME)";
462462
PROVISIONING_PROFILE_SPECIFIER = "";
463463
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";

Guozaoke/View/Home/SendCommentView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ struct SendCommentView: View {
4343
.foregroundColor(Color.white)
4444
.background(Color.blue)
4545
.cornerRadius(12)
46-
.subTitleFontStyle()
46+
.fontStyle(fontName: titleFontName, fontSize: 16)
4747
}
4848
}
4949
.disabled(isPosting || !contentTextValid)

Guozaoke/View/Me/MoreView.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,28 +13,28 @@ struct MoreView: View {
1313
List {
1414
NavigationLink(destination: UserInfoView(userId: "isau")) {
1515
Text("过早客iOS开发者:isau")
16-
.subTitleFontStyle(weight: .thin)
16+
.titleFontStyle(weight: .thin)
1717
.padding()
1818
.foregroundColor(Color.primary)
1919
}
2020

2121
NavigationLink(destination: UserInfoView(userId: "Mario")) {
2222
Text("网站管理大大:Mario")
23-
.subTitleFontStyle(weight: .thin)
23+
.titleFontStyle(weight: .thin)
2424
.padding()
2525
.foregroundColor(Color.primary)
2626
}
2727

2828
NavigationLink(destination: PostDetailView(postId: APIService.androidUpdateTopicInfo)) {
2929
Text("mzlogin大大:mzlogin")
30-
.subTitleFontStyle(weight: .thin)
30+
.titleFontStyle(weight: .thin)
3131
.padding()
3232
.foregroundColor(Color.primary)
3333
}
3434

3535
NavigationLink(destination: PostDetailView(postId: APIService.iosUpdateTopicInfo)) {
3636
Text("更新说明")
37-
.subTitleFontStyle(weight: .thin)
37+
.titleFontStyle(weight: .thin)
3838
.padding()
3939
.foregroundColor(Color.primary)
4040
}

Guozaoke/View/Me/SettingNodeListView.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ struct SettingNodeListView: View {
88
ForEach(viewModel.postListItems) { item in
99
HStack {
1010
Text(item.type.rawValue)
11-
.font(.system(size: 16, weight: .regular))
12-
11+
.titleFontStyle()
12+
1313
Spacer()
1414

1515
Toggle(isOn: Binding(
@@ -19,7 +19,7 @@ struct SettingNodeListView: View {
1919
}
2020
)) {
2121
Text(item.isVisible ? "「显示」": "「不显示」")
22-
.font(.system(size: 16, weight: .thin))
22+
.subTitleFontStyle(weight: .thin)
2323
}
2424
.toggleStyle(SwitchToggleStyle(tint: .blue))
2525
}

README.md

Lines changed: 39 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,51 @@
11
# Guozaoke
2-
Guozaoke iOS
2+
过早客 iOS
33

44
<a href="https://apps.apple.com/id6740704728" target="_blank">
55
<img src="screenshot/appstore.png" alt="Guozaoke Button" style="width: 150px; height: auto;"></a>
66

7-
![过早客](screenshot/guozaokeinfo.png)
7+
![过早客](screenshot/0308guozaokeinfo.png)
8+
9+
[过早客Android](https://github.com/mzlogin/guanggoo-android/releases)
810

911
### 介绍
1012

1113
[guozaoke官网](guozaoke.com)
1214

1315
[接口参考](https://github.com/mzlogin/guanggoo-android/blob/master/docs/guanggoo-api.md)
1416

17+
### Todo
18+
19+
目前还有部分内容没有完成。
20+
21+
* 用第三方上传图片
22+
* 发帖前支持预览
23+
* 部分解析优化,比如评论中email显示问题
24+
* 切换ICON
25+
* 优化其他内容
26+
27+
Guozaoke 采用SwiftUI编写
28+
29+
使用[Alamofire](https://github.com/Alamofire/Alamofire)封装请求
30+
31+
使用[RichText](https://github.com/NuPlay/RichText) 解析主题内容
32+
33+
使用[Kingfisher](https://github.com/onevcat/Kingfisher)加载图片
34+
35+
使用[JDStatusBarNotification](https://github.com/calimarkus/JDStatusBarNotification) toast 提示
36+
37+
解析所有节点标签布局参考[@graycreate](https://github.com/v2er-app/iOS)部分实现
38+
39+
App ICON由[@caipod](https://github.com/caipod) 设计,还有ICON,待支持更换ICON。
40+
41+
https://mastergo.com/goto/HNxgmh1Q?page_id=5:00&file=153231050152995
42+
43+
### 注意
44+
45+
请不要将此工程再次打包上传到App Store,仅供参考学习,其实也没啥。
46+
47+
感谢所有,欢迎PR,反馈。
48+
49+
### 愿景
50+
51+
Guozaoke过早客关注武汉发展。

screenshot/0308guozaokeinfo.png

4.19 MB
Loading

0 commit comments

Comments
 (0)