Skip to content

Commit de4adf6

Browse files
committed
v1.5.1: Fix some bugs
1 parent 4deafb7 commit de4adf6

File tree

9 files changed

+230
-228
lines changed

9 files changed

+230
-228
lines changed

package-lock.json

Lines changed: 211 additions & 118 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "make-zero",
3-
"version": "1.5.0",
3+
"version": "1.5.1",
44
"description": "Encrypt & decrypt your texts in any site. / 文字加密、解密工具",
55
"directories": {
66
"lib": "lib"
@@ -31,7 +31,7 @@
3131
"node-sass": "^5.0.0",
3232
"sass-loader": "^10.1.0",
3333
"style-loader": "^2.0.0",
34-
"ts-jest": "^24.3.0",
34+
"ts-jest": "^26.5.4",
3535
"ts-loader": "^8.0.11",
3636
"typescript": "^4.1.2",
3737
"ui-component-loader": "^1.4.3",
@@ -43,7 +43,6 @@
4343
"webpack-cli": "^4.2.0"
4444
},
4545
"dependencies": {
46-
"axios": "^0.21.1",
4746
"clipboardy": "^2.3.0",
4847
"element-ui": "^2.14.1",
4948
"jquery": "^3.5.1",

src/api/base.ts

Lines changed: 0 additions & 14 deletions
This file was deleted.

src/api/feedback.ts

Lines changed: 0 additions & 15 deletions
This file was deleted.

src/locale/components/version.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ module.exports = {
3939
"1_5_0": {
4040
"0": "Support new ciphertext format: morse code",
4141
"1": "Needn't refresh pages any more after settings changed"
42+
},
43+
"1_5_1": {
44+
"0": "Fix the error that some text was mistaken for Morse code"
4245
}
4346
},
4447
zh_CN: {
@@ -84,6 +87,9 @@ module.exports = {
8487
"1_5_0": {
8588
"0": "支持新的密文风格:摩斯码",
8689
"1": "修改设置信息后不用再刷新页面"
90+
},
91+
"1_5_1": {
92+
"0": "修复某些文字被误认为摩斯码的错误",
8793
}
8894
}
8995
}

src/view/guide/components/Basic.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,9 @@ export default {
9797
// Get the password
9898
cryptorConfig.getPassword(p => {
9999
this.password = p
100-
this.ciphertextExample = cryptor.encrypt(this.$t('guide.welcome'))
100+
cryptor.encrypt(this.$t('guide.welcome'), cipher => {
101+
this.ciphertextExample = cipher
102+
})
101103
})
102104
},
103105
methods: {

src/view/popup/contact/index.vue

Lines changed: 0 additions & 72 deletions
This file was deleted.

src/view/popup/router.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ const routes = [
1515
{
1616
path: '/version',
1717
component: () => import('./version/index')
18-
},
19-
{
20-
path: '/contact',
21-
component: () => import('./contact/index')
2218
}
2319
]
2420

version_log.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
{
2-
"1.5.0": {
2+
"1.5.1": {
33
"current": true,
4+
"name": "Rilke-01",
5+
"ts": "2021-03-31",
6+
"contents": [
7+
"f"
8+
]
9+
},
10+
"1.5.0": {
411
"name": "Rilke",
512
"ts": "2021-03-30",
613
"contents": [

0 commit comments

Comments
 (0)