Skip to content

Commit

Permalink
bump: version 0.2.0 → 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hanxi committed Jul 14, 2024
1 parent 90b0fec commit 40fee48
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 3 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
## v0.3.0 (2024-07-14)

### Feat

- 建议音乐目录和配置目录分开不同目录
- 优化后台网络设置,同时支持ipv4和ipv6
- 使用fastapi替换flask,解决多线程问题
- #106 网页上显示音箱当前状态(播放中or空闲中)以及当前的播放模式
- 优化首页加载慢的问题
- 优化设置页面布局,方便配置必须项
- 优化配置界面,支持配置分组
- 支持多设备分开播放 see #65

### Fix

- #114 修复部分 mp3 文件长度识别错误
- 删除 armv6 的支持
- 修复编译问题
- 修复音乐路径设置后找不到音乐的问题
- 修复启动报错的问题
- 修复CI警告问题

## v0.2.0 (2024-07-09)

### Feat
Expand Down
5 changes: 5 additions & 0 deletions newpatch.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

cz bump --check-consistency --increment patch

git push -u origin main --tags
2 changes: 1 addition & 1 deletion newversion.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash

cz bump --check-consistency --increment patch
cz bump --check-consistency

git push -u origin main --tags
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "xiaomusic"
version = "0.2.0"
version = "0.3.0"
description = "Play Music with xiaomi AI speaker"
authors = [
{name = "涵曦", email = "im.hanxi@gmail.com"},
Expand Down
2 changes: 1 addition & 1 deletion xiaomusic/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.0"
__version__ = "0.3.0"

0 comments on commit 40fee48

Please sign in to comment.