mirror of
https://github.com/earthjasonlin/zzz-signal-search-export.git
synced 2025-04-21 07:50:19 +08:00
Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
f1e3b76d85
|
|||
2736ee0398
|
|||
66188231bc
|
|||
5624af3fb2
|
|||
3c848a97f8
|
|||
6ddc29af5a
|
@ -1,6 +1,6 @@
|
||||
# 绝区零记录导出工具
|
||||
# 绝区零调频记录导出工具
|
||||
|
||||
中文 | [English](https://git.loliquq.cn/earthjasonlin/zzz-signal-search-export/blob/main/docs/README_EN.md)
|
||||
中文 | [English](https://github.com/earthjasonlin/zzz-signal-search-export/blob/main/docs/README_EN.md)
|
||||
|
||||
这个项目由[star-rail-warp-export](https://github.com/biuuu/star-rail-warp-export/)修改而来,功能基本一致。
|
||||
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 264 KiB After Width: | Height: | Size: 42 KiB |
@ -1,6 +1,6 @@
|
||||
# Zenless Zone Zero Signal Search History Exporter
|
||||
|
||||
[中文](https://git.loliquq.cn/earthjasonlin/zzz-signal-search-export/blob/main/README.md) | English
|
||||
[中文](https://github.com/earthjasonlin/zzz-signal-search-export) | English
|
||||
|
||||
This project is modified from the [star-rail-warp-export](https://github.com/biuuu/star-rail-warp-export/) repository, and its functions are basically the same.
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "zzz-signal-search-export",
|
||||
"version": "1.0.5",
|
||||
"version": "1.0.7",
|
||||
"main": "./dist/electron/main/main.js",
|
||||
"author": "earthjasonlin <https://git.loliquq.cn/earthjasonlin>",
|
||||
"homepage": "https://github.com/earthjasonlin/zzz-signal-search-export",
|
||||
|
@ -82,11 +82,17 @@ const start = async () => {
|
||||
arr.push(log.time)
|
||||
arr.push(log.name)
|
||||
arr.push(log.item_type)
|
||||
arr.push(log.rank_type)
|
||||
if(log.rank_type === '2') {
|
||||
arr.push(i18n.ui.data.star2)
|
||||
} else if(log.rank_type === '3') {
|
||||
arr.push(i18n.ui.data.star3)
|
||||
} else {
|
||||
arr.push(i18n.ui.data.star4)
|
||||
}
|
||||
arr.push(total)
|
||||
arr.push(pity)
|
||||
temp.push(arr)
|
||||
if (log.rank_type === '5') {
|
||||
if (log.rank_type === '4') {
|
||||
pity = 0
|
||||
}
|
||||
// if (key === '301') {
|
||||
@ -133,14 +139,14 @@ const start = async () => {
|
||||
}
|
||||
// rare rank background color
|
||||
const rankColor = {
|
||||
3: "ff8e8e8e",
|
||||
4: "ffa256e1",
|
||||
5: "ffbd6932",
|
||||
2: "ff8e8e8e",
|
||||
3: "ffa256e1",
|
||||
4: "ffbd6932",
|
||||
}
|
||||
sheet.getCell(`${c}${i + 2}`).font = {
|
||||
name: customFont,
|
||||
color: { argb: rankColor[v.rank_type] },
|
||||
bold : v.rank_type != "3"
|
||||
bold : v.rank_type != "2"
|
||||
}
|
||||
})
|
||||
})
|
||||
|
Reference in New Issue
Block a user