bgiVersion -> bgi_version
This commit is contained in:
44
.github/workflows/jsonDataValidation.yml
vendored
44
.github/workflows/jsonDataValidation.yml
vendored
@@ -270,7 +270,7 @@ jobs:
|
|||||||
# 确保 bgi_version 是有效的格式
|
# 确保 bgi_version 是有效的格式
|
||||||
bgi_ver = parse_bgi_version(bgi_version)
|
bgi_ver = parse_bgi_version(bgi_version)
|
||||||
if not bgi_ver:
|
if not bgi_ver:
|
||||||
validation_issues.append(f"无效的 bgiVersion 格式: {bgi_version}")
|
validation_issues.append(f"无效的 bgi_version 格式: {bgi_version}")
|
||||||
return issues, validation_issues
|
return issues, validation_issues
|
||||||
|
|
||||||
# 检查 action 兼容性
|
# 检查 action 兼容性
|
||||||
@@ -400,19 +400,19 @@ jobs:
|
|||||||
# 删除可能存在的 v 前缀
|
# 删除可能存在的 v 前缀
|
||||||
if bgi_version.startswith('v'):
|
if bgi_version.startswith('v'):
|
||||||
bgi_version = bgi_version.lstrip('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)
|
bgi_ver = parse_bgi_version(bgi_version)
|
||||||
|
|
||||||
if not bgi_ver:
|
if not bgi_ver:
|
||||||
if auto_fix:
|
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 DEFAULT_BGI_VERSION, corrections
|
||||||
return bgi_version, []
|
return bgi_version, []
|
||||||
|
|
||||||
if bgi_ver < VersionInfo.parse(DEFAULT_BGI_VERSION):
|
if bgi_ver < VersionInfo.parse(DEFAULT_BGI_VERSION):
|
||||||
if auto_fix:
|
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 DEFAULT_BGI_VERSION, corrections
|
||||||
|
|
||||||
return bgi_version, corrections
|
return bgi_version, corrections
|
||||||
@@ -447,9 +447,9 @@ jobs:
|
|||||||
info["version"] = DEFAULT_VERSION
|
info["version"] = DEFAULT_VERSION
|
||||||
messages.append(f"⚠️ 文件缺少 version 字段,已设置为默认值: {DEFAULT_VERSION}")
|
messages.append(f"⚠️ 文件缺少 version 字段,已设置为默认值: {DEFAULT_VERSION}")
|
||||||
|
|
||||||
if "bgiVersion" not in info:
|
if "bgi_version" not in info:
|
||||||
info["bgiVersion"] = DEFAULT_BGI_VERSION
|
info["bgi_version"] = DEFAULT_BGI_VERSION
|
||||||
messages.append(f"⚠️ 文件缺少 bgiVersion 字段,已设置为默认值: {DEFAULT_BGI_VERSION}")
|
messages.append(f"⚠️ 文件缺少 bgi_version 字段,已设置为默认值: {DEFAULT_BGI_VERSION}")
|
||||||
|
|
||||||
if "positions" not in data:
|
if "positions" not in data:
|
||||||
data["positions"] = []
|
data["positions"] = []
|
||||||
@@ -485,9 +485,9 @@ jobs:
|
|||||||
corrections = []
|
corrections = []
|
||||||
|
|
||||||
# 首先检查并删除 v 前缀
|
# 首先检查并删除 v 前缀
|
||||||
if info["bgiVersion"].startswith('v'):
|
if info["bgi_version"].startswith('v'):
|
||||||
info["bgiVersion"] = info["bgiVersion"].lstrip('v')
|
info["bgi_version"] = info["bgi_version"].lstrip('v')
|
||||||
corrections.append(f"bgiVersion 前缀 'v' 已删除")
|
corrections.append(f"bgi_version 前缀 'v' 已删除")
|
||||||
|
|
||||||
if auto_fix and compatibility_issues:
|
if auto_fix and compatibility_issues:
|
||||||
max_required = extract_required_version(compatibility_issues)
|
max_required = extract_required_version(compatibility_issues)
|
||||||
@@ -497,15 +497,15 @@ jobs:
|
|||||||
max_required = max_required.lstrip('v')
|
max_required = max_required.lstrip('v')
|
||||||
|
|
||||||
try:
|
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):
|
if current_bgi and current_bgi < VersionInfo.parse(max_required):
|
||||||
info["bgiVersion"] = max_required
|
info["bgi_version"] = max_required
|
||||||
corrections.append(f"bgiVersion {info['bgiVersion']} 自动更新为 {max_required} 以兼容所有功能")
|
corrections.append(f"bgi_version {info['bgi_version']} 自动更新为 {max_required} 以兼容所有功能")
|
||||||
return [], corrections
|
return [], corrections
|
||||||
except ValueError as e:
|
except ValueError as e:
|
||||||
print(f"警告: 版本号解析失败 - {e}")
|
print(f"警告: 版本号解析失败 - {e}")
|
||||||
info["bgiVersion"] = DEFAULT_BGI_VERSION
|
info["bgi_version"] = DEFAULT_BGI_VERSION
|
||||||
corrections.append(f"bgiVersion 自动更新为 {DEFAULT_BGI_VERSION} (版本解析失败)")
|
corrections.append(f"bgi_version 自动更新为 {DEFAULT_BGI_VERSION} (版本解析失败)")
|
||||||
return [], corrections
|
return [], corrections
|
||||||
|
|
||||||
return compatibility_issues, corrections
|
return compatibility_issues, corrections
|
||||||
@@ -534,10 +534,10 @@ jobs:
|
|||||||
corrections = ensure_required_fields(info, filename)
|
corrections = ensure_required_fields(info, filename)
|
||||||
all_corrections.extend(corrections)
|
all_corrections.extend(corrections)
|
||||||
|
|
||||||
# 检查并删除 bgiVersion 的 v 前缀
|
# 检查并删除 bgi_version 的 v 前缀
|
||||||
if "bgiVersion" in info and info["bgiVersion"].startswith('v'):
|
if "bgi_version" in info and info["bgi_version"].startswith('v'):
|
||||||
info["bgiVersion"] = info["bgiVersion"].lstrip('v')
|
info["bgi_version"] = info["bgi_version"].lstrip('v')
|
||||||
all_corrections.append("bgiVersion 前缀 'v' 已删除")
|
all_corrections.append("bgi_version 前缀 'v' 已删除")
|
||||||
|
|
||||||
# 处理坐标
|
# 处理坐标
|
||||||
coord_changed = process_coordinates(data["positions"])
|
coord_changed = process_coordinates(data["positions"])
|
||||||
@@ -545,9 +545,9 @@ jobs:
|
|||||||
all_corrections.append("坐标值自动保留两位小数")
|
all_corrections.append("坐标值自动保留两位小数")
|
||||||
|
|
||||||
# 检查 BGI 版本兼容性
|
# 检查 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:
|
if corrections:
|
||||||
info["bgiVersion"] = bgi_version
|
info["bgi_version"] = bgi_version
|
||||||
all_corrections.extend(corrections)
|
all_corrections.extend(corrections)
|
||||||
|
|
||||||
# 检查位置字段 - 修改为接收三个返回值
|
# 检查位置字段 - 修改为接收三个返回值
|
||||||
@@ -556,7 +556,7 @@ jobs:
|
|||||||
all_corrections.extend(pos_corrections)
|
all_corrections.extend(pos_corrections)
|
||||||
|
|
||||||
# 检查 action 兼容性
|
# 检查 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)
|
position_issues.extend(action_validation_issues)
|
||||||
|
|
||||||
# 根据兼容性问题更新 BGI 版本
|
# 根据兼容性问题更新 BGI 版本
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "Yang-z",
|
"author": "Yang-z",
|
||||||
"version": "",
|
"version": "",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "HZYgrandma",
|
"author": "HZYgrandma",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.0"
|
"bgi_version": "0.35.0"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "Tim",
|
"author": "Tim",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.34.5"
|
"bgi_version": "0.34.5"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "Tim",
|
"author": "Tim",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.34.5"
|
"bgi_version": "0.34.5"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "Tim",
|
"author": "Tim",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.34.5"
|
"bgi_version": "0.34.5"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "Tim",
|
"author": "Tim",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.34.5"
|
"bgi_version": "0.34.5"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "Tim",
|
"author": "Tim",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.34.5"
|
"bgi_version": "0.34.5"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "Tim",
|
"author": "Tim",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.34.5"
|
"bgi_version": "0.34.5"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "Tim",
|
"author": "Tim",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.34.5"
|
"bgi_version": "0.34.5"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "Tim",
|
"author": "Tim",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.34.5"
|
"bgi_version": "0.34.5"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "Tim",
|
"author": "Tim",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.34.5"
|
"bgi_version": "0.34.5"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "HZYgrandma",
|
"author": "HZYgrandma",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.0"
|
"bgi_version": "0.35.0"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "Tim",
|
"author": "Tim",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.34.5"
|
"bgi_version": "0.34.5"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "HZYgrandma",
|
"author": "HZYgrandma",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.0"
|
"bgi_version": "0.35.0"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "Tim",
|
"author": "Tim",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "狗粮_越石村_5个",
|
"description": "狗粮_越石村_5个",
|
||||||
"bgiVersion": "0.34.5"
|
"bgi_version": "0.34.5"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "HZYgrandma",
|
"author": "HZYgrandma",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.0"
|
"bgi_version": "0.35.0"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "Tim",
|
"author": "Tim",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.34.5"
|
"bgi_version": "0.34.5"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "Tim",
|
"author": "Tim",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.34.5"
|
"bgi_version": "0.34.5"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "½",
|
"author": "½",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "½",
|
"author": "½",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "½",
|
"author": "½",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "½",
|
"author": "½",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "½",
|
"author": "½",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "½",
|
"author": "½",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "½",
|
"author": "½",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "½",
|
"author": "½",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "½",
|
"author": "½",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "½",
|
"author": "½",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "½",
|
"author": "½",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "½",
|
"author": "½",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "Tzi",
|
"author": "Tzi",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "枫丹合成台",
|
"description": "枫丹合成台",
|
||||||
"bgiVersion": "0.35.0"
|
"bgi_version": "0.35.0"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "T子",
|
"author": "T子",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "T子",
|
"author": "T子",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "T子",
|
"author": "T子",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "T子",
|
"author": "T子",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "T子",
|
"author": "T子",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "密柑魚",
|
"author": "密柑魚",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.42.3"
|
"bgi_version": "0.42.3"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "密柑魚",
|
"author": "密柑魚",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.42.3"
|
"bgi_version": "0.42.3"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "平面镜",
|
"author": "平面镜",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "ddaodan",
|
"author": "ddaodan",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "需要先传送到群玉阁",
|
"description": "需要先传送到群玉阁",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "ddaodan",
|
"author": "ddaodan",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "ddaodan",
|
"author": "ddaodan",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "ddaodan",
|
"author": "ddaodan",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "ddaodan",
|
"author": "ddaodan",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "吉吉喵",
|
"author": "吉吉喵",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "寻路咖啡厅露泽店主阿鲁埃",
|
"description": "寻路咖啡厅露泽店主阿鲁埃",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "吉吉喵",
|
"author": "吉吉喵",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "达莫维百货 店主布希柯",
|
"description": "达莫维百货 店主布希柯",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "吉吉喵",
|
"author": "吉吉喵",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "购买杂货",
|
"description": "购买杂货",
|
||||||
"bgiVersion": "0.42.0"
|
"bgi_version": "0.42.0"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "吉吉喵",
|
"author": "吉吉喵",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "购买杂货",
|
"description": "购买杂货",
|
||||||
"bgiVersion": "0.42.0"
|
"bgi_version": "0.42.0"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "吉吉喵",
|
"author": "吉吉喵",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "购买鱼肉+螃蟹",
|
"description": "购买鱼肉+螃蟹",
|
||||||
"bgiVersion": "0.42.0"
|
"bgi_version": "0.42.0"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "吉吉喵",
|
"author": "吉吉喵",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "购买杂货",
|
"description": "购买杂货",
|
||||||
"bgiVersion": "0.42.0"
|
"bgi_version": "0.42.0"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "mno",
|
"author": "mno",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.42.3"
|
"bgi_version": "0.42.3"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "mno",
|
"author": "mno",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.42.3"
|
"bgi_version": "0.42.3"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "mno",
|
"author": "mno",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.42.3"
|
"bgi_version": "0.42.3"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "mno",
|
"author": "mno",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.42.3"
|
"bgi_version": "0.42.3"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "mno",
|
"author": "mno",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.42.3"
|
"bgi_version": "0.42.3"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "mno",
|
"author": "mno",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.42.3"
|
"bgi_version": "0.42.3"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "mno",
|
"author": "mno",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.42.3"
|
"bgi_version": "0.42.3"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "mno",
|
"author": "mno",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.42.3"
|
"bgi_version": "0.42.3"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "mno",
|
"author": "mno",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.42.3"
|
"bgi_version": "0.42.3"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "mno",
|
"author": "mno",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.42.3"
|
"bgi_version": "0.42.3"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "mno",
|
"author": "mno",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.42.3"
|
"bgi_version": "0.42.3"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "mno",
|
"author": "mno",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.42.3"
|
"bgi_version": "0.42.3"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "mno",
|
"author": "mno",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.42.3"
|
"bgi_version": "0.42.3"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "Demo&汐&mno",
|
"author": "Demo&汐&mno",
|
||||||
"version": "1.4",
|
"version": "1.4",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.42.3"
|
"bgi_version": "0.42.3"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "Demo&汐&mno",
|
"author": "Demo&汐&mno",
|
||||||
"version": "1.1",
|
"version": "1.1",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.42.3"
|
"bgi_version": "0.42.3"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "Demo&汐&mno",
|
"author": "Demo&汐&mno",
|
||||||
"version": "1.1",
|
"version": "1.1",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.42.3"
|
"bgi_version": "0.42.3"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "汐&mno",
|
"author": "汐&mno",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.42.3"
|
"bgi_version": "0.42.3"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "汐&mno",
|
"author": "汐&mno",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.42.3"
|
"bgi_version": "0.42.3"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "mno",
|
"author": "mno",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.42.3"
|
"bgi_version": "0.42.3"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "mfkvfhpdx",
|
"author": "mfkvfhpdx",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "mfkvfhpdx",
|
"author": "mfkvfhpdx",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "mfkvfhpdx",
|
"author": "mfkvfhpdx",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"author": "mfkvfhpdx",
|
"author": "mfkvfhpdx",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"bgiVersion": "0.35.1"
|
"bgi_version": "0.35.1"
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user