From f5998d91b1d935abafea37d5e36445f41699b491 Mon Sep 17 00:00:00 2001 From: Zhennan Tu Date: Wed, 20 Mar 2024 00:42:50 +0800 Subject: [PATCH] Update version v0.3.5 => v0.3.6; Update rtc v0.7.4 => v0.7.5 --- app/app.rc | 4 ++-- build.ps1 | 2 +- build.sh | 2 +- lanthing/lanthing.rc | 4 ++-- options-default.cmake | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/app/app.rc b/app/app.rc index cf5c1c04..b44841f8 100644 --- a/app/app.rc +++ b/app/app.rc @@ -1,5 +1,5 @@ -#define LT_VERSION 0,3,5 -#define LT_VERSION_STR "0.3.5" +#define LT_VERSION 0,3,6 +#define LT_VERSION_STR "0.3.6" #include "winres.h" diff --git a/build.ps1 b/build.ps1 index 33168f51..06d1cc1d 100644 --- a/build.ps1 +++ b/build.ps1 @@ -40,7 +40,7 @@ function check_build_type() { } function rtc_fetch() { - $RtcUri = "https://github.com/numbaa/rtc-prebuilt/releases/download/v0.7.4/rtc.win.zip" + $RtcUri = "https://github.com/numbaa/rtc-prebuilt/releases/download/v0.7.5/rtc.win.zip" New-Item -ItemType Directory -ErrorAction SilentlyContinue transport/rtc/win echo "Fetch $RtcUri" Invoke-WebRequest -Uri $RtcUri -OutFile ./third_party/prebuilt/rtc.win.zip diff --git a/build.sh b/build.sh index fef17751..c04b3f38 100644 --- a/build.sh +++ b/build.sh @@ -37,7 +37,7 @@ check_build_type() { } rtc_fetch() { - rtc_url="https://github.com/numbaa/rtc-prebuilt/releases/download/v0.7.4/rtc.linux.zip" + rtc_url="https://github.com/numbaa/rtc-prebuilt/releases/download/v0.7.5/rtc.linux.zip" mkdir -p ./transport/rtc/linux echo "Fetch $rtc_url" wget $rtc_url -O ./third_party/prebuilt/rtc.linux.zip diff --git a/lanthing/lanthing.rc b/lanthing/lanthing.rc index cbc0fb47..07a9d18e 100644 --- a/lanthing/lanthing.rc +++ b/lanthing/lanthing.rc @@ -1,5 +1,5 @@ -#define LT_VERSION 0,3,5 -#define LT_VERSION_STR "0.3.5" +#define LT_VERSION 0,3,6 +#define LT_VERSION_STR "0.3.6" #include "winres.h" diff --git a/options-default.cmake b/options-default.cmake index ec2f6b5f..cfa5775b 100644 --- a/options-default.cmake +++ b/options-default.cmake @@ -18,4 +18,4 @@ option(LT_DUMP OFF) set(LT_DUMP_URL "dont_upload" CACHE STRING "") set(LT_VERSION_MAJOR 0) set(LT_VERSION_MINOR 3) -set(LT_VERSION_PATCH 5) +set(LT_VERSION_PATCH 6)