Skip to content

Commit 93d8cc3

Browse files
fix #69
1 parent a3efa2f commit 93d8cc3

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# 更新日志
22

3+
## 1.2.5
4+
* 修复数据库更新(#69)
5+
36
## 1.2.4
47
* 添加和修改部分翻译 (#64)
58

README.md

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ E 站注射器,将中文翻译注入到 E 站体内。
1313

1414

1515
## 安装
16-
[![Mozilla Add-on](./.github/assets/firefox.svg)](https://addons.mozilla.org/zh-CN/firefox/addon/ehsyringe/ "安装 Firefox 插件")
17-
**Chrome 插件被下架**
1816

1917
### Chrome安装方法
2018
1. 前往 [Release 页面](https://github.com/EhTagTranslation/EhSyringe/releases)下载zip文件并解压

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ehsyringe",
33
"displayName": "EhSyringe",
4-
"version": "1.2.4",
4+
"version": "1.2.5",
55
"description": "E 站注射器,将中文翻译注入到 E 站体内。",
66
"author": "EhTagTranslation",
77
"main": "syringe.js",

src/tool/log.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Log {
1717
console.time(plabel);
1818
return {
1919
label,
20-
log: console.timeLog.bind(console, plabel),
20+
log: (console.timeLog || console.log).bind(console, plabel),
2121
end: console.timeEnd.bind(console, plabel),
2222
} as Timer;
2323
}

0 commit comments

Comments
 (0)