Skip to content

Commit

Permalink
0.1.1
Browse files Browse the repository at this point in the history
删去了不存在的css文件,修复了变量未定义的问题。
  • Loading branch information
EternalRider committed Dec 8, 2024
1 parent 60e297a commit b39583a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
Binary file modified menu-lib.zip
Binary file not shown.
9 changes: 3 additions & 6 deletions module.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "menu-lib",
"title": "Menu Lib",
"description": "提供一些简单易用的自定义界面功能。",
"version": "0.1.0",
"version": "0.1.1",
"author": "EternalRider",
"dependencies": [
{
Expand All @@ -21,13 +21,10 @@
"./scripts/init.js"
],
"scripts": [],
"styles": [
"./styles/module.css"
],
"packs": [],
"url": "https://github.com/fvtt-cn/menu-lib",
"minimumCoreVersion": "11",
"compatibleCoreVersion": "12",
"manifest": "https://github.com/fvtt-cn/menu-lib/releases/download/0.1.0/module.json",
"download": "https://github.com/fvtt-cn/menu-lib/releases/download/0.1.0/menu-lib.zip"
"manifest": "https://github.com/fvtt-cn/menu-lib/releases/download/0.1.1/module.json",
"download": "https://github.com/fvtt-cn/menu-lib/releases/download/0.1.1/menu-lib.zip"
}
2 changes: 1 addition & 1 deletion scripts/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export default class menulib {
}
if (typeof options[0] != 'string' && option.path) {
if (typeof option.path == 'string') {
keys = option.path.split('.');
let keys = option.path.split('.');
keys.forEach(key => {
options = options.map(o => o[key]);
})
Expand Down

0 comments on commit b39583a

Please sign in to comment.