File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ Project versioning adheres to [Semantic Versioning](http://semver.org/).
66Commit convention is based on [ Conventional Commits] ( http://conventionalcommits.org ) .
77Change log format is based on [ Keep a Changelog] ( http://keepachangelog.com/ ) .
88
9+ ## [ 1.22.3] ( https://github.com/lyswhut/lx-music-desktop/compare/v1.22.2...v1.22.3 ) - 2022-09-03
10+
11+ ### 修复
12+
13+ - 修复因音源的域名到期导致的音源失效的问题
14+
915## [ 1.22.2] ( https://github.com/lyswhut/lx-music-desktop/compare/v1.22.1...v1.22.2 ) - 2022-08-18
1016
1117### 优化
Original file line number Diff line number Diff line change 4949
5050### 提示 ` getaddrinfo EAI_AGAIN ... ` 或 ` 无法连接到服务器 `
5151
52- 尝试在在浏览器打开这个地址` http://ts.tempmusic .tk ` ,浏览器显示404是正常的,如果不是404那就证明所在网络无法访问接口服务器。
52+ 尝试在在浏览器打开这个地址` http://ts.tempmusics .tk ` ,浏览器显示404是正常的,如果不是404那就证明所在网络无法访问接口服务器。
5353若网页无法打开或打开来不是404,则可能是DNS的问题,可以尝试以下办法:
5454
55551 . 将DNS改成自动获取试试(注:改完可能需要清理下系统DNS缓存才生效)
68685 . 若还不行请到这个链接查看详情:< https://github.com/lyswhut/lx-music-desktop/issues/5 >
69696 . 若没有在第5条链接中的第一条评论中看到接口无法使用的说明,则应该是你网络无法访问接口服务器的问题,如果接口有问题我会在那里说明。
7070
71- 想要知道是不是自己网络的问题可以看看` http://ts.tempmusic .tk ` 能不能在浏览器打开,浏览器显示404是正常的,如果不是404那就证明所在网络无法访问接口服务器。
71+ 想要知道是不是自己网络的问题可以看看` http://ts.tempmusics .tk ` 能不能在浏览器打开,浏览器显示404是正常的,如果不是404那就证明所在网络无法访问接口服务器。
7272若网页无法打开或打来不是404,则应该是DNS的问题,可以尝试以下办法:
7373
74741 . 将DNS改成自动获取试试
178178
179179## 界面异常(界面显示不完整)
180180
181+ ### Windows 10、11界面异常、界面无法显示
182+
183+ 尝试添加运行参数 ` --disable-gpu-sandbox ` 启动,例如:` .\lx-music-desktop.exe --disable-gpu-sandbox ` ,添加方法可自行百度“给快捷方式加参数”。
184+
185+ 若以上方法无效,则尝试将 ` --disable-gpu-sandbox ` 逐个换成以下参数启动,直到恢复正常为止:
186+
187+ - ` --no-sandbox `
188+ - ` -dha `
189+ - ` --disable-gpu `
190+
191+ ::: caution
192+ 这些参数会禁用程序的某些安全特性或降低程序性能,没有遇到问题不要使用它们!
193+ :::
194+
195+ 对于界面无法显示,任务栏里也没看到图标,但是任务管理器里面看到进程的问题,还可尝试更换软件安装目录(对于安装版需要先卸载再换目录安装,绿色版直接剪切移动即可,只要目录换了就行),<br />
196+ 此方法的相关讨论看:< https://github.com/lyswhut/lx-music-desktop/issues/943#issuecomment-1217832186 >
197+
181198### Windows 7 下界面异常
182199
183200由于软件默认使用了透明窗口,根据Electron官方文档的[ 说明] ( https://www.electronjs.org/docs/latest/tutorial/window-customization#limitations ) :
Original file line number Diff line number Diff line change 11{
22 "name" : " lx-music-desktop" ,
3- "version" : " 1.22.2 " ,
3+ "version" : " 1.22.3 " ,
44 "description" : " 一个免费的音乐查找助手" ,
55 "main" : " ./dist/main.js" ,
66 "productName" : " lx-music-desktop" ,
Original file line number Diff line number Diff line change 1- ### 优化
2-
3- - 为tx、kw源添加 Flac 24bit 音质显示,注:由于之前没有记录此音质,所以之前收藏的歌曲信息中不包含它
4-
51### 修复
62
7- - 修复无法批量排序歌曲的问题
8- - 修复某些缺失的繁体中文翻译
9- - 修复企鹅音乐搜索失效的问题
10-
11- ### 其他
12-
13- - 降级electron到v15.5.7
3+ - 修复因音源的域名到期导致的音源失效的问题
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ const mutations = {
189189 state . sourceList [ source ] . total = 0
190190 state . sourceMaxPage [ source ] = 0
191191 }
192- state . list . length = [ ]
192+ state . list = [ ]
193193 state . page = 0
194194 state . allPage = 0
195195 state . total = 0
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import { dnsLookup } from '../utils'
55
66const api_test = {
77 getMusicUrl ( songInfo , type ) {
8- const requestObj = httpFetch ( `http://ts.tempmusic .tk/url/bd/${ songInfo . songmid } /${ type } ` , {
8+ const requestObj = httpFetch ( `http://ts.tempmusics .tk/url/bd/${ songInfo . songmid } /${ type } ` , {
99 method : 'get' ,
1010 timeout,
1111 headers,
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import { dnsLookup } from '../utils'
55
66const api_test = {
77 getMusicUrl ( songInfo , type ) {
8- const requestObj = httpFetch ( `http://ts.tempmusic .tk/url/kg/${ songInfo . _types [ type ] . hash } /${ type } ` , {
8+ const requestObj = httpFetch ( `http://ts.tempmusics .tk/url/kg/${ songInfo . _types [ type ] . hash } /${ type } ` , {
99 method : 'get' ,
1010 timeout,
1111 headers,
@@ -18,7 +18,7 @@ const api_test = {
1818 return requestObj
1919 } ,
2020 getPic ( songInfo ) {
21- const requestObj = httpFetch ( `http://ts.tempmusic .tk/pic/kg/${ songInfo . hash } ` , {
21+ const requestObj = httpFetch ( `http://ts.tempmusics .tk/pic/kg/${ songInfo . hash } ` , {
2222 method : 'get' ,
2323 timeout,
2424 headers,
@@ -30,7 +30,7 @@ const api_test = {
3030 return requestObj
3131 } ,
3232 getLyric ( songInfo ) {
33- const requestObj = httpFetch ( `http://ts.tempmusic .tk/lrc/kg/${ songInfo . hash } ` , {
33+ const requestObj = httpFetch ( `http://ts.tempmusics .tk/lrc/kg/${ songInfo . hash } ` , {
3434 method : 'get' ,
3535 timeout,
3636 headers,
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { dnsLookup } from '../utils'
44
55const api_temp = {
66 getMusicUrl ( songInfo , type ) {
7- const requestObj = httpFetch ( `http://tm.tempmusic .tk/url/kw/${ songInfo . songmid } /${ type } ` , {
7+ const requestObj = httpFetch ( `http://tm.tempmusics .tk/url/kw/${ songInfo . songmid } /${ type } ` , {
88 method : 'get' ,
99 headers,
1010 timeout,
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ const api_test = {
1616 // return requestObj
1717 // },
1818 getMusicUrl ( songInfo , type ) {
19- const requestObj = httpFetch ( `http://ts.tempmusic .tk/url/kw/${ songInfo . songmid } /${ type } ` , {
19+ const requestObj = httpFetch ( `http://ts.tempmusics .tk/url/kw/${ songInfo . songmid } /${ type } ` , {
2020 method : 'get' ,
2121 timeout,
2222 headers,
You can’t perform that action at this time.
0 commit comments