Skip to content

Commit

Permalink
docs: update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
tisfeng committed Mar 28, 2023
1 parent c2e15e0 commit 85fd037
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 9 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
# `Easydict` Changelog

## [v2.8.0] - 2023-03-28

### 🐞 Fixes

- Fixed the crash problem when requesting OpenAI translation.

## [v2.8.0] - 2023-03-17

### ✨ Features

- Support OpenAI ChatGPT translation.

![OpenAI](https://user-images.githubusercontent.com/25194972/225886686-b99e5a97-6269-489d-b0bb-40be6d7d1d32.png)

## [v2.7.3] - 2023-02-28

### 💎 Improvement
Expand Down
17 changes: 8 additions & 9 deletions src/releaseVersion/versionInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +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.0";
buildNumber = 23;
versionDate = "2023-03-17";
isNeedPrompt = true;
version = "2.8.1";
buildNumber = 24;
versionDate = "2023-03-28";
isNeedPrompt = false;
hasPrompted = false; // * always default false, only show once, then should be set to true.

releaseMarkdown = `
## [v${this.version}] - ${this.versionDate}
### ✨ 新功能
### 🐞 修复
- 支持 OpenAI ChatGPT 翻译
- 修复请求 OpenAI 可能报错崩溃问题
#### 如果觉得这个扩展还不错,给个 [Star](https://github.com/tisfeng/Raycast-Easydict) ⭐️ 支持一下吧 (^-^)
Expand All @@ -49,9 +49,8 @@ export class Easydict {
---
### ✨ Features
- Support OpenAI ChatGPT translation.
### 🐞 Fixes
- Fixed the crash problem when requesting OpenAI translation.
`;

getRepoUrl() {
Expand Down

0 comments on commit 85fd037

Please sign in to comment.