Compare commits

...

9 Commits

Author SHA1 Message Date
huiyadanli
edb143e9ca update repo.json
Some checks failed
Build repo.json / build (18.x) (push) Has been cancelled
Build repo.json / upload (push) Has been cancelled
2025-05-11 09:32:48 +00:00
5117600049
244ad72c57 JS脚本:新增两个周本,以及优化了进入周本的时间 (#779)
* 测试

* 你的提交信息

* 周本全2.0更新以及打牌更新

* Update manifest.json

* Update manifest.json

* Update manifest.json

* Update manifest.json

* Update manifest.json

* Update manifest.json

* Update manifest.json

* Update manifest.json

* Update manifest.json

* 打牌、周本bug 修复

* 新增两个周本,以及减少了了进入周本的时间

* Update settings.json
2025-05-11 17:32:09 +08:00
Zhicheng Zhang
e78294f00b update and rename (#780) 2025-05-11 17:31:54 +08:00
火山
55cc4795ee Update README.md (#776)
璃月8地脉花路线完成
2025-05-11 17:31:38 +08:00
huiyadanli
dac4e0d26c update repo.json 2025-05-11 09:11:54 +00:00
SunRuikang
057988cc45 Update 高稳健通用纳塔锄地队.txt (#777)
优化操作手法
2025-05-11 17:11:14 +08:00
JJMdzh
a6bd9eaed1 js,背包材料统计 (#719)
模板匹配材料,OCR识别数量。\n数字太小可能无法识别,用?代替。\n目前支持 养成道具 和 素材 的两个大类。\n材料种类数量或导入js本地\n图包文件夹images放入assets下\n链接看manifest.json说明
2025-05-11 17:10:57 +08:00
huiyadanli
ad017b0625 update repo.json 2025-05-11 09:07:01 +00:00
辉鸭蛋
30a7173f4d bgiVersion -> bgi_version 2025-05-11 17:05:54 +08:00
4874 changed files with 12592 additions and 11192 deletions

View File

@@ -270,7 +270,7 @@ jobs:
# 确保 bgi_version 是有效的格式
bgi_ver = parse_bgi_version(bgi_version)
if not bgi_ver:
validation_issues.append(f"无效的 bgiVersion 格式: {bgi_version}")
validation_issues.append(f"无效的 bgi_version 格式: {bgi_version}")
return issues, validation_issues
# 检查 action 兼容性
@@ -400,19 +400,19 @@ jobs:
# 删除可能存在的 v 前缀
if bgi_version.startswith('v'):
bgi_version = bgi_version.lstrip('v')
corrections.append(f"bgiVersion 前缀 'v' 已删除")
corrections.append(f"bgi_version 前缀 'v' 已删除")
bgi_ver = parse_bgi_version(bgi_version)
if not bgi_ver:
if auto_fix:
corrections.append(f"bgiVersion {bgi_version} 格式无效,自动更新为 {DEFAULT_BGI_VERSION}")
corrections.append(f"bgi_version {bgi_version} 格式无效,自动更新为 {DEFAULT_BGI_VERSION}")
return DEFAULT_BGI_VERSION, corrections
return bgi_version, []
if bgi_ver < VersionInfo.parse(DEFAULT_BGI_VERSION):
if auto_fix:
corrections.append(f"bgiVersion {bgi_version} 自动更新为 {DEFAULT_BGI_VERSION} (原版本低于要求)")
corrections.append(f"bgi_version {bgi_version} 自动更新为 {DEFAULT_BGI_VERSION} (原版本低于要求)")
return DEFAULT_BGI_VERSION, corrections
return bgi_version, corrections
@@ -447,9 +447,9 @@ jobs:
info["version"] = DEFAULT_VERSION
messages.append(f"⚠️ 文件缺少 version 字段,已设置为默认值: {DEFAULT_VERSION}")
if "bgiVersion" not in info:
info["bgiVersion"] = DEFAULT_BGI_VERSION
messages.append(f"⚠️ 文件缺少 bgiVersion 字段,已设置为默认值: {DEFAULT_BGI_VERSION}")
if "bgi_version" not in info:
info["bgi_version"] = DEFAULT_BGI_VERSION
messages.append(f"⚠️ 文件缺少 bgi_version 字段,已设置为默认值: {DEFAULT_BGI_VERSION}")
if "positions" not in data:
data["positions"] = []
@@ -485,9 +485,9 @@ jobs:
corrections = []
# 首先检查并删除 v 前缀
if info["bgiVersion"].startswith('v'):
info["bgiVersion"] = info["bgiVersion"].lstrip('v')
corrections.append(f"bgiVersion 前缀 'v' 已删除")
if info["bgi_version"].startswith('v'):
info["bgi_version"] = info["bgi_version"].lstrip('v')
corrections.append(f"bgi_version 前缀 'v' 已删除")
if auto_fix and compatibility_issues:
max_required = extract_required_version(compatibility_issues)
@@ -497,15 +497,15 @@ jobs:
max_required = max_required.lstrip('v')
try:
current_bgi = parse_bgi_version(info["bgiVersion"])
current_bgi = parse_bgi_version(info["bgi_version"])
if current_bgi and current_bgi < VersionInfo.parse(max_required):
info["bgiVersion"] = max_required
corrections.append(f"bgiVersion {info['bgiVersion']} 自动更新为 {max_required} 以兼容所有功能")
info["bgi_version"] = max_required
corrections.append(f"bgi_version {info['bgi_version']} 自动更新为 {max_required} 以兼容所有功能")
return [], corrections
except ValueError as e:
print(f"警告: 版本号解析失败 - {e}")
info["bgiVersion"] = DEFAULT_BGI_VERSION
corrections.append(f"bgiVersion 自动更新为 {DEFAULT_BGI_VERSION} (版本解析失败)")
info["bgi_version"] = DEFAULT_BGI_VERSION
corrections.append(f"bgi_version 自动更新为 {DEFAULT_BGI_VERSION} (版本解析失败)")
return [], corrections
return compatibility_issues, corrections
@@ -534,10 +534,10 @@ jobs:
corrections = ensure_required_fields(info, filename)
all_corrections.extend(corrections)
# 检查并删除 bgiVersion 的 v 前缀
if "bgiVersion" in info and info["bgiVersion"].startswith('v'):
info["bgiVersion"] = info["bgiVersion"].lstrip('v')
all_corrections.append("bgiVersion 前缀 'v' 已删除")
# 检查并删除 bgi_version 的 v 前缀
if "bgi_version" in info and info["bgi_version"].startswith('v'):
info["bgi_version"] = info["bgi_version"].lstrip('v')
all_corrections.append("bgi_version 前缀 'v' 已删除")
# 处理坐标
coord_changed = process_coordinates(data["positions"])
@@ -545,9 +545,9 @@ jobs:
all_corrections.append("坐标值自动保留两位小数")
# 检查 BGI 版本兼容性
bgi_version, corrections = check_bgi_version_compatibility(info["bgiVersion"], auto_fix)
bgi_version, corrections = check_bgi_version_compatibility(info["bgi_version"], auto_fix)
if corrections:
info["bgiVersion"] = bgi_version
info["bgi_version"] = bgi_version
all_corrections.extend(corrections)
# 检查位置字段 - 修改为接收三个返回值
@@ -556,7 +556,7 @@ jobs:
all_corrections.extend(pos_corrections)
# 检查 action 兼容性
compatibility_issues, action_validation_issues = check_actions_compatibility(data["positions"], info["bgiVersion"])
compatibility_issues, action_validation_issues = check_actions_compatibility(data["positions"], info["bgi_version"])
position_issues.extend(action_validation_issues)
# 根据兼容性问题更新 BGI 版本

View File

@@ -5,7 +5,7 @@
"author": "Yang-z",
"version": "",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "HZYgrandma",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.0"
"bgi_version": "0.35.0"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "Tim",
"version": "1.0",
"description": "",
"bgiVersion": "0.34.5"
"bgi_version": "0.34.5"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "Tim",
"version": "1.0",
"description": "",
"bgiVersion": "0.34.5"
"bgi_version": "0.34.5"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "Tim",
"version": "1.0",
"description": "",
"bgiVersion": "0.34.5"
"bgi_version": "0.34.5"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "Tim",
"version": "1.0",
"description": "",
"bgiVersion": "0.34.5"
"bgi_version": "0.34.5"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "Tim",
"version": "1.0",
"description": "",
"bgiVersion": "0.34.5"
"bgi_version": "0.34.5"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "Tim",
"version": "1.0",
"description": "",
"bgiVersion": "0.34.5"
"bgi_version": "0.34.5"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "Tim",
"version": "1.0",
"description": "",
"bgiVersion": "0.34.5"
"bgi_version": "0.34.5"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "Tim",
"version": "1.0",
"description": "",
"bgiVersion": "0.34.5"
"bgi_version": "0.34.5"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "Tim",
"version": "1.0",
"description": "",
"bgiVersion": "0.34.5"
"bgi_version": "0.34.5"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "HZYgrandma",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.0"
"bgi_version": "0.35.0"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "Tim",
"version": "1.0",
"description": "",
"bgiVersion": "0.34.5"
"bgi_version": "0.34.5"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "HZYgrandma",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.0"
"bgi_version": "0.35.0"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "Tim",
"version": "1.0",
"description": "狗粮_越石村_5个",
"bgiVersion": "0.34.5"
"bgi_version": "0.34.5"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "HZYgrandma",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.0"
"bgi_version": "0.35.0"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "Tim",
"version": "1.0",
"description": "",
"bgiVersion": "0.34.5"
"bgi_version": "0.34.5"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "Tim",
"version": "1.0",
"description": "",
"bgiVersion": "0.34.5"
"bgi_version": "0.34.5"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "½",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "½",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "½",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "½",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "½",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "½",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "½",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "½",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "½",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "½",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "½",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "½",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "Tzi",
"version": "1.0",
"description": "枫丹合成台",
"bgiVersion": "0.35.0"
"bgi_version": "0.35.0"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "T子",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "T子",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "T子",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "T子",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "T子",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "密柑魚",
"version": "1.0",
"description": "",
"bgiVersion": "0.42.3"
"bgi_version": "0.42.3"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "密柑魚",
"version": "1.0",
"description": "",
"bgiVersion": "0.42.3"
"bgi_version": "0.42.3"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "平面镜",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "ddaodan",
"version": "1.0",
"description": "需要先传送到群玉阁",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "ddaodan",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "ddaodan",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "ddaodan",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "ddaodan",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "吉吉喵",
"version": "1.0",
"description": "寻路咖啡厅露泽店主阿鲁埃",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "吉吉喵",
"version": "1.0",
"description": "达莫维百货 店主布希柯",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "吉吉喵",
"version": "1.0",
"description": "购买杂货",
"bgiVersion": "0.42.0"
"bgi_version": "0.42.0"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "吉吉喵",
"version": "1.0",
"description": "购买杂货",
"bgiVersion": "0.42.0"
"bgi_version": "0.42.0"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "吉吉喵",
"version": "1.0",
"description": "购买鱼肉+螃蟹",
"bgiVersion": "0.42.0"
"bgi_version": "0.42.0"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "吉吉喵",
"version": "1.0",
"description": "购买杂货",
"bgiVersion": "0.42.0"
"bgi_version": "0.42.0"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "mno",
"version": "1.0",
"description": "",
"bgiVersion": "0.42.3"
"bgi_version": "0.42.3"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "mno",
"version": "1.0",
"description": "",
"bgiVersion": "0.42.3"
"bgi_version": "0.42.3"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "mno",
"version": "1.0",
"description": "",
"bgiVersion": "0.42.3"
"bgi_version": "0.42.3"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "mno",
"version": "1.0",
"description": "",
"bgiVersion": "0.42.3"
"bgi_version": "0.42.3"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "mno",
"version": "1.0",
"description": "",
"bgiVersion": "0.42.3"
"bgi_version": "0.42.3"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "mno",
"version": "1.0",
"description": "",
"bgiVersion": "0.42.3"
"bgi_version": "0.42.3"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "mno",
"version": "1.0",
"description": "",
"bgiVersion": "0.42.3"
"bgi_version": "0.42.3"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "mno",
"version": "1.0",
"description": "",
"bgiVersion": "0.42.3"
"bgi_version": "0.42.3"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "mno",
"version": "1.0",
"description": "",
"bgiVersion": "0.42.3"
"bgi_version": "0.42.3"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "mno",
"version": "1.0",
"description": "",
"bgiVersion": "0.42.3"
"bgi_version": "0.42.3"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "mno",
"version": "1.0",
"description": "",
"bgiVersion": "0.42.3"
"bgi_version": "0.42.3"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "mno",
"version": "1.0",
"description": "",
"bgiVersion": "0.42.3"
"bgi_version": "0.42.3"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "mno",
"version": "1.0",
"description": "",
"bgiVersion": "0.42.3"
"bgi_version": "0.42.3"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "Demo&汐&mno",
"version": "1.4",
"description": "",
"bgiVersion": "0.42.3"
"bgi_version": "0.42.3"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "Demo&汐&mno",
"version": "1.1",
"description": "",
"bgiVersion": "0.42.3"
"bgi_version": "0.42.3"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "Demo&汐&mno",
"version": "1.1",
"description": "",
"bgiVersion": "0.42.3"
"bgi_version": "0.42.3"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "汐&mno",
"version": "1.0",
"description": "",
"bgiVersion": "0.42.3"
"bgi_version": "0.42.3"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "汐&mno",
"version": "1.0",
"description": "",
"bgiVersion": "0.42.3"
"bgi_version": "0.42.3"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "mno",
"version": "1.0",
"description": "",
"bgiVersion": "0.42.3"
"bgi_version": "0.42.3"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "mfkvfhpdx",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "mfkvfhpdx",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "mfkvfhpdx",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"author": "mfkvfhpdx",
"version": "1.0",
"description": "",
"bgiVersion": "0.35.1"
"bgi_version": "0.35.1"
},
"positions": [
{

Some files were not shown because too many files have changed in this diff Show More