发布v1.4.0

This commit is contained in:
lyswhut 2024-06-01 12:11:11 +08:00
parent 154a6ca062
commit 797ef64e74
5 changed files with 444 additions and 271 deletions

View File

@ -6,6 +6,28 @@ Project versioning adheres to [Semantic Versioning](http://semver.org/).
Commit convention is based on [Conventional Commits](http://conventionalcommits.org). Commit convention is based on [Conventional Commits](http://conventionalcommits.org).
Change log format is based on [Keep a Changelog](http://keepachangelog.com/). Change log format is based on [Keep a Changelog](http://keepachangelog.com/).
## [1.4.0](https://github.com/lyswhut/lx-music-mobile/compare/v1.3.0...v1.4.0) - 2024-06-01
我们发布了关于 LX Music 项目发展调整与新项目计划的说明,
详情看: https://github.com/lyswhut/lx-music-desktop/issues/1912
### 新增
- 新增 设置-基本设置-启动后打开播放详情界面 设置,默认关闭(#502 @mingcc7
### 修复
- 修复重复的数据初始化调用
- 修复导入歌单时可能会导致歌单数据存储异常的问题(#500
### 变更
- 设置-播放设置-优先播放320k音质选项改为“优先播放的音质”允许选择更高优先播放的音质如果歌曲及音源支持的话#487
### 其他
- 更新 React native 到 v0.73.8
## [1.3.0](https://github.com/lyswhut/lx-music-mobile/compare/v1.2.0...v1.3.0) - 2024-04-14 ## [1.3.0](https://github.com/lyswhut/lx-music-mobile/compare/v1.2.0...v1.3.0) - 2024-04-14
### 新增 ### 新增

684
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "lx-music-mobile", "name": "lx-music-mobile",
"version": "1.4.0-beta.1", "version": "1.4.0",
"versionCode": 65, "versionCode": 65,
"private": true, "private": true,
"scripts": { "scripts": {
@ -85,7 +85,7 @@
"changelog-parser": "^3.0.1", "changelog-parser": "^3.0.1",
"eslint-config-standard": "^17.1.0", "eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^43.0.1", "eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-react": "^7.34.1", "eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2", "eslint-plugin-react-hooks": "^4.6.2",
"typescript": "^5.4.5" "typescript": "^5.4.5"
} }

View File

@ -1,3 +1,6 @@
我们发布了关于 LX Music 项目发展调整与新项目计划的说明,
详情看: https://github.com/lyswhut/lx-music-desktop/issues/1912
### 新增 ### 新增
- 新增 设置-基本设置-启动后打开播放详情界面 设置,默认关闭(#502 @mingcc7 - 新增 设置-基本设置-启动后打开播放详情界面 设置,默认关闭(#502 @mingcc7

File diff suppressed because one or more lines are too long