diff --git a/README.md b/README.md
index c1ec5b9..552ea63 100644
--- a/README.md
+++ b/README.md
@@ -1,34 +1,96 @@
-# electron-lan-file
+# Alger Music Player
+主要功能如下
-An Electron application with Vue and TypeScript
+- 音乐推荐
+- 网易云登录
+- 播放历史
+- 桌面歌词
+- 歌单 mv 搜索 专辑等功能
+- 识别无法播放歌曲 并解析播放
+- 主题切换 更新检测
+- 本地服务 不依赖线上服务
+- 可听周杰伦(搜索专辑)
-## Recommended IDE Setup
+## 项目简介
+ 一个基于 electron typescript vue3 的桌面音乐播放器 适配 web端 桌面端 web移动端
-- [VSCode](https://code.visualstudio.com/) + [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) + [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin)
+## 预览地址
+[http://mc.alger.fun/](http://mc.alger.fun/)
-## Project Setup
+QQ群:789288579
-### Install
+## 软件截图
+
+
+
+
+
+## 技术栈
+
+### 主要框架
+- Vue 3 - 渐进式 JavaScript 框架
+- TypeScript - JavaScript 的超集,添加了类型系统
+- Electron - 跨平台桌面应用开发框架
+- Vite - 下一代前端构建工具
+- Naive UI - 基于 Vue 3 的组件库
+
+
+## 咖啡☕️
+| 微信 | 支付宝 |
+| :--------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------: |
+|
|
|
+
+## 项目运行
+```bash
+ # 安装依赖
+ npm install
+
+ # 运行项目 web
+ npm run dev
+
+ # 运行项目 electron
+ npm run start
+
+ # 打包项目 web
+ npm run build
+
+ # 打包项目 electron
+ npm run win ...
+ # 具体看 package.json
+```
+#### 注意
+- 本地运行需要配置 .env.development 文件
+- 打包需要配置 .env.production 文件
```bash
-$ npm install
+ # .env.development
+ VITE_API_LOCAL = /api
+ VITE_API_MUSIC_PROXY = /music
+ VITE_API_PROXY_MUSIC = /music_proxy
+
+ # 你的接口地址 (必填)
+ VITE_API = ***
+ # 音乐po接口地址
+ VITE_API_MUSIC = ***
+ VITE_API_PROXY = ***
+
+
+ # .env.production
+ # 你的接口地址 (必填)
+ VITE_API = ***
+ # 音乐po接口地址
+ VITE_API_MUSIC = ***
+ # 代理地址
+ VITE_API_PROXY = ***
```
-### Development
+## Stargazers over time
+[](https://starchart.cc/algerkong/AlgerMusicPlayer)
-```bash
-$ npm run dev
-```
-### Build
-```bash
-# For windows
-$ npm run build:win
-# For macOS
-$ npm run build:mac
+## 欢迎提Issues
-# For Linux
-$ npm run build:linux
-```
+## 免责声明
+本软件仅用于学习交流,禁止用于商业用途,否则后果自负。
diff --git a/docs/image.png b/docs/image.png
new file mode 100644
index 0000000..cfdd6d5
Binary files /dev/null and b/docs/image.png differ
diff --git a/docs/image1.png b/docs/image1.png
new file mode 100644
index 0000000..2c43ed9
Binary files /dev/null and b/docs/image1.png differ
diff --git a/docs/image2.png b/docs/image2.png
new file mode 100644
index 0000000..8a17288
Binary files /dev/null and b/docs/image2.png differ
diff --git a/docs/image3.png b/docs/image3.png
new file mode 100644
index 0000000..c682dce
Binary files /dev/null and b/docs/image3.png differ
diff --git a/src/main/index.ts b/src/main/index.ts
index 65ee5cc..54c82b5 100644
--- a/src/main/index.ts
+++ b/src/main/index.ts
@@ -51,7 +51,6 @@ function createWindow(): void {
mainWindow.webContents.openDevTools({ mode: 'detach' });
mainWindow.loadURL(process.env.ELECTRON_RENDERER_URL);
} else {
- mainWindow.webContents.openDevTools({ mode: 'detach' });
mainWindow.loadFile(join(__dirname, '../renderer/index.html'));
}
diff --git a/src/renderer/views/user/index.vue b/src/renderer/views/user/index.vue
index 0c08b4d..23e9db6 100644
--- a/src/renderer/views/user/index.vue
+++ b/src/renderer/views/user/index.vue
@@ -49,6 +49,7 @@
+