Skip to content

Commit 2f0642b

Browse files
author
Clawd Bot
committed
chore: bump version to 0.2.4
1 parent 8bd68a6 commit 2f0642b

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "github-stars-manager",
33
"private": true,
4-
"version": "0.2.3",
4+
"version": "0.2.4",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src/components/SettingsPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ Focus on practicality and accurate categorization to help users quickly understa
602602
<div className="flex items-center justify-between">
603603
<div>
604604
<p className="text-sm text-gray-600 dark:text-gray-400 mb-1">
605-
{t('当前版本: v0.2.3', 'Current Version: v0.2.3')}
605+
{t('当前版本: v0.2.4', 'Current Version: v0.2.4')}
606606
</p>
607607
<p className="text-xs text-gray-500 dark:text-gray-500">
608608
{t('检查是否有新版本可用', 'Check if a new version is available')}

src/services/updateService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export class UpdateService {
1717
private static getCurrentVersion(): string {
1818
// 在实际应用中,这个版本号应该在构建时注入
1919
// 这里暂时硬编码,你可以通过构建脚本或环境变量来动态设置
20-
return '0.2.3';
20+
return '0.2.4';
2121
}
2222

2323
static async checkForUpdates(): Promise<UpdateCheckResult> {

0 commit comments

Comments
 (0)