Skip to content

Commit 1c4a56f

Browse files
committed
Merge branch 'dev'
2 parents c538e9c + 9c21e96 commit 1c4a56f

44 files changed

Lines changed: 2879 additions & 3423 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/beta-pack.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,14 @@ jobs:
5252
name: lx-music-desktop-x86-Setup
5353
path: build/* x86 Setup.exe
5454

55+
- name: Build Package Setup arm64
56+
run: npm run pack:win:setup:arm64
57+
- name: Upload Artifact Setup arm64
58+
uses: actions/upload-artifact@v2
59+
with:
60+
name: lx-music-desktop-arm64-Setup
61+
path: build/* arm64 Setup.exe
62+
5563
- name: Build Package Setup x86_64
5664
run: npm run pack:win:setup:x86_64
5765
- name: Upload Artifact Setup x86_64

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
run: |
4141
npm run publish:win:setup:x64:always
4242
npm run publish:win:setup:x86
43+
npm run publish:win:setup:arm64
4344
npm run publish:win:setup:x86_64
4445
npm run publish:win:7z:x64
4546
npm run publish:win:7z:x86

.vscode/settings.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,15 @@
55
"@lyric/*": "${workspaceFolder}/src/renderer-lyric/*",
66
"@static/*": "${workspaceFolder}/src/static/*",
77
"@common/*": "${workspaceFolder}/src/common/*",
8-
}
8+
},
9+
"i18n-ally.localesPaths": [
10+
"src/renderer/lang"
11+
],
12+
"i18n-ally.displayLanguage": "zh-cn",
13+
"i18n-ally.sourceLanguage": "zh-cn",
14+
"i18n-ally.namespace": true,
15+
"i18n-ally.translate.engines": ["google-cn", "google"],
16+
"i18n-ally.pathMatcher": "{locale}/{namespaces}.json",
17+
"i18n-ally.keystyle": "flat",
18+
"i18n-ally.sortKeys": true
919
}

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,35 @@ Project versioning adheres to [Semantic Versioning](http://semver.org/).
66
Commit convention is based on [Conventional Commits](http://conventionalcommits.org).
77
Change log format is based on [Keep a Changelog](http://keepachangelog.com/).
88

9+
## [1.11.0](https://github.com/lyswhut/lx-music-desktop/compare/v1.10.2...v1.11.0) - 2021-07-18
10+
11+
### 新增
12+
13+
- 添加 win arm64 架构的安装包构建
14+
- 新增“添加歌曲到列表时的位置”设置,可选项为列表的“顶部”与“底部”
15+
16+
### 优化
17+
18+
- 优化网络请求,尝试去解决无法连接服务器的问题
19+
- 优化mg源打开歌单的链接兼容
20+
21+
### 修复
22+
23+
- 修复mg源搜索失效的问题
24+
25+
### 移除
26+
27+
- 因wy源的歌单列表已没有“最新”排序的选项,所以现跟随移除wy源歌单列表按“最新”排序的按钮
28+
29+
### 变更
30+
31+
- 添加歌曲到列表时从原来的底部改为顶部,若你想要将你的列表歌曲顺序反转以适应这一变更,可先按住`shift`键的情况下点击列表的最后一首歌,然后再点击列表的第一首歌,完成倒序选中,最后随便右击列表的任意一首歌,在弹出的菜单中选择调整顺序,在弹出框输入1后确定即可反转列表。
32+
若你想要恢复原来的行为则可以去更改“添加歌曲到列表时的位置”设置项。
33+
34+
### 其他
35+
36+
- 更新electron到v13.1.7
37+
938
## [1.10.2](https://github.com/lyswhut/lx-music-desktop/compare/v1.10.1...v1.10.2) - 2021-05-25
1039

1140
### 修复

FAQ.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
尝试更换网络,如切换到移动网络,若移动网络还是不行则尝试开关下手机的飞行模式后再试,<br>
1414
若使用家庭网络的话,可尝试将光猫断电5分钟左右再通电联网后播放。
1515

16-
### 提示`getaddrinfo EAI_AGAIN ...`
16+
### 提示 `getaddrinfo EAI_AGAIN ...``无法连接到服务器`
1717

1818
尝试在在浏览器打开这个地址`http://ts.tempmusic.tk`,浏览器显示404是正常的,如果不是404那就证明所在网络无法访问接口服务器。
1919
若网页无法打开或打开来不是404,则可能是DNS的问题,可以尝试以下办法:
@@ -62,6 +62,8 @@
6262
对于分享出来的歌单,若打开失败,可尝试先在浏览器中打开后,再从浏览器地址栏复制URL地址到软件打开;<br>
6363
或者如果你知道歌单 id 也可以直接输入歌单 id 打开。<br>
6464

65+
注:网易源的“我喜欢”歌单无法在未登录的情况下打开,所以你需要手动创建一个歌单后将“我喜欢”里的歌曲移动到该歌单打开
66+
6567
## 界面异常(界面显示不完整)
6668

6769
### Windows 7 下界面异常

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
所用技术栈:
3838

39-
- Electron 12
39+
- Electron 13
4040
- Vue 2
4141

4242
已支持的平台:

build-config/css-loader.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const isDev = process.env.NODE_ENV === 'development'
22

33
module.exports = {
44
modules: {
5-
localIdentName: isDev ? '[folder]-[name]--[local]--[hash:base64:5]' : '[hash:base64:5]',
5+
localIdentName: isDev ? '[path][name]__[local]--[hash:base64:5]' : '[hash:base64:5]',
66
exportLocalsConvention: 'camelCase',
77
},
88
}

build-config/renderer-lyric/webpack.config.base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module.exports = {
1818
filename: '[name].js',
1919
libraryTarget: 'commonjs2',
2020
path: path.join(__dirname, '../../dist/electron'),
21-
publicPath: './',
21+
publicPath: 'auto',
2222
},
2323
resolve: {
2424
alias: {

build-config/renderer/webpack.config.base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module.exports = {
1818
filename: '[name].js',
1919
libraryTarget: 'commonjs2',
2020
path: path.join(__dirname, '../../dist/electron'),
21-
publicPath: './',
21+
publicPath: 'auto',
2222
},
2323
resolve: {
2424
alias: {

0 commit comments

Comments
 (0)