Skip to content

Commit

Permalink
docs: update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
tisfeng committed Sep 13, 2024
1 parent 750a4cc commit 48b4944
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 12 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.3] - 2024-09-13

### 🐞 Fixed

- Fixed Bing language detection API failed, which caused the query process to hang. https://github.com/raycast/extensions/issues/14357

## [v2.9.2] - 2024-08-25

### 💎 Improvement
Expand Down
21 changes: 9 additions & 12 deletions src/releaseVersion/versionInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,28 +26,25 @@ export class Easydict {
static repo = "Raycast-Easydict";

// * NOTE: this is new version info, don't use it directly. Use getCurrentStoredVersionInfo() instead.
version = "2.9.2";
buildNumber = 28;
versionDate = "2024-08-25";
version = "2.9.3";
buildNumber = 29;
versionDate = "2024-09-13";
isNeedPrompt = true;
hasPrompted = false; // * always default false, only show once, then should be set to true.

releaseMarkdown = `
## [v${this.version}] - ${this.versionDate}
### 💎 优化
### 🐞 修复
- 支持 HTTP OpenAI API endpoint,感谢 [rookiezn](https://github.com/rookiezn) 的 PR https://github.com/tisfeng/Raycast-Easydict/pull/51。
- 支持设置 OpenAI 模型,默认为 gpt-4o-mini。
- DeepL 翻译支持阿拉伯语 AR。
- 移除了已废弃的内置的 DeepL API key。
- 移除了对有道翻译官方 API 的支持,现默认只使用网页 API。
- 修复了 Bing 语种识别 API 失败,导致查询过程卡住问题。https://github.com/raycast/extensions/issues/14357
### 🐞 修复
---
- 修复了 argument 参数可能丢失问题。https://github.com/tisfeng/Raycast-Easydict/pull/63
`;
### 🐞 Fixed
- Fixed Bing language detection API failed, which caused the query process to hang. https://github.com/raycast/extensions/issues/14357
`;
getRepoUrl() {
return `${githubUrl}/${Easydict.author}/${Easydict.repo}`;
}
Expand Down

0 comments on commit 48b4944

Please sign in to comment.