Skip to content

Commit

Permalink
发布v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lyswhut committed Mar 26, 2023
1 parent 8f67eed commit 5a7e0ff
Show file tree
Hide file tree
Showing 4 changed files with 112 additions and 5 deletions.
55 changes: 55 additions & 0 deletions CHANGELOG.md
Expand Up @@ -6,6 +6,61 @@ Project versioning adheres to [Semantic Versioning](http://semver.org/).
Commit convention is based on [Conventional Commits](http://conventionalcommits.org).
Change log format is based on [Keep a Changelog](http://keepachangelog.com/).

## [1.0.0](https://github.com/lyswhut/lx-music-mobile/compare/v0.15.5...v1.0.0) - 2023-03-26

从v1.0.0起,我们发布了一个独立版的[数据同步服务](https://github.com/lyswhut/lx-music-sync-server#readme),如果你有服务器,可以将其部署到服务器上作为私人多端同步服务使用,详情看该项目说明

由于该版本涉及旧版数据迁移,建议更新前先到设置-备份与恢复备份歌单

### 不兼容性变更说明

- 同步功能,该功能不支持与PC端v2.2.0之前的版本使用

### 新增

- 新增聚合搜索,注:由于这个方式需要对各个源的结果进行排序,所以需要以“歌曲名 歌手”的顺序输入(例如:突然的自我 伍佰),否则排序后的结果可能不是你想要的
- 新增歌单搜索功能
- 新增热门搜索显示,默认关闭,需要到设置-搜索设置开启
- 新增搜索历史记录,默认关闭,需要到设置-搜索设置开启
- 启动软件时自动回到上次的界面,例如上次退出软件时在我的收藏,下次启动软件时会自动进入我的收藏
- 新增PC端所拥有的内置皮肤
- 新增界面字体大小设置
- 新增播放器音量大小设置,可以去播放详情页-播放器设置-音量大小更改
- 新增播放器播放速率设置,可以去播放详情页-播放器设置-播放速率更改
- 新增播放详情页歌词对齐方式设置,可以去播放详情页-播放器设置-歌词对齐方式更改
- 新增是否在左侧导航栏显示返回桌面按钮设置,默认关闭,可以去设置-基本设置-是否显示返回桌面按钮开启
- 新增是否在左侧导航栏显示退出应用按钮设置,默认关闭,可以去设置-基本设置-是否显示退出应用按钮开启
- 支持wy源flac hires歌曲类型的显示
- 添加kg源评论图片展示(@helloplhm-qwq
- 支持kg源搜索列表、排行榜flac hires歌曲类型的显示(@helloplhm-qwq, @Folltoshe

### 优化(界面/交互/功能)

- 调整了首页的界面布局
- 优化大屏幕下的字体大小及界面布局显示
- 支持wy源flac hires歌曲类型的显示
- 优化列表数据导入导出的性能,现在进行这些操作应该可以一下子完成且不会再冻结UI了
- 支持kg源搜索列表flac hires歌曲类型的显示(@helloplhm-qwq

### 优化(程序)

- 优化程序启动性能,优化与程序交互的流畅度
- 重构整个程序,重新梳理了程序逻辑,使其更容易扩展及维护,将大部分代码从JavaScript迁移到TypeScript
- 重写配置管理、列表管理功能,使其与PC端同步,更容易复用PC端的代码

### 修复

- 修复使用酷狗码无法打开某些类型的歌单的问题
- 修复tx源某些歌单无法打开的问题

### 变更

- 原来播放详情页的歌词字体大小设置改为播放器设置

### 其他

- 升级React Native到v0.71.4

## [0.15.5](https://github.com/lyswhut/lx-music-mobile/compare/v0.15.4...v0.15.5) - 2023-01-02

### 修复
Expand Down
55 changes: 53 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "lx-music-mobile",
"version": "1.0.0-beta.17",
"versionCode": 53,
"version": "1.0.0",
"versionCode": 54,
"private": true,
"scripts": {
"dev": "react-native run-android --active-arch-only",
Expand Down Expand Up @@ -74,6 +74,7 @@
"@types/react-native-background-timer": "^2.0.0",
"@types/react-native-vector-icons": "^6.4.13",
"babel-plugin-module-resolver": "^5.0.0",
"changelog-parser": "^3.0.1",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
Expand Down

0 comments on commit 5a7e0ff

Please sign in to comment.