-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update boxjs.settings.json Update CHANGELOG.md Update setCaptions.mjs Update response.dev.js Update request.dev.js Update database.mjs Update response.js Update request.js
- Loading branch information
1 parent
7462fb4
commit 50cfd75
Showing
16 changed files
with
773 additions
and
764 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
[submodule "src/utils"] | ||
path = src/utils | ||
url = https://github.com/NanoCat-Me/utils.git | ||
[submodule "src/protobuf"] | ||
path = src/protobuf | ||
url = https://github.com/DualSubs/protobuf.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
### 🛠️ Bug Fixes | ||
* 修复 `Surge` 模块内置`参数面板` | ||
* 修复 `Loon` 插件内置`设置面板` | ||
* 修复 `$argument` 和 `$persistentStore` 载入顺序颠倒的问题 | ||
* 正确顺序为先读取 `$argument` 再读取 `$persistentStore (BoxJs)` | ||
* 即,有相同键名时,`$persistentStore (BoxJs)` 的值会覆盖 `$argument` 的值 | ||
### 🔄 Other Changes | ||
* util 由 `submodule` 更改为 `package` | ||
|
||
### 🔣 Dependencies | ||
* 升级了 `@nsnanocat/url` | ||
* 使用了全新的 `URL` 和 `URLSearchParams` polyfill | ||
* 升级了 `@nsnanocat/util` | ||
* `util` 由 `submodule` 更改为 `package` | ||
* `$platform` 改为 `$app` | ||
* 使用了全新的 `Console` polyfill |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
{ | ||
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", | ||
"files": { | ||
"ignore": [ | ||
"**/*.bundle.js" | ||
], | ||
"ignoreUnknown": false | ||
}, | ||
"formatter": { | ||
"enabled": true, | ||
"indentStyle": "tab", | ||
"indentWidth": 2, | ||
"lineEnding": "lf", | ||
"lineWidth": 320 | ||
}, | ||
"javascript": { | ||
"formatter": { | ||
"arrowParentheses": "asNeeded", | ||
"bracketSameLine": true, | ||
"quoteStyle": "double" | ||
} | ||
}, | ||
"json": { | ||
"parser": { | ||
"allowComments": true, | ||
"allowTrailingCommas": true | ||
} | ||
}, | ||
"linter": { | ||
"enabled": true, | ||
"rules": { | ||
"complexity": { | ||
"noForEach": "off", | ||
"noStaticOnlyClass": "off", | ||
"noUselessSwitchCase": "off", | ||
"useArrowFunction": "info", | ||
"useFlatMap": "off", | ||
"useLiteralKeys": "info" | ||
}, | ||
"correctness": { | ||
"noInnerDeclarations": "info", | ||
"noSelfAssign": "off", | ||
"noSwitchDeclarations": "info", | ||
"noUnsafeOptionalChaining": "info" | ||
}, | ||
"performance": { | ||
"noDelete": "info" | ||
}, | ||
"recommended": true, | ||
"style": { | ||
"noNegationElse": "off", | ||
"noParameterAssign": "off", | ||
"noUselessElse": "off", | ||
"noVar": "info", | ||
"useDefaultParameterLast": "info", | ||
"useForOf": "error", | ||
"useNodejsImportProtocol": "error", | ||
"useNumberNamespace": "error", | ||
"useSingleVarDeclarator": "off" | ||
}, | ||
"suspicious": { | ||
"noAssignInExpressions": "info", | ||
"noDoubleEquals": "info", | ||
"noFallthroughSwitchClause": "info", | ||
"noGlobalIsNan": "off", | ||
"useDefaultSwitchClauseLast": "off" | ||
} | ||
} | ||
}, | ||
"organizeImports": { | ||
"enabled": true | ||
}, | ||
"vcs": { | ||
"clientKind": "git", | ||
"enabled": true, | ||
"useIgnoreFile": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.