File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -157,6 +157,11 @@ const SoftwareDownloadButton = ({
157
157
GitHub
158
158
</ span >
159
159
) }
160
+ { name === "rainyun" && (
161
+ < span className = "ml-2 text-xs rounded-full py-0.5 px-2 bg-cyan-500/80 text-write-800" >
162
+ 雨云
163
+ </ span >
164
+ ) }
160
165
{ download . sha256 !== null &&
161
166
copied === download . sha256 && (
162
167
< span className = "ml-2 text-xs rounded-full py-0.5 px-2 bg-green-200/80 text-green-800" >
@@ -167,10 +172,10 @@ const SoftwareDownloadButton = ({
167
172
) }
168
173
</ div >
169
174
< div className = "text-gray-700 dark:text-gray-300 text-xs inline-flex items-center w-full" >
170
- { download . sha256 !== null && (
175
+ { name === "application" && (
171
176
< span className = "truncate" > { download . sha256 } </ span >
172
177
) }
173
- { download . sha256 !== null && (
178
+ { name === "application" && (
174
179
< button
175
180
className = "ml-2 h-6 w-6"
176
181
onClick = { ( evt ) => {
@@ -182,6 +187,14 @@ const SoftwareDownloadButton = ({
182
187
< CloneIcon className = "h-4 w-4" />
183
188
</ button >
184
189
) }
190
+ { name === "rainyun" && (
191
+ < a href = "https://www.rainyun.com/home" >
192
+ < span className = "underline" >
193
+ 由< b > 雨云</ b > 提供下载支持 -
194
+ 点此直接在雨云游戏服务器上运行!
195
+ </ span >
196
+ </ a >
197
+ ) }
185
198
</ div >
186
199
</ div >
187
200
</ a >
You can’t perform that action at this time.
0 commit comments