Skip to content

Commit

Permalink
Release V1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Ericwyn committed Nov 17, 2021
1 parent 385f86d commit 36449d5
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 7 deletions.
18 changes: 13 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@

另外针对代码注释的翻译做特殊格式化

版本发布日志: [Release Log](RELEASE_LOG.md)

## 1. 特性
- 翻译 API 接口的单词, 语句翻译
- 支持多个翻译接口,可便捷切换
- 支持 Baidu 翻译 API
- 需要在参数设置当中配置 Baidu API 参数
- 支持 Google 翻译 API
Expand All @@ -25,6 +27,7 @@
- 去除 `//` `/*` `#` 之类的符号
- 去除回车, 多余空格等
- 划词翻译 (仅支持 Linux, 需要 xclip )
- 简约窗口(无菜单/设置等,只有简单卡片显示翻译结果)

## 2. 安装

Expand Down Expand Up @@ -57,10 +60,15 @@ sh build.sh


## 4. 待实现功能
- 驼峰命名的变量和函数名编译
- 多个翻译任务的时候, 停止之前的任务
- windows 监听剪贴板, 快速编译
- windows IPC 支持
- Linux
- Windows
- windows 监听剪贴板, 快速翻译
- windows IPC 支持
- All
- 窗口创建的时候位置跟随鼠标
- 鼠标移开时候自动退出
- 驼峰命名的变量和函数名编译
- 多个翻译任务的时候, 停止之前的任务
- ...

# 5. 程序截图
Expand Down
25 changes: 25 additions & 0 deletions RELEASE_LOG.md
Original file line number Diff line number Diff line change
@@ -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 )
4 changes: 2 additions & 2 deletions conf/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 36449d5

Please sign in to comment.