diff --git a/cc-inspector/src/views/devtools/index.vue b/cc-inspector/src/views/devtools/index.vue index eaca8cb..f6b4204 100644 --- a/cc-inspector/src/views/devtools/index.vue +++ b/cc-inspector/src/views/devtools/index.vue @@ -62,7 +62,28 @@ export default defineComponent({ }); onMounted(() => { ccui.footbar.showTipsArray({ - tips: ["press space in the hierarchy to quickly control the display and hiding of nodes"], + tips: [ + "Press space in the hierarchy to quickly control the display and hiding of nodes", // + "If you encounter any problems during use, please feel free to contact me", + ], + }); + ccui.footbar.registerCmd({ + icon: "github", + cb: () => { + window.open("https://github.com/tidys/cc-inspector-chrome"); + }, + }); + ccui.footbar.registerCmd({ + icon: "qq", + cb: () => { + window.open("https://jq.qq.com/?_wv=1027&k=5SdPdy2"); + }, + }); + ccui.footbar.registerCmd({ + icon: "support", + cb: () => { + window.open("https://github.com/tidys/cc-inspector-chrome/issues"); + }, }); Bus.on(BusMsg.EnableSchedule, funcEnableSchedule); timer.create(); diff --git a/cc-inspector/src/views/options/cocos.png b/cc-inspector/src/views/options/cocos.png deleted file mode 100644 index efcdfdb..0000000 Binary files a/cc-inspector/src/views/options/cocos.png and /dev/null differ diff --git a/cc-inspector/src/views/options/index.vue b/cc-inspector/src/views/options/index.vue index 6317128..54d10f6 100644 --- a/cc-inspector/src/views/options/index.vue +++ b/cc-inspector/src/views/options/index.vue @@ -1,7 +1,16 @@