-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlog.html
More file actions
179 lines (151 loc) · 5.09 KB
/
log.html
File metadata and controls
179 lines (151 loc) · 5.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!DOCTYPE html><html lang="zh-CN"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>🍀 菜就多练 - 更新日志</title>
<style>
:root {
--primary: #4caf50;
--text: #333;
--background: #f9f9f9;
}
body {
font-family: "Segoe UI", "PingFang SC", "Helvetica Neue", sans-serif;
margin: 0;
padding: 0;
background: var(--background);
color: var(--text);
}
header {
background: var(--primary);
color: white;
padding: 1rem;
text-align: center;
font-size: 1.5rem;
font-weight: bold;
}
.container {
max-width: 700px;
margin: 2rem auto;
padding: 0 1rem;
}
.version {
background: white;
border-radius: 8px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
padding: 1.5rem;
margin-bottom: 1.5rem;
transition: all 0.3s ease;
}
.version:hover {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.version h2 {
margin-top: 0;
font-size: 1.2rem;
color: var(--primary);
}
ul {
padding-left: 1.2rem;
}
li {
line-height: 1.6;
}
footer {
text-align: center;
font-size: 0.9rem;
color: #888;
padding: 2rem 0;
}
a {
color: var(--primary);
text-decoration: none;
font-weight: 500;
display: inline-block;
padding: 2px 0;
transition: color 0.2s, text-decoration 0.2s;
}
a:hover {
color: #388e3c;
text-decoration: underline;
}
.release-body {
margin-top: 10px;
padding-left: 10px;
}
.release-body ul {
margin: 0;
padding-left: 1.2em;
}
.release-body li {
margin-bottom: 4px;
}
</style>
</head>
<body>
<header>🍀 菜就多练 - 更新日志</header>
<div class="container">
<div class="version">
<h2>📌 v1.0.2 <span style="font-size: 0.9rem; color: #888;">- 2025-04-20</span></h2>
<ul>
<li><a class="release-link" href="https://github.com/chenggouA/Wordle_Chinese/releases/tag/v1.0.2" target="_blank">📄 发布详情页</a></li>
</ul>
<div class="release-body">
<h2>📦 Release v1.0.2</h2>
<h3>✨ 新功能</h3>
<ul>
<li><p><strong>添加历史对战页面(BattleHistory)</strong></p>
<ul>
<li>支持展示每场对战结果(胜/负)</li>
<li>成功对战会显示荣誉称号与描述(如:一鸣惊人、学富五车等)</li>
<li>使用毛玻璃风格卡片 + 古风战场背景增强视觉沉浸感</li>
<li>支持从本地 <code>AsyncStorage</code> 自动加载历史记录</li>
</ul>
</li>
<li><p><strong>根据答对次数动态显示成就称号</strong></p>
<ul>
<li>第 1 次成功 → 一鸣惊人</li>
<li>第 2 次成功 → 举世无双</li>
<li>...</li>
<li>共支持 6 个等级,超出范围默认“卓尔不群”</li>
<li>成就信息在游戏顶部 <code>GameHeader</code> 实时展示</li>
</ul>
</li>
</ul>
<h3>🧪 其他更新</h3>
<ul>
<li><code>GameHeader</code> 成就显示逻辑重构,避免状态滞后一帧问题</li>
<li>将成就称号与描述提取为独立配置文件 <code>achievements.ts</code> 以便维护</li>
</ul>
<hr>
</div>
</div>
<div class="version">
<h2>📌 v1.0.1 <span style="font-size: 0.9rem; color: #888;">- 2025-04-20</span></h2>
<ul>
<li><a class="release-link" href="https://github.com/chenggouA/Wordle_Chinese/releases/tag/v1.0.1" target="_blank">📄 发布详情页</a></li>
</ul>
<div class="release-body">
<h3>✨ 更新内容</h3>
<ul>
<li>✅ 移除游戏中的“重新开始”按钮,简化交互流程</li>
<li>🧠 玩家完成一轮(猜中 / 失败)后自动进入下一局</li>
<li>🎨 游戏页背景统一为首页相同的水墨风静态图</li>
<li>📱 适配底部导航栏,修复按钮遮挡问题</li>
<li>🧩 changelog 页面适配刘海屏,添加 SafeAreaView</li>
</ul>
</div>
</div>
<div class="version">
<h2>📌 v1.0.0 <span style="font-size: 0.9rem; color: #888;">- 2025-04-12</span></h2>
<ul>
<li><a class="release-link" href="https://github.com/chenggouA/Wordle_Chinese/releases/tag/v1.0.0" target="_blank">📄 发布详情页</a></li>
</ul>
<div class="release-body">
<p>首个正式版本,支持安卓安装、拼音对战等功能
如果你无法从 GitHub 下载,可使用 Expo 构建地址安装:
<a href="url">https://expo.dev/artifacts/eas/qqStf3PqgFo2PAuakvq6tw.apk</a></p>
</div>
</div>
</div>
<footer>© 2025 菜就多练 | 由 chenggou 发布</footer>
</body></html>