Skip to content

Commit 6493226

Browse files
committed
release v2.5.2
1 parent 513f468 commit 6493226

File tree

2 files changed

+52
-10
lines changed

2 files changed

+52
-10
lines changed

.github/workflows/tagged-release.yml

+14-10
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ on:
77
permissions:
88
id-token: "write"
99
contents: "write"
10+
env:
11+
GH_TOKEN: ${{ github.token }}
1012

1113
jobs:
1214
build_and_release:
@@ -40,6 +42,9 @@ jobs:
4042
git commit -am "release v${{ env.VERSION }}"
4143
git push
4244
45+
- run: |
46+
gh release create ${{github.ref_name}} -d -F CURRENT_CHANGE.md -t ${{github.ref_name}}
47+
4348
- uses: actions/setup-node@v4
4449
with:
4550
node-version: 20
@@ -55,13 +60,12 @@ jobs:
5560
- run: sed -i '' "s/0.0.0/${{ env.VERSION }}/g" safari/project.patch
5661
- run: npm run build:safari
5762

58-
- uses: marvinpinto/[email protected]
59-
with:
60-
repo_token: "${{ secrets.GITHUB_TOKEN }}"
61-
prerelease: false
62-
files: |
63-
build/chromium.zip
64-
build/firefox.zip
65-
build/safari.dmg
66-
build/chromium-without-katex-and-tiktoken.zip
67-
build/firefox-without-katex-and-tiktoken.zip
63+
- run: |
64+
gh release upload ${{github.ref_name}} build/chromium.zip
65+
gh release upload ${{github.ref_name}} build/firefox.zip
66+
gh release upload ${{github.ref_name}} build/safari.dmg
67+
gh release upload ${{github.ref_name}} build/chromium-without-katex-and-tiktoken.zip
68+
gh release upload ${{github.ref_name}} build/firefox-without-katex-and-tiktoken.zip
69+
70+
- run: |
71+
gh release edit ${{github.ref_name}} --draft=false

CURRENT_CHANGE.md

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Changes of v2.5.2
2+
3+
## Fixes
4+
5+
- fix the error caused by the unnecessary ArkoseToken for free accounts (#661)
6+
- upgrade component mount for brave search
7+
8+
# Changes of v2.5.1
9+
10+
## Upgrades
11+
- 074b6cc: upgrade chatgpt web (new arkoseToken and requirementsToken) (#653, #658, #661) (josc146)
12+
- c4a537f: switch azure openai api version to stable version (#640) (josc146)
13+
- a6fa0ed: Update Google Gemini integration (Tomasz Panasiuk) [#649](https://github.com/josStorer/chatGPTBox/pull/649)
14+
15+
## Features
16+
- 21b8468: Add support for kimi.moonshot.cn Web mode (#656) (xxcdd) [#656](https://github.com/josStorer/chatGPTBox/pull/656)
17+
- 381cea3: allow hiding context menu (#643) (josc146)
18+
- e2ec8ac: claude 3 api support (#642) (josc146)
19+
- 74bcba8: allow custom claude api url (#644) (josc146)
20+
21+
## Improvements
22+
- 9cbe4f3: improve websocket support for chatgpt web mode (#652) (josc146)
23+
- 680900b: add additional finish conditions for OpenAI API and Custom API (both can be customized, thus requiring more condition checks, now the api has better support for [ollama](https://github.com/ollama/ollama) and LM Studio) (#631, #648) (josc146)
24+
- eb88fc2: getCoreContentText for any websites using mozilla/readability (#641) (xxcdd) [#641](https://github.com/josStorer/chatGPTBox/pull/641)
25+
- c00b8ff: improve moonshot api support (#623) (josc146)
26+
- d49280c: improve delta process (#657) (josc146)
27+
- cbeae3e: bigger FloatingToolbar icon (josc146)
28+
- 26d6ca5: dark mode for SelectionToolbar (#651) (josc146)
29+
30+
## Fixes
31+
- db35e05: fix #538 breaks archwiki enumeration (katex css on body) (josc146)
32+
- d53d8b8: fix https://github.com/josStorer/chatGPT-search-engine-extension/issues/23 again (caused by dcd34156) (josc146) (#660)
33+
34+
## Chores
35+
- 985adb9: reduce package size (josc146)
36+
- 4226cf5: update enforcement rule (josc146)
37+
- 1ec752c: update i18n (josc146)
38+
- 68e3a8a: update readme (josc146)

0 commit comments

Comments
 (0)