mirror of
https://github.com/real-zony/ZonyLrcToolsX.git
synced 2025-07-01 20:30:41 +00:00
fix: Fixed the issue of incorrect file extension preventing file search.
This commit is contained in:
parent
a46abba2f9
commit
2f2e67f3e6
@ -41,7 +41,7 @@ namespace ZonyLrcTools.Cli.Commands.SubCommand
|
||||
{
|
||||
_logger.LogInformation("开始扫描文件夹,请稍等...");
|
||||
|
||||
var files = (await _fileScanner.ScanAsync(Source, DecryptoFactory.KnownExtensions))
|
||||
var files = (await _fileScanner.ScanAsync(Source, DecryptoFactory.KnownExtensions.Select(x => $"*{x}")))
|
||||
.SelectMany(f => f.FilePaths)
|
||||
.ToList();
|
||||
|
||||
|
@ -3,6 +3,9 @@ New Features:
|
||||
- CLI 提供了一个更新检查功能,在程序启动的时候会检测最新的版本。
|
||||
- 支持从酷我音乐搜索歌词。
|
||||
|
||||
Breaking Changes: None
|
||||
Enhancement:
|
||||
Fixed Bugs: None
|
||||
Breaking Changes: None
|
||||
Enhancement:
|
||||
- 基于 MusicDecrypto 提供歌曲解密功能,支持 40 种格式的文件,具体支持格式请自己尝试。
|
||||
|
||||
Fixed Bugs:
|
||||
- None
|
Loading…
x
Reference in New Issue
Block a user