update dependency

This commit is contained in:
aynakeya
2024-09-21 20:14:52 -07:00
parent 0e4a429a19
commit a2420db1d9
5 changed files with 5 additions and 4 deletions

2
go.mod
View File

@@ -36,7 +36,7 @@ require (
require (
fyne.io/systray v1.11.0 // indirect
github.com/AynaLivePlayer/blivedm-go v0.0.0-20240427041017-949a66917a81 // indirect
github.com/AynaLivePlayer/blivedm-go v0.0.0-20240922031304-c497ed5617c4 // indirect
github.com/BurntSushi/toml v1.4.0 // indirect
github.com/PuerkitoBio/goquery v1.7.1 // indirect
github.com/XiaoMengXinX/Music163Api-Go v0.1.30 // indirect

View File

@@ -3,5 +3,5 @@ Artist: {{ .Current.Artist }}
Album: {{ .Current.Album}}
Username: {{ .Current.Username }}
Progress(in seconds): {{.CurrentTime.TotalSeconds}} / {{.TotalTime.TotalSeconds}}
Progress(in minutes:seconds): {{ .CurrentTime.Minutes}}:{{ .CurrentTime.Seconds}} / {{ .TotalTime.Minutes}}:{{ .TotalTime.Seconds}}
Progress(in minutes:seconds): {{printf "%02d" .CurrentTime.Minutes}}:{{printf "%02d" .CurrentTime.Seconds}} / {{printf "%02d" .TotalTime.Minutes}}:{{printf "%02d" .TotalTime.Seconds}}
Lyric: {{ .Lyric}}

View File

@@ -1,5 +1,5 @@
{{range .Playlist}}
Index: # {{ .Index}}
Index: #{{ .Index}}
Title: {{ .Title }}
Artist: {{ .Artist }}
Album: {{ .Album}}

View File

@@ -11,6 +11,7 @@
- 歌词event发送全部歌词前端处理不同版本
- optimize local music
- 从搜索里添加的歌不能被切
- 随机歌单
----