Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
67a62c1
feat(RepositoryCard): 添加多语言支持按钮标题
Apr 14, 2026
d439362
feat(settings): 添加设置模块及相关面板组件
Apr 14, 2026
a125de6
feat(设置): 新增数据管理面板功能
Apr 14, 2026
033ce97
feat(侧边栏): 添加可折叠侧边栏功能并实现返回顶部按钮
Apr 14, 2026
1cb6843
fix
Apr 14, 2026
500b1d6
fix(accessibility): 为按钮添加aria-label属性提升可访问性
Apr 14, 2026
7b08f43
feat(ui): 优化移动端设置面板的标签导航体验
Apr 15, 2026
46a14f4
fix(SettingsPanel): 为标签导航添加ARIA属性以提升可访问性
Apr 15, 2026
25b77d0
feat: 添加批量操作功能及预设资源筛选器
Apr 15, 2026
db8dce4
feat: 添加仓库卡片点击查看 README 功能
Apr 15, 2026
c8d3c34
feat: 优化组件可访问性与代码结构
Apr 15, 2026
ff62ecf
feat: 优化批量操作工具栏和分类侧边栏交互
Apr 15, 2026
332f0a9
Merge branch 'main' of https://github.com/SummerRay160/GithubStarsMan…
Apr 15, 2026
2aa1cee
fix: 解决合并冲突并移除冲突标记
Apr 15, 2026
e0c3355
feat: 增加rehype-sanitize插件并改进无障碍功能
Apr 15, 2026
448285c
fix(组件): 修复代码块渲染和侧边栏定时器内存泄漏问题
Apr 15, 2026
faf6097
feat(分类管理): 新增分类排序功能及侧边栏折叠优化
Apr 15, 2026
a5a6a42
ci(workflow): 更新 Node.js 版本至 22
Apr 15, 2026
dbff152
feat: 添加批量取消订阅功能并优化性能
Apr 15, 2026
4339b4c
feat: 添加浏览器兼容性支持并优化分类管理功能
Apr 16, 2026
07dd2e5
chore: 更新依赖包版本及添加新依赖
Apr 16, 2026
dd11b42
refactor: 优化代码结构和类型安全
Apr 16, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '22'
cache: 'npm'

- name: Install dependencies
Expand Down
20 changes: 15 additions & 5 deletions dist/index.html
Original file line number Diff line number Diff line change
@@ -1,19 +1,29 @@
<!doctype html>
<html lang="en">
<head>
<head>
<script type="module" crossorigin src="./assets/polyfills-DL5ariWI.js"></script>

<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="icon" type="image/png" href="./icon.png" />
<link rel="apple-touch-icon" href="./icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GitHub Stars Manager - AI-Powered Repository Management</title>
<meta name="description" content="Intelligent management of your GitHub starred repositories with AI-powered analysis and release tracking" />
<!-- Font Awesome CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Material Icons CDN -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<script type="module" crossorigin src="./assets/index-7x6M84Ug.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-DW9FpI6u.css">
<script type="module" crossorigin src="./assets/index-DylSkRx4.js"></script>
<link rel="modulepreload" crossorigin href="./assets/ui-vendor-BtWP_h1Q.js">
<link rel="modulepreload" crossorigin href="./assets/react-vendor-BBTKi7WK.js">
<link rel="stylesheet" crossorigin href="./assets/index-Cx3uiIfk.css">
<script type="module">import.meta.url;import("_").catch(()=>1);(async function*(){})().next();if(location.protocol!="file:"){window.__vite_is_modern_browser=true}</script>
<script type="module">!function(){if(window.__vite_is_modern_browser)return;console.warn("vite: loading legacy chunks, syntax error above and the same error below should be ignored");var e=document.getElementById("vite-legacy-polyfill"),n=document.createElement("script");n.src=e.src,n.onload=function(){System.import(document.getElementById('vite-legacy-entry').getAttribute('data-src'))},document.body.appendChild(n)}();</script>
</head>
<body class="bg-gray-50 dark:bg-gray-900">
<div id="root"></div>
<script nomodule>!function(){var e=document,t=e.createElement("script");if(!("noModule"in t)&&"onbeforeload"in t){var n=!1;e.addEventListener("beforeload",(function(e){if(e.target===t)n=!0;else if(!e.target.hasAttribute("nomodule")||!n)return;e.preventDefault()}),!0),t.type="module",t.src=".",e.head.appendChild(t),t.remove()}}();</script>
<script nomodule crossorigin id="vite-legacy-polyfill" src="./assets/polyfills-legacy-Bg94qA9c.js"></script>
<script nomodule crossorigin id="vite-legacy-entry" data-src="./assets/index-legacy-DRlw8Sve.js">System.import(document.getElementById('vite-legacy-entry').getAttribute('data-src'))</script>
</body>
</html>
</html>
Expand Down
Loading
Loading