diff --git a/README.md b/README.md index 3b11f52..c4dafa0 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ ## m3u8d 一款m3u8下载工具 * 提供windows图形界面(Qt), mac\linux命令行, linux支持arm和386 * 使用ffmpeg转换格式为mp4 -* windows自带GUI界面的版本下载: [m3u8d_qt_v1.3_windows_amd64.exe](https://github.com/orestonce/m3u8d/releases/download/v1.3/m3u8d_qt_v1.3_windows_amd64.exe): +* windows自带GUI界面的版本下载: [m3u8d_qt_v1.4_windows_amd64.exe](https://github.com/orestonce/m3u8d/releases/download/v1.4/m3u8d_qt_v1.4_windows_amd64.exe): ![](m3u8d-qt/screenshot.png) * 全部版本下载, 包括windows图形界面/linux命令行/mac命令行: https://github.com/orestonce/m3u8d/releases diff --git a/export/main.go b/export/main.go index 28c7852..a3f2718 100644 --- a/export/main.go +++ b/export/main.go @@ -10,7 +10,7 @@ import ( ) func main() { - //BuildCliBinary() // 编译二进制 + BuildCliBinary() // 编译二进制 CreateLibForQtUi() // 创建Qt需要使用的.a库文件 } @@ -39,7 +39,7 @@ func BuildCliBinary() { }, } for _, cfg := range list { - name := "m3u8d_cli_v1.3_" + cfg.GOOS + "_" + cfg.GOARCH + cfg.Ext + name := "m3u8d_cli_v1.4_" + cfg.GOOS + "_" + cfg.GOARCH + cfg.Ext cmd := exec.Command("go", "build", "-o", filepath.Join(wd, "bin", name)) cmd.Dir = filepath.Join(wd, "cmd") cmd.Env = append(os.Environ(), "GOOS="+cfg.GOOS) diff --git a/m3u8d-qt/mainwindow.ui b/m3u8d-qt/mainwindow.ui index 2c38bf0..a07c9e4 100644 --- a/m3u8d-qt/mainwindow.ui +++ b/m3u8d-qt/mainwindow.ui @@ -70,7 +70,7 @@ 40 - 40 + 20 diff --git a/m3u8d-qt/screenshot.png b/m3u8d-qt/screenshot.png index 280ab05..8c7ba67 100644 Binary files a/m3u8d-qt/screenshot.png and b/m3u8d-qt/screenshot.png differ