mirror of
https://github.com/real-zony/ZonyLrcToolsX.git
synced 2025-07-02 05:10:42 +00:00
Merge pull request #147 from travislee89/dev
Support for more file extensions; Building arm64 binaries
This commit is contained in:
commit
4c3d554885
@ -4,6 +4,9 @@ globalOption:
|
|||||||
- '*.mp3'
|
- '*.mp3'
|
||||||
- '*.flac'
|
- '*.flac'
|
||||||
- '*.wav'
|
- '*.wav'
|
||||||
|
- '*.m4a'
|
||||||
|
- '*.ogg'
|
||||||
|
- '*.opus'
|
||||||
# 网络代理服务设置,仅支持 HTTP 代理。
|
# 网络代理服务设置,仅支持 HTTP 代理。
|
||||||
networkOptions:
|
networkOptions:
|
||||||
isEnable: false # 是否启用代理。
|
isEnable: false # 是否启用代理。
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
$Platforms = @('win-x64', 'linux-x64', 'osx-x64')
|
$Platforms = @('win-x64', 'linux-x64', 'osx-x64', 'win-arm64', 'linux-arm64', 'osx-arm64')
|
||||||
|
|
||||||
if (-not (Test-Path ./TempFiles)) {
|
if (-not (Test-Path ./TempFiles)) {
|
||||||
New-Item -ItemType Directory -Path ./TempFiles | Out-Null
|
New-Item -ItemType Directory -Path ./TempFiles | Out-Null
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
Platforms=('win-x64' 'linux-x64' 'osx-x64')
|
Platforms=('win-x64' 'linux-x64' 'osx-x64' 'win-arm64' 'linux-arm64' 'osx-arm64')
|
||||||
|
|
||||||
if ! [ -d './TempFiles' ];
|
if ! [ -d './TempFiles' ];
|
||||||
then
|
then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user