Skip to content

Commit

Permalink
docs: update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
tisfeng committed May 17, 2023
1 parent 3af92af commit 1b45beb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# `Easydict` Changelog

## [v2.9.0] - 2023-05-17

### ✨ New Features

- Added OCR screenshot translation command, thanks to [aidevjoe](https://github.com/aidevjoe)'s PR.

## [v2.8.2] - 2023-04-25

### 🐞 Fixes
Expand Down
19 changes: 9 additions & 10 deletions src/releaseVersion/versionInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @author: tisfeng
* @createTime: 2022-07-01 19:05
* @lastEditor: tisfeng
* @lastEditTime: 2023-04-25 23:49
* @lastEditTime: 2023-05-17 22:34
* @fileName: versionInfo.ts
*
* Copyright (c) 2022 by tisfeng, All Rights Reserved.
Expand All @@ -26,19 +26,18 @@ export class Easydict {
static repo = "Raycast-Easydict";

// * NOTE: this is new version info, don't use it directly. Use getCurrentStoredVersionInfo() instead.
version = "2.8.2";
buildNumber = 25;
versionDate = "2023-04-25";
version = "2.9.0";
buildNumber = 26;
versionDate = "2023-05-17";
isNeedPrompt = true;
hasPrompted = false; // * always default false, only show once, then should be set to true.

releaseMarkdown = `
## [v${this.version}] - ${this.versionDate}
### 🐞 修复
### ✨ 新功能
- 修复了 OpenAI 翻译可能丢失首字符的问题。
- 修复了 OpenAI 默认未启用代理的问题。
- 添加了 OCR 截图翻译功能,感谢 [aidevjoe](https://github.com/aidevjoe) 的 PR。
#### 如果觉得这个扩展还不错,给个 [Star](https://github.com/tisfeng/Raycast-Easydict) ⭐️ 支持一下吧 (^-^)
Expand All @@ -50,9 +49,9 @@ export class Easydict {
---
### 🐞 Fixes
- Fixed the issue that OpenAI translation may lose the first character.
- Fixed the issue that OpenAI does not enable proxy by default.
### ✨ New Features
- Added OCR screenshot translation command, thanks to [aidevjoe](https://github.com/aidevjoe)'s PR.
`;

getRepoUrl() {
Expand Down

0 comments on commit 1b45beb

Please sign in to comment.