mirror of
https://gitee.com/spark-store-project/spark-store
synced 2026-04-26 09:20:18 +08:00
- Removed CHANGELOG.md and electron-vite-vue.gif files. - Updated LICENSE to reflect new copyright holder. - Transformed README.md to reflect new project identity and features. - Introduced DownloadQueue and DownloadDetail components for managing downloads. - Implemented download simulation and management logic in App.vue. - Added URL scheme handling in Electron main process. - Integrated electron-app-universal-protocol-client for protocol handling. - Updated package.json to include new dependencies.
5 lines
157 B
TypeScript
5 lines
157 B
TypeScript
import { dialog } from 'electron'
|
|
|
|
export async function handleUrlScheme(requestUrl: string) {
|
|
console.log('Handling URL scheme request:', requestUrl);
|
|
} |