File tree Expand file tree Collapse file tree 3 files changed +11
-18
lines changed Expand file tree Collapse file tree 3 files changed +11
-18
lines changed Original file line number Diff line number Diff line change 14
14
jobs :
15
15
release :
16
16
runs-on : ${{ matrix.os }}
17
+ env :
18
+ SNAPCRAFT_STORE_CREDENTIALS : ${{ secrets.snapcraft_token }}
17
19
18
20
strategy :
19
21
matrix :
23
25
- name : Check out Git repository
24
26
uses : actions/checkout@v3
25
27
with :
26
- submodules : " recursive"
28
+ submodules : ' recursive'
27
29
28
30
- name : Install Node.js, NPM and Yarn
29
31
uses : actions/setup-node@v3
40
42
sudo apt-get install --no-install-recommends -y libopenjp2-tools
41
43
42
44
- name : Install Snapcraft (on Ubuntu)
43
- uses : samuelmeuli/action-snapcraft@v1
45
+ uses : samuelmeuli/action-snapcraft@v3
44
46
if : startsWith(matrix.os, 'ubuntu')
45
- with :
46
- snapcraft_token : ${{ secrets.snapcraft_token }}
47
47
48
48
- id : get_unm_version
49
49
name : Get the installed UNM version
Original file line number Diff line number Diff line change 18
18
19
19
[ ![ Library] [ library-screenshot ]] ( https://music.qier222.com )
20
20
21
-
22
21
## 全新版本
23
- 全新2.0 Alpha测试版已发布,欢迎前往 [ Releases] ( https://github.com/qier222/YesPlayMusic/releases ) 页面下载。
24
- 当前版本将会进入维护模式,除重大bug修复外,不会再更新新功能。
22
+
23
+ 全新 2.0 Alpha 测试版已发布,欢迎前往 [ Releases] ( https://github.com/qier222/YesPlayMusic/releases ) 页面下载。
24
+ 当前版本将会进入维护模式,除重大 bug 修复外,不会再更新新功能。
25
25
26
26
## ✨ 特性
27
27
35
35
- 🔐 支持 [ UnblockNeteaseMusic] ( https://github.com/UnblockNeteaseMusic/server#音源清单 ) ,自动使用[ 各类音源] ( https://github.com/UnblockNeteaseMusic/server#音源清单 ) 替换变灰歌曲链接 (网页版不支持)
36
36
- 「各类音源」指默认启用的音源。
37
37
- YouTube 音源需自行安装 ` yt-dlp ` 。
38
- - ✔️ 每日自动签到(手机端和电脑端同时签到)
38
+ - ~~ ✔️ 每日自动签到(手机端和电脑端同时签到)~~
39
39
- 🌚 Light/Dark Mode 自动切换
40
40
- 👆 支持 Touch Bar
41
41
- 🖥️ 支持 PWA,可在 Chrome/Edge 里点击地址栏右边的 ➕ 安装到电脑
@@ -125,13 +125,13 @@ yarn run build
125
125
126
126
7 . 将 ` /dist ` 目录下的文件上传到你的 Web 服务器
127
127
128
- ## ⚙️ 宝塔面板 docker应用商店 部署
128
+ ## ⚙️ 宝塔面板 docker 应用商店 部署
129
129
130
130
1 . 安装宝塔面板,前往[ 宝塔面板官网] ( https://www.bt.cn/new/download.html ) ,选择正式版的脚本下载安装。
131
131
132
- 2 . 安装后登录宝塔面板,在左侧导航栏中点击 Docker,首次进入会提示安装Docker服务 ,点击立即安装,按提示完成安装
132
+ 2 . 安装后登录宝塔面板,在左侧导航栏中点击 Docker,首次进入会提示安装 Docker 服务 ,点击立即安装,按提示完成安装
133
133
134
- 3 . 安装完成后在应用商店中找到YesPlayMusic ,点击安装,配置域名、端口等基本信息即可完成安装。
134
+ 3 . 安装完成后在应用商店中找到 YesPlayMusic ,点击安装,配置域名、端口等基本信息即可完成安装。
135
135
136
136
4 . 安装后在浏览器输入上一步骤设置的域名即可访问。
137
137
Original file line number Diff line number Diff line change 1
1
import { isAccountLoggedIn } from './auth' ;
2
2
import { refreshCookie } from '@/api/auth' ;
3
- import { dailySignin } from '@/api/user' ;
4
3
import dayjs from 'dayjs' ;
5
4
import store from '@/store' ;
6
5
@@ -110,12 +109,6 @@ export function dailyTask() {
110
109
value : dayjs ( ) . date ( ) ,
111
110
} ) ;
112
111
} ) ;
113
- dailySignin ( 0 ) . catch ( ( ) => {
114
- console . debug ( '[debug][common.js] 手机端重复签到' ) ;
115
- } ) ;
116
- dailySignin ( 1 ) . catch ( ( ) => {
117
- console . debug ( '[debug][common.js] PC端重复签到' ) ;
118
- } ) ;
119
112
}
120
113
}
121
114
You can’t perform that action at this time.
0 commit comments