diff --git a/README.md b/README.md index 3475c22..7a0689b 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,10 @@ 另外针对代码注释的翻译做特殊格式化 +版本发布日志: [Release Log](RELEASE_LOG.md) + ## 1. 特性 -- 翻译 API 接口的单词, 语句翻译 +- 支持多个翻译接口,可便捷切换 - 支持 Baidu 翻译 API - 需要在参数设置当中配置 Baidu API 参数 - 支持 Google 翻译 API @@ -25,6 +27,7 @@ - 去除 `//` `/*` `#` 之类的符号 - 去除回车, 多余空格等 - 划词翻译 (仅支持 Linux, 需要 xclip ) +- 简约窗口(无菜单/设置等,只有简单卡片显示翻译结果) ## 2. 安装 @@ -57,10 +60,15 @@ sh build.sh ## 4. 待实现功能 -- 驼峰命名的变量和函数名编译 -- 多个翻译任务的时候, 停止之前的任务 -- windows 监听剪贴板, 快速编译 -- windows IPC 支持 +- Linux +- Windows + - windows 监听剪贴板, 快速翻译 + - windows IPC 支持 +- All + - 窗口创建的时候位置跟随鼠标 + - 鼠标移开时候自动退出 + - 驼峰命名的变量和函数名编译 + - 多个翻译任务的时候, 停止之前的任务 - ... # 5. 程序截图 diff --git a/RELEASE_LOG.md b/RELEASE_LOG.md new file mode 100644 index 0000000..76e3212 --- /dev/null +++ b/RELEASE_LOG.md @@ -0,0 +1,25 @@ +# EzeTranslate Release Log + +## V1.1 +- 发布:2021-11-17 +- 说明: + - 1. 更新迷你模式 + - 只显示翻译结果窗口,通过快捷键直接获取划词并显示翻译结果 + - 2. 有道翻译自动识别输入和输出语言 + +## V1.0 +- 发布:2021-11-14 +- 说明: + - 1. 首个测试版本,实现基本功能功能 + - 2. 支持多个翻译接口,可便捷切换 + - 支持 Baidu 翻译 API + - 需要在参数设置当中配置 Baidu API 参数 + - 支持 Google 翻译 API + - 国内的话, 需要在参数设置当中配置 translate.google.com 的代理 + - 可以使用 cloudflare worker 做 js proxy + - 支持 Youdao 翻译 API + - 需要在参数设置当中配置 Youdao API 参数 + - 3. 针对代码注释进行格式化 + - 去除 `//` `/*` `#` 之类的符号 + - 去除回车, 多余空格等 + - 4. 划词翻译 (仅支持 Linux, 需安装 xclip ) diff --git a/conf/config.go b/conf/config.go index e84c6f3..07328dc 100644 --- a/conf/config.go +++ b/conf/config.go @@ -6,8 +6,8 @@ import ( "github.com/spf13/viper" ) -const Version = "V1.0" -const ReleaseDate = "2021.11.14" +const Version = "V1.1" +const ReleaseDate = "2021.11.17" const ConfigKeyMiniMode = "miniMode" const ConfigKeyBaiduTransAppId = "baiduTransAppId"