349d94aa8f
- 原生数据面 libwebrtc(PLAN 决策 F):新增 Engine/LibWebRtcEngine.swift(RTCPeerConnection,端口 engine.go/session.go 线协议 + 水位背压 + ack 完成 + 不冲突落盘);NativeTransfer.swift 的 P2PEventsBridge 改 conform P2PEngineDelegate(去 gomobile);EngineController 4 个 p2p RPC 改调新引擎(completion-based + resolveOnMain)。stasel/WebRTC M149 经 SPM(exactVersion 149.0.0)。环回端到端 20MB 逐字节测过(Tests/) - UX 改造(PARITY 残余项 1/2):新增 SendComposeSheet(发送预览=文件名 + 选设备,手动多选与分享共用);分享直入预览 + scenePhase .active 兜底(修“分享后必须重启 app”);重写 MessagesView(按设备会话 + 每设备未读红点 + 删单条 / 删整设备历史);EngineController 加 conversations / unread 模型 - 品牌 logo:新增 Shared/Brand.swift(BrandMark / Wordmark / BrandLockup / BrandHero)+ Brand.xcassets/LogoMark;登录页 / 传输空态 / 设置头 / 控制中心控件接 logo;Theme 加 cdropAmber - 字体(对齐 web,仅主 app):新增 BrandFonts.swift(Orbit Gothic + Maple Mono woff2 运行期 CTFontManager 注册 + UIKit 外观代理 + .oXxx / .maple 助手);Fredoka SemiBold 字标;7 视图 .font sweep。字体不入库——.gitignore 排除 + just ios-fonts 构建前从 CDN / Google Fonts 拉取,见 Sources/Fonts/README.md - 分享引导:新增 Share/ShareGuideView(吉祥物卡 + “打开 Commilitia Drop”);ShareViewController 健壮 staging(文件 / 数据双路)+ 响应链 IMP 唤起宿主 - 全平台平均速度:传输完成态显平均速度(总字节 / 总耗时)而非末次瞬时——web store/slices/transfer.ts + TransferRow.tsx + iOS RootView 卡片 / 详情;i18n 加 transfer.avgRate - 工程:project.yml 接 SPM WebRTC + CDropTests + Fredoka UIAppFonts + Share i18n;Justfile 加 ios-sim-build + ios-fonts / ios-fonts-fredoka 配方 - 文档:ios/PLAN.md(决策 F + §10 UX + §11 品牌/字体 + §12 平均速度)、ios/PARITY.md(字体分叉条目更新 + 2026-06-28 漂移行)
77 lines
2.4 KiB
Swift
77 lines
2.4 KiB
Swift
import SwiftUI
|
||
|
||
// 品牌视觉单一真源(吉祥物 mark + 文字字标),供主 app / 分享扩展 / 小组件共用(三者 sources 均含
|
||
// Shared)。资产 LogoMark 在 Shared/Brand.xcassets,随各 target bundle 编译,故 Image("LogoMark") 在
|
||
// 各自 bundle 内解析得到。字标双色对齐 web 品牌资产:Commilitia=主前景、Drop=品牌琥珀(cdropAmber);
|
||
// 品牌名是专有名词、不本地化。圆体(system rounded)呼应 web 的 Fredoka。
|
||
|
||
// 吉祥物 mark(透明背景,抱着飞散的纸=「drop」文件)。size 控制边长。
|
||
struct BrandMark: View
|
||
{
|
||
var size: CGFloat = 96
|
||
|
||
var body: some View
|
||
{
|
||
Image("LogoMark")
|
||
.resizable()
|
||
.scaledToFit()
|
||
.frame(width: size, height: size)
|
||
.accessibilityHidden(true)
|
||
}
|
||
}
|
||
|
||
// 文字字标「Commilitia Drop」:Drop 用品牌琥珀,与 mark 成对呈现(品牌规范:不以纯文字呈现品牌)。
|
||
struct Wordmark: View
|
||
{
|
||
var size: CGFloat = 22
|
||
|
||
var body: some View
|
||
{
|
||
(
|
||
Text("Commilitia ").foregroundColor(.primary)
|
||
+ Text("Drop").foregroundColor(.cdropAmber)
|
||
)
|
||
// 品牌字标用 Fredoka SemiBold(与 web 品牌资产一致,font 经 UIAppFonts 注册;见 Shared/Fonts)。
|
||
.font(.custom("Fredoka-SemiBold", size: size))
|
||
.accessibilityLabel("Commilitia Drop")
|
||
}
|
||
}
|
||
|
||
// 横排锁版:mark + 字标(设置页头等)。
|
||
struct BrandLockup: View
|
||
{
|
||
var markSize: CGFloat = 30
|
||
var wordSize: CGFloat = 20
|
||
|
||
var body: some View
|
||
{
|
||
HStack(spacing: 10)
|
||
{
|
||
BrandMark(size: markSize)
|
||
Wordmark(size: wordSize)
|
||
}
|
||
}
|
||
}
|
||
|
||
// 品牌空态 hero(主页 / 列表空时):大 mark + 字标 + 一句副文案(i18n 由调用方传入)。取代单调的
|
||
// SF Symbol 空态——首屏即见吉祥物,强化品牌;mark 抱纸的姿态恰好呼应「等你来 drop 文件」。
|
||
struct BrandHero: View
|
||
{
|
||
var tagline: String
|
||
|
||
var body: some View
|
||
{
|
||
VStack(spacing: 16)
|
||
{
|
||
BrandMark(size: 132)
|
||
Wordmark(size: 26)
|
||
Text(tagline)
|
||
.font(.subheadline)
|
||
.foregroundStyle(.secondary)
|
||
.multilineTextAlignment(.center)
|
||
}
|
||
.frame(maxWidth: .infinity, maxHeight: .infinity)
|
||
.padding()
|
||
}
|
||
}
|