Skip to content

Commit

Permalink
v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeeLyn committed Dec 15, 2022
1 parent 76582ff commit fe689a0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 11 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "TranslateDesktop",
"version": "1.1.0",
"version": "1.1.1",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down
2 changes: 1 addition & 1 deletion src/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ if (!locker) {
appTray.setToolTip("集成翻译");
let trayMenuTemplate = [
{
label: "显示/隐藏窗口(Ctrl/Command+`)",
label: "显示/隐藏窗口(Ctrl/Command+~)",
click: function () {
SwitchWindow();
},
Expand Down
4 changes: 2 additions & 2 deletions src/components/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ export default {
methods: {
ResetBiaduHandle() {
this.$confirm("确定要重置吗?", "提示").then(() => {
this.baidu.appid = this.store.defBiadu.appid;
this.baidu.key = this.store.defBiadu.key;
this.baidu.appid = this.store.defBaidu.appid;
this.baidu.key = this.store.defBaidu.key;
});
},
},
Expand Down
2 changes: 1 addition & 1 deletion src/stores/globalStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { defineStore } from "pinia";

export const globalStore = defineStore("globalStore", {
state: () => ({
defBiadu: {
defBaidu: {
appid: "20211114000998654",
key: "0gPJopPB9IlfqAb1cS8k",
},
Expand Down
7 changes: 1 addition & 6 deletions src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -344,15 +344,10 @@ export default {
color: #595b5f;
}
.tool-bar .right .iconfont {
margin-right: 15px;
margin-right: 10px;
cursor: pointer;
}
.split {
margin: 0 15px;
color: #595b5f;
}
.always-on-top {
color: #fff;
}
Expand Down

0 comments on commit fe689a0

Please sign in to comment.