Skip to content

Commit 8d76ef5

Browse files
committed
refactor: migrate project to TypeScript and Rollup
1 parent 1e1fb39 commit 8d76ef5

25 files changed

+1760
-1326
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

+11-11
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ body:
88
value: |
99
**非常感谢您的反馈!Thank you very much for your feedback!**
1010
11-
有关翻译错误的内容请附在此 [issue](https://github.com/yetone/bob-plugin-openai-translator/issues/30) 中。
11+
有关翻译错误的内容请附在此 [issue](https://github.com/openai-translator/bob-plugin-openai-translator/issues/30) 中。
1212
13-
Please post any translation-related errors in this [issue](https://github.com/yetone/bob-plugin-openai-translator/issues/30).
13+
Please post any translation-related errors in this [issue](https://github.com/openai-translator/bob-plugin-openai-translator/issues/30).
1414
1515
- type: checkboxes
1616
attributes:
@@ -28,10 +28,10 @@ body:
2828
attributes:
2929
label: Please read README
3030
description: |
31-
辛苦提 Bug 前,请确定是按照 README 中的 [使用方法](https://github.com/yetone/bob-plugin-openai-translator/tree/main#%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95) 部分安装的。
32-
33-
Before reporting bugs, please carefully read the [usage instructions]((https://github.com/yetone/bob-plugin-openai-translator/tree/main#%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95) section in README
34-
31+
辛苦提 Bug 前,请确定是按照 README 中的 [使用方法](https://github.com/openai-translator/bob-plugin-openai-translator/tree/main#%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95) 部分安装的。
32+
33+
Before reporting bugs, please carefully read the [usage instructions]((https://github.com/openai-translator/bob-plugin-openai-translator/tree/main#%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95) section in README
34+
3535
options:
3636
- label: I have read the usage instructions section in README in detail.
3737
required: true
@@ -40,7 +40,7 @@ body:
4040
label: Please check your network and OpenAI API quota
4141
description: |
4242
如果您遇到的报错是 Failed to fetch 或者 API quota exceed,则说明是网络问题或者 OpenAI API 使用量超过阈值,这些问题都与 OpenAI Translator Bob Plugin 无关,请自行解决。
43-
43+
4444
If you encounter error messages such as 'Failed to fetch' or 'API quota exceed', it means there is a network issue or the usage limit of OpenAI API has been exceeded. These issues are not related to OpenAI Translator Bob Plugin, please resolve them on your own.
4545
4646
options:
@@ -51,7 +51,7 @@ body:
5151
label: OpenAI Translator Bob Plugin version
5252
description: |
5353
请提供您正在使用的 OpenAI Translator Bob Plugin 的版本。
54-
54+
5555
Please provide the version of OpenAI Translator Bob Plugin you are using. For example, `v0.1.0`.
5656
validations:
5757
required: true
@@ -60,7 +60,7 @@ body:
6060
label: 系统版本 | System version
6161
description: |
6262
请提供您正在使用的系统版本。
63-
63+
6464
Please provide the version of the System you are using. For example, `macOS 11.2.3`.
6565
validations:
6666
required: true
@@ -78,7 +78,7 @@ body:
7878
label: 复现步骤 | Reproduce step
7979
description: |
8080
请提供完整且简明的复现步骤,以方便及时定位并解决问题。
81-
81+
8282
Please provide complete and concise reproduction steps to facilitate timely identification and resolution of the issue.
8383
validations:
8484
required: true
@@ -100,7 +100,7 @@ body:
100100
label: 你是否愿意提交一份 PR 来修改这个错误?Are you willing to submit a PR?
101101
description: |
102102
我们期待开发人员和用户的帮助,以解决在 OpenAI Translator Bob Plugin 中发现的任何问题。 如果您愿意通过提交 PR 来解决此问题,请勾选。
103-
103+
104104
We eagerly anticipate developers' and users' support and collaboration in resolving any issues found in OpenAI Translator Bob Plugin. If you are willing to offer a solution by submitting a PR to fix this matter, kindly mark the checkbox provided.
105105
options:
106106
- label: 我愿意提供 PR! I'm willing to submit a PR!

.github/workflows/release.yaml

+56-30
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
1-
name: Release
1+
name: Bump Version and Release
22

33
on:
4-
push:
5-
tags: [ v\d+\.\d+\.\d+ ]
6-
4+
workflow_dispatch:
5+
inputs:
6+
version:
7+
description: 'Tag version (e.g., 1.0.0 or v1.0.0)'
8+
required: true
9+
message:
10+
description: 'Tag message'
11+
required: true
712

813
jobs:
914
release:
@@ -14,56 +19,77 @@ jobs:
1419
packages: write
1520

1621
steps:
17-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
1823
with:
1924
fetch-depth: 0
2025
token: ${{ secrets.PAT }}
2126

22-
- name: Get version
23-
id: get_version
24-
uses: battila7/get-version-action@v2
27+
- name: Set up Git
28+
run: |
29+
git config --global user.name 'GitHub Actions[bot]'
30+
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
2531
26-
- name: Get tag message
27-
id: tag
32+
- name: Determine tag version
33+
id: determine_version
2834
run: |
29-
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
30-
echo "message=$(git tag -l --format='%(contents:subject)' ${{ steps.get_version.outputs.version }})" >> $GITHUB_OUTPUT
35+
VERSION="${{ github.event.inputs.version }}"
36+
if [[ $VERSION != v* ]]; then
37+
VERSION="v$VERSION"
38+
fi
39+
VERSION_NUMBER="${VERSION#v}"
40+
echo "VERSION=$VERSION" >> $GITHUB_ENV
41+
echo "VERSION_NUMBER=$VERSION_NUMBER" >> $GITHUB_ENV
3142
32-
- name: Change version
43+
- name: Update info.json
3344
run: |
34-
OLD_VERSION=$(grep '"version":' src/info.json | awk -F\" '{print $4}')
35-
sed -i "s/$OLD_VERSION/${{ steps.get_version.outputs.version-without-v }}/" src/info.json
45+
OLD_VERSION=$(grep '"version":' public/info.json | awk -F\" '{print $4}')
46+
sed -i "s/$OLD_VERSION/${{ env.VERSION_NUMBER }}/" public/info.json
3647
37-
- name: Package plugin
38-
run: mkdir release && zip -j -r release/openai-translator-${{ steps.get_version.outputs.version-without-v }}.bobplugin ./src/*
48+
- uses: pnpm/action-setup@v4
49+
- uses: actions/setup-node@v4
50+
with:
51+
node-version-file: .node-version
52+
cache: pnpm
3953

40-
- run: git checkout -- src/
54+
- run: pnpm install
55+
- run: pnpm run build
56+
57+
- name: Package plugin
58+
run: |
59+
zip -j -r dist/openai-translator-${{ env.VERSION_NUMBER }}.bobplugin ./dist/*
60+
echo "Packaged file: dist/openai-translator-${{ env.VERSION_NUMBER }}.bobplugin"
4161
4262
- name: Update appcast.json
4363
env:
44-
VERSION: ${{ steps.get_version.outputs.version-without-v }}
45-
MESSAGE: ${{ steps.tag.outputs.message }}
64+
VERSION_NUMBER: ${{ env.VERSION_NUMBER }}
65+
MESSAGE: ${{ github.event.inputs.message }}
4666
run: |
47-
python3 scripts/update_release.py "$VERSION" "$MESSAGE"
48-
67+
python3 scripts/update_appcast.py "$VERSION_NUMBER" "$MESSAGE"
68+
4969
- name: Commit files
5070
run: |
51-
git config --global user.name 'Bryan Lee'
52-
git config --global user.email '[email protected]'
53-
git commit -am 'chore: update appcast.json and info.json'
71+
git commit -a -m 'chore: update appcast.json and info.json'
72+
73+
- name: Create tag
74+
env:
75+
VERSION: ${{ env.VERSION }}
76+
MESSAGE: ${{ github.event.inputs.message }}
77+
run: |
78+
git tag -a "$VERSION" -m "$MESSAGE"
5479
5580
- name: Push changes
5681
uses: ad-m/github-push-action@master
5782
with:
5883
github_token: ${{ secrets.PAT }}
84+
tags: true
5985

6086
- name: Upload binaries to release
6187
uses: svenstaro/upload-release-action@v2
6288
with:
63-
release_name: ${{ steps.get_version.outputs.version }}
89+
release_name: ${{ env.VERSION }}
6490
repo_token: ${{ secrets.GITHUB_TOKEN }}
65-
file: release/openai-translator-${{ steps.get_version.outputs.version-without-v }}.bobplugin
66-
asset_name: openai-translator-${{ steps.get_version.outputs.version-without-v }}.bobplugin
67-
tag: ${{ github.ref }}
91+
file: dist/openai-translator-${{ env.VERSION_NUMBER }}.bobplugin
92+
asset_name: openai-translator-${{ env.VERSION_NUMBER }}.bobplugin
93+
tag: ${{ env.VERSION }}
6894
overwrite: true
69-
body: ${{ steps.tag.outputs.message }}
95+
body: ${{ github.event.inputs.message }}

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
*.bobplugin
2+
*.log*
3+
dist
4+
node_modules

.node-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
20.16.0

0 commit comments

Comments
 (0)