Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
CrankZ committed Oct 4, 2023
1 parent 133943e commit de7f820
Show file tree
Hide file tree
Showing 49 changed files with 11,536 additions and 21 deletions.
25 changes: 25 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local
.yarn

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

Binary file added README.assets/image-20231005011955350.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
44 changes: 44 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# SwitchMirror

一个简单的镜像切换工具,支持主流桌面平台,文件体积仅8MB左右。

![image-20231005011955350](README.assets/image-20231005011955350.png)

## 功能

目前支持以下的镜像切换

- Maven

- npm


## 开发

安装

```
yarn install
```

运行

```
yarn tauri dev
```

编译

```
yarn tauri build
```

## 技术栈

[Tauri](https://github.com/tauri-apps/tauri)

[React](https://github.com/facebook/react)

[Ant Design](https://github.com/ant-design/ant-design)

[Icons8](https://icons8.com/)
Binary file added app-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<link href="/vite.svg" rel="icon" type="image/svg+xml"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>Tauri + React + TS</title>
</head>

<body>
<div id="root"></div>
<script src="/src/main.tsx" type="module"></script>
</body>
</html>
Loading

0 comments on commit de7f820

Please sign in to comment.