Commit Graph

48 Commits

Author SHA1 Message Date
d638ef7122 fix:修复取消下载后无法重试下载的问题,修复重试下载后没有日志输出的问题 2026-03-27 11:39:36 +08:00
835572dabd update:重复下载包时删除掉已有包 2026-03-27 11:33:57 +08:00
7ff079276e feat: 添加 APM 应用管理功能并优化界面
- 新增 APM 应用管理功能,支持显示已安装应用及其依赖项
- 优化已安装应用列表界面,增加应用图标和名称显示
- 调整顶部操作栏布局,将设置和关于按钮移至搜索框旁
- 修复类型定义,增加 isDependency 字段和更多应用信息
- 改进暗色模式下的界面显示效果
2026-03-24 20:47:55 +08:00
480a7f3b77 update 降低超时时长 2026-03-22 19:29:33 +08:00
c7761e8468 fix(下载): 增强aria2c下载的稳定性和重试机制
添加连接超时、下载超时和重试参数配置
实现0%卡死检测和自动重试逻辑
移除冗余的dpkg-query检测代码
优化安装按钮状态判断逻辑
更新版本号至4.9.9alpha4
2026-03-22 18:35:41 +08:00
6729e321a6 去除界面优化 2026-03-15 17:00:58 +08:00
dbfe86aa64 feat: enhance UI and functionality across components
- Added Google Fonts preconnect and stylesheet link in `index.html` for improved typography.
- Updated version in `package.json` to `4.9.9alpha3`.
- Refined launch configuration by removing deprecated arguments.
- Improved app detail modal and card components for better accessibility and visual consistency.
- Enhanced download queue and sidebar components with updated styles and functionality.
- Implemented new utility classes for better styling control in CSS.
- Adjusted various components for improved responsiveness and user experience.
2026-03-15 15:21:29 +08:00
6e725e25c8 refactor: update tray icon handling and add APM installation checks
- Removed the deprecated `--no-spark` argument from launch configuration.
- Enhanced tray icon management by introducing a new function to resolve icon paths based on application packaging status.
- Implemented APM installation checks in the install manager, prompting users to install APM if not available, with appropriate dialog messages and handling for installation success or failure.
- Added a new shell script for executing the Spark Store with environment checks for container and architecture compatibility.
2026-03-15 14:20:28 +08:00
vmomenv
034f86b82f fix: add origin property to DownloadResult and update test config
- Updated `src/global/typedefinition.ts` to include optional `origin` property in `DownloadResult` to fix TypeScript compilation error where `remove-complete` payload didn't have it defined.
- Added `origin` payload in `electron/main/backend/install-manager.ts`.
- Updated `e2e/basic.spec.ts` URL to `/` and expecting title including `星火应用商店` to match E2E setup.
2026-03-12 08:27:37 +00:00
vmomenv
a1c5db3a11 feat: implement apm app install and uninstall logic with pkexec elevation
- Modify `queue-install` logic to wrap `apm` commands with `superUserCmd` and `SHELL_CALLER_PATH` when origin is apm.
- Update `remove-installed` to correctly execute `apm remove -y pkgname` with required privilege elevation when origin is apm.
- Add payload parsing logic in `uninstall-installed` handler to identify origin and apply correct `apm` uninstall command dynamically.
2026-03-12 03:23:16 +00:00
vmomenv
70cab0182d feat: 仅保留混合模式并根据架构动态构建请求路径
- 删除 AppSidebar.vue 中的 StoreModeSwitcher 引入并删除该组件。
- 强制设置当前商店模式为 'hybrid'。
- 修复了因为 `window.apm_store.arch` 包含 `-store` 或 `-apm` 后缀导致路径替换异常的问题,现在会通过动态添加后缀来构建资源请求路径,以兼容 Spark Store 和 APM Store 服务器不同的资源组织结构。
2026-03-12 01:39:00 +00:00
16f7b62491 fix:修复商店无法调起apm软件的问题 2026-03-11 16:08:51 +08:00
207334608c fix:已安装的软件不显示打开软件的按钮问题 2026-03-11 14:20:23 +08:00
5bc68f5a9a update:修复github工作流问题 2026-03-11 09:38:28 +08:00
edd9368c56 update:添加apm与普通商店双支持 2026-03-11 08:36:24 +08:00
google-labs-jules[bot]
828ffd86e8 🔒 fix: Command Injection vulnerability in install-manager.ts
- Changed `shell: true` to `shell: false` in `spawn` calls within `electron/main/backend/install-manager.ts`.
- Updated `AGENTS.md` documentation to reflect the security best practice.
- Verified that the fix prevents command injection using a reproduction script.

