mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-06-07 13:34:08 +08:00
修复获取插件信息失败的BUG
This commit is contained in:
parent
5a65f4c5f9
commit
02f81db47c
@ -1,10 +1,11 @@
|
||||
const fs = require("fs");
|
||||
const path = require("path");
|
||||
const os = require("os");
|
||||
const _ = require("lodash");
|
||||
|
||||
const pluginInfo = () => {
|
||||
return JSON.parse(fs.readFileSync(path.join(__dirname, "plugin.json")));
|
||||
return JSON.parse(
|
||||
fs.readFileSync(path.resolve(__dirname, "..", "plugin.json"))
|
||||
);
|
||||
};
|
||||
|
||||
const getUtoolsPlugins = () => {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"pluginName": "快捷命令",
|
||||
"description": "实现具备UI交互的自动化操作,支持可视化拖拽及直接编写脚本两种形式。1.可视化拖拽支持文件、网络、音视频、图片、文本、浏览器、键鼠等超过20种类型的自动化处理,2.编写脚本支持utools的api,python、js、shell、cmd等多种脚本语言。关联关键词:自动化、可视化、RPA",
|
||||
"description": "实现具备UI交互的自动化操作,支持可视化拖拽及直接编写脚本两种形式。1.可视化拖拽:支持文件、网络、音视频、图片、文本、浏览器、键鼠等超过20种类型的自动化处理,2.编写脚本:支持utools的api,python、js、shell、cmd等多种脚本语言。关联关键词:自动化、可视化、RPA",
|
||||
"main": "index.html",
|
||||
"homepage": "https://github.com/fofolee/uTools-quickcommand",
|
||||
"publishPage": "https://yuanliao.info/d/424",
|
||||
|
@ -103,16 +103,16 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AboutThis from "../popup/AboutThis";
|
||||
import PanelSetting from "../popup/PanelSetting";
|
||||
import UserInfo from "../popup/UserInfo";
|
||||
import CommandManageMenu from "./CommandManageMenu.vue";
|
||||
import UtilityFeaturesMenu from "./UtilityFeaturesMenu.vue";
|
||||
import EnvConfigMenu from "./EnvConfigMenu.vue";
|
||||
import PersonalizeMenu from "./PersonalizeMenu.vue";
|
||||
import UserData from "../popup/UserData.vue";
|
||||
import AboutThis from "components/popup/AboutThis";
|
||||
import PanelSetting from "components/popup/PanelSetting";
|
||||
import UserInfo from "components/popup/UserInfo";
|
||||
import CommandManageMenu from "components/menu/CommandManageMenu.vue";
|
||||
import UtilityFeaturesMenu from "components/menu/UtilityFeaturesMenu.vue";
|
||||
import EnvConfigMenu from "components/menu/EnvConfigMenu.vue";
|
||||
import PersonalizeMenu from "components/menu/PersonalizeMenu.vue";
|
||||
import UserData from "components/popup/UserData.vue";
|
||||
import { utoolsFull } from "js/utools.js";
|
||||
import { useCommandManager } from "src/js/commandManager";
|
||||
import { useCommandManager } from "js/commandManager";
|
||||
|
||||
export default {
|
||||
name: "ConfigurationMenu",
|
||||
|
Loading…
x
Reference in New Issue
Block a user