Skip to content

Commit

Permalink
Merge pull request #289 from RyanMetcalfeInt8/rdmetca/component_updat…
Browse files Browse the repository at this point in the history
…es_for_r3.3

Updates for v2.6.3-R3.3
  • Loading branch information
RyanMetcalfeInt8 authored Sep 9, 2024
2 parents 0db808b + c21ab3b commit 2bb34c0
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
17 changes: 16 additions & 1 deletion tools/windows/package.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
@echo off
setlocal

IF NOT EXIST env.bat (
echo env.bat is not set. Exiting.
exit /b 1
)

call env.bat

IF "%BUILD_FOLDER%"=="" (
echo BUILD_FOLDER is not set. Exiting.
exit /b
Expand Down Expand Up @@ -52,6 +59,14 @@ iscc /O+ %audacity_ai_plugins_iss_path% ^
/DOPENCL_SDK_DIR=%OPENCL_SDK_DIR% ^
/O%BUILD_FOLDER% ^
/Faudacity-win-%AI_PLUGIN_VERSION%-64bit-OpenVINO-AI-Plugins
:: Get date and time in YYYYMMDD_HHMMSS format
set "datestamp=%DATE:~-4%%DATE:~4,2%%DATE:~7,2%"
set "timestamp=%TIME:~0,2%%TIME:~3,2%%TIME:~6,2%"
set "timestamp=%timestamp: =0%"

rename audacity-win-%AI_PLUGIN_VERSION%-64bit-OpenVINO-AI-Plugins.exe audacity-win-%AI_PLUGIN_VERSION%-64bit-OpenVINO-AI-Plugins-%datestamp%_%timestamp%.exe

echo Done! Generated %cd%\audacity-win-%AI_PLUGIN_VERSION%-64bit-OpenVINO-AI-Plugins-%datestamp%_%timestamp%.exe

endlocal
2 changes: 1 addition & 1 deletion tools/windows/prereq.bat
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ set OPENCL_SDK_256SUM=11844a1d69a71f82dc14ce66382c6b9fc8a4aee5840c21a786c5accb1d
:: GIT Repo Configuration ::
:::::::::::::::::::::::::::::
set AUDACITY_REPO_CLONE_URL=https://github.com/audacity/audacity.git
set AUDACITY_REPO_CHECKOUT=release-3.6.2
set AUDACITY_REPO_CHECKOUT=release-3.6.3

set WHISPERCPP_REPO_CLONE_URL=https://github.com/ggerganov/whisper.cpp
set WHISPERCPP_REPO_CHECKOUT=v1.6.0
Expand Down
2 changes: 1 addition & 1 deletion tools/windows/set_env.bat
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ set AUDACITY_BUILD_LEVEL=2
set AUDACITY_BUILD_CONFIG=RelWithDebInfo

:: The version that we will pass to inno setup as the app version.
set AI_PLUGIN_VERSION=v3.6.2-R3.2
set AI_PLUGIN_VERSION=v3.6.3-R3.3

set AI_PLUGIN_REPO_SOURCE_FOLDER=%bat_path%\..\..\
echo AI_PLUGIN_REPO_SOURCE_FOLDER=%AI_PLUGIN_REPO_SOURCE_FOLDER%
Expand Down

0 comments on commit 2bb34c0

Please sign in to comment.