Co-authored-by: vmomenv <51269338+vmomenv@users.noreply.github.com>
2026-03-10 15:53:44 +00:00
a98b3ec5b1 不再使用dpkg-query检测是否安装 2026-03-10 18:36:35 +08:00
21ea334e79 feat:修复基础格式问题 2026-03-09 23:56:44 +08:00
6ea628d869 feat: 修改应用信息界面,对于已安装应用,安装按钮变为打开按钮,并添加卸载按钮 2026-02-27 23:03:10 +08:00
1cf729e7fd 优化启动速度 2026-02-19 19:22:18 +08:00
69d9c23cff 完成aptss对接 2026-02-19 18:35:41 +08:00
44a55249db 更换安装指令为 aptss 2026-02-19 18:01:16 +08:00
Elysia
5ac9376200 feat: support download statistics
close #15
2026-02-14 23:11:43 +08:00
Elysia
74c4eb4fbc feat(install): add metalink download support and progress tracking
close #12
2026-02-14 00:16:18 +08:00
Elysia
6622e70033 refactor: improve code formatting and consistency across components
- Updated button and span elements in ThemeToggle.vue and TopActions.vue for better readability.
- Enhanced UninstallConfirmModal.vue and UpdateAppsModal.vue with consistent indentation and spacing.
- Refactored downloadStatus.ts and storeConfig.ts for improved code clarity.
- Standardized string quotes and spacing in typedefinition.ts and processInstall.ts.
- Ensured consistent use of arrow functions and improved variable declarations throughout the codebase.
2026-02-12 18:32:41 +08:00
Elysia
e11740ad4c feat: 添加 ESLint 配置并优化代码风格,移除未使用的功能 2026-02-12 18:31:09 +08:00
Delta1035
b43c6117ec fix: 修复应用还没有安装完,按钮就重新变成可安装状态 (#11)
fix:先用比较简单的方案解决安装之后卸载了还是显示已安装的问题

fix: 在安装成功的ipc信息之后再删除安装队列的任务

删除pnpm workspace
2026-02-04 13:06:01 +08:00
Elysia
95d358fb6e chore: 更新版本号至 1.0.4-beta.1,并为 host-spawn 添加可执行权限 2026-01-31 21:36:13 +08:00
Elysia
850b8dcd1f feat: 添加 host-spawn 下载步骤并更新应用启动命令 2026-01-31 21:27:31 +08:00
Elysia
eb386ec23e chore: 更新版本号至 1.0.4-beta.0,移除重复任务检查逻辑 2026-01-31 20:21:02 +08:00
Elysia
92d1573cf0 feat: 现在仅在有任务时才会到托盘 2026-01-31 20:13:05 +08:00
Elysia
eeefe5295b feat: enhance install manager to prevent duplicate package installations and improve app launching command 2026-01-31 20:08:35 +08:00
Elysia
641589f875 feat: update application name and paths to reflect new branding 2026-01-31 18:32:52 +08:00
Elysia
6154d75fa6 feat: add app launching functionality and update related components 2026-01-31 18:21:16 +08:00
Elysia
39e40ff946 feat: enhance application type definitions and improve app management logic 2026-01-31 17:48:06 +08:00
Elysia
0ed7f64a21 fix: deep link handling at electron startup 2026-01-31 16:07:15 +08:00
Elysia
97997182bc fix: 修复卸载请求中的应用名称查找逻辑
更新下载详情组件样式以支持自定义滚动条
2026-01-31 00:53:40 +08:00
Elysia
b9325db8b0 feat: 添加卸载确认模态框,支持卸载进度显示 2026-01-31 00:01:32 +08:00
Elysia
fff4a4bd22 refactor: 更新README文档,添加动画性能问题的待办事项;修改安装管理器以使用完整路径查找pkexec命令;删除未使用的下载管理模拟方法 2026-01-30 21:39:50 +08:00
Elysia
0c2ec65dca refactor(install-manager): 更新可升级软件包列表命令路径 2026-01-28 23:19:15 +08:00
Elysia
d529dd6e5e refactor(install-manager): update apm execution path to shell-caller.sh 2026-01-28 22:26:37 +08:00
Elysia
640e0bd69d feat: 添加对deb和rpm包的构建支持,更新构建依赖和版本信息 2026-01-28 19:18:45 +08:00
Elysia
4b49424105 fix: 更新应用图标格式为ICNS,优化安装管理器命令执行 2026-01-28 18:38:52 +08:00
Elysia
ea0261a192 feat: 添加已安装应用和可更新应用的管理功能,支持卸载和升级操作 2026-01-28 18:14:04 +08:00
Elysia
ac0dc225bc feat(install): add app uninstall functionality 2026-01-26 00:57:15 +08:00
Elysia
bf93059da1 feat(install): 实现安装管理器,支持安装、检查已安装状态和初步卸载功能 2026-01-26 00:12:01 +08:00
Elysia
bdf51a1037 feat(download): 支持重试下载功能并更新相关逻辑 2026-01-25 23:29:58 +08:00
Elysia
50fb1a0065 feat(install): added basis install process
Now it is able to install apps from the render process and properly display logs on the app detial page.
2026-01-25 22:30:39 +08:00