Skip to content

Commit

Permalink
更新[BoxJs]: 订阅格式错误导致无法进入页面问题
Browse files Browse the repository at this point in the history
  • Loading branch information
chavyleung committed Feb 22, 2021
1 parent c34af63 commit 84e4f39
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 3 deletions.
2 changes: 1 addition & 1 deletion box/chavy.boxjs.html
Original file line number Diff line number Diff line change
Expand Up @@ -2000,7 +2000,7 @@ <h2 :class="version === ver.version ? 'primary--text' : undefined">v{{ver.versio
// 加载应用信息
loadAppBaseInfo(app) {
// 应用图标
app.icons = app.icons ? app.icons : this.ui.defaultIcons
app.icons = Array.isArray(app.icons) ? app.icons : this.ui.defaultIcons
const isBrokenIcons = app.icons.find((i) => i.includes('/Orz-3/task/master/'))
if (isBrokenIcons) {
app.icons[0] = app.icons[0].replace('/Orz-3/mini/master/', '/Orz-3/mini/master/Alpha/')
Expand Down
2 changes: 1 addition & 1 deletion box/chavy.boxjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const $ = new Env('BoxJs')
// 为 eval 准备的上下文环境
const $eval_env = {}

$.version = '0.7.67'
$.version = '0.7.68'
$.versionType = 'beta'

// 发出的请求需要需要 Surge、QuanX 的 rewrite
Expand Down
12 changes: 12 additions & 0 deletions box/release/box.release.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
{
"releases": [
{
"version": "0.7.68",
"tags": ["beta"],
"author": "@chavyleung",
"msg": "更新[BoxJs]: 订阅格式错误导致无法进入页面问题",
"notes": [
{
"name": "修复",
"descs": ["订阅格式错误导致无法进入页面问题"]
}
]
},
{
"version": "0.7.67",
"tags": ["beta"],
Expand Down
12 changes: 12 additions & 0 deletions box/release/box.release.tf.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
{
"releases": [
{
"version": "0.7.68",
"tags": ["beta"],
"author": "@chavyleung",
"msg": "更新[BoxJs]: 订阅格式错误导致无法进入页面问题",
"notes": [
{
"name": "修复",
"descs": ["订阅格式错误导致无法进入页面问题"]
}
]
},
{
"version": "0.7.67",
"tags": ["beta"],
Expand Down
2 changes: 1 addition & 1 deletion chavy.box.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const $ = new Env('BoxJs')
// 为 eval 准备的上下文环境
const $eval_env = {}

$.version = '0.7.67'
$.version = '0.7.68'
$.versionType = 'beta'

// 发出的请求需要需要 Surge、QuanX 的 rewrite
Expand Down

0 comments on commit 84e4f39

Please sign in to comment.