4 Commits

Author SHA1 Message Date
tamina
fd41b4504a Add version 0.1.7 with changelog updates
Added version 0.1.7 with a fix for webdav backup recovery issue.
2025-11-16 17:01:11 +08:00
tamina
4c3ba04a25 Update updateService.ts 2025-11-16 16:48:47 +08:00
tamina
008a3250bf Update current version to v0.1.7 2025-11-16 16:47:38 +08:00
tamina
593a319f38 Bump version from 0.1.6 to 0.1.7 2025-11-16 16:45:23 +08:00
4 changed files with 11 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "github-stars-manager",
"private": true,
"version": "0.1.6",
"version": "0.1.7",
"type": "module",
"scripts": {
"dev": "vite",

View File

@@ -471,7 +471,7 @@ Focus on practicality and accurate categorization to help users quickly understa
<div className="flex items-center justify-between">
<div>
<p className="text-sm text-gray-600 dark:text-gray-400 mb-1">
{t('当前版本: v0.1.6', 'Current Version: v0.1.6')}
{t('当前版本: v0.1.7', 'Current Version: v0.1.7')}
</p>
<p className="text-xs text-gray-500 dark:text-gray-500">
{t('检查是否有新版本可用', 'Check if a new version is available')}

View File

@@ -17,7 +17,7 @@ export class UpdateService {
private static getCurrentVersion(): string {
// 在实际应用中,这个版本号应该在构建时注入
// 这里暂时硬编码,你可以通过构建脚本或环境变量来动态设置
return '0.1.6';
return '0.1.7';
}
static async checkForUpdates(): Promise<UpdateCheckResult> {

View File

@@ -47,4 +47,12 @@
</changelog>
<downloadUrl>https://github.com/AmintaCCCP/GithubStarsManager/releases/tag/v0.1.6</downloadUrl>
</version>
<version>
<number>0.1.7</number>
<releaseDate>2025-11-16</releaseDate>
<changelog>
<item>fix: Fixed webdav backup recovery issue.</item>
</changelog>
<downloadUrl>https://github.com/AmintaCCCP/GithubStarsManager/releases/tag/v0.1.7</downloadUrl>
</version>
</versions>