Skip to content

Commit

Permalink
docs: update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
tisfeng committed Feb 28, 2023
1 parent 8193918 commit afbaa30
Show file tree
Hide file tree
Showing 2 changed files with 16 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.7.3] - 2023-02-28

### 💎 Improvement

- When using Easydict as Fallback Command, use the user input text as the query word (not the selected text).

## [v2.7.2] - 2023-01-17

### 🐞 Fixes
Expand Down
22 changes: 10 additions & 12 deletions src/releaseVersion/versionInfo.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* @author: tisfeng
* @createTime: 2022-07-01 19:05
* @lastEditor: Tisfeng
* @lastEditTime: 2022-12-16 17:59
* @lastEditor: tisfeng
* @lastEditTime: 2023-02-28 21:44
* @fileName: versionInfo.ts
*
* Copyright (c) 2022 by tisfeng, All Rights Reserved.
Expand All @@ -26,26 +26,24 @@ export class Easydict {
static repo = "Raycast-Easydict";

// * NOTE: this is new version info, don't use it directly. Use getCurrentStoredVersionInfo() instead.
version = "2.7.2";
buildNumber = 21;
versionDate = "2023-01-17";
isNeedPrompt = true;
version = "2.7.3";
buildNumber = 22;
versionDate = "2023-02-28";
isNeedPrompt = false;
hasPrompted = false; // * always default false, only show once, then should be set to true.

releaseMarkdown = `
## [v${this.version}] - ${this.versionDate}
### 🐞 修复
### 💎 优化
- 修复了 Bing 翻译失败问题。
#### 如果觉得这个扩展还不错,给个 [Star](https://github.com/tisfeng/Raycast-Easydict) ⭐️ 支持一下吧 (^-^)
- 当使用 Easydict 作为 Fallback Command 时,优先使用用户输入文本作为查询词(而不是选中文本)。
---
### 🐞 Fixes
### 💎 Improvement
- Fixed Bing translation failed.
- When using Easydict as Fallback Command, use the user input text as the query word (not the selected text).
`;

getRepoUrl() {
Expand Down

0 comments on commit afbaa30

Please sign in to comment.