From 6368cdc6d6925a173085549811ea52a672446e2f Mon Sep 17 00:00:00 2001 From: Stephane Letz Date: Sun, 24 Apr 2022 19:20:52 +0200 Subject: [PATCH] Preparation for 2.5.9 release. --- Build/CMakeLists.txt | 2 +- Build/README.html | 18 ++++++++++++++++-- Build/rsrc/FaustLive.rc | 8 ++++---- Build/rsrc/FaustLiveInfo.plist | 4 ++-- changelog.txt | 9 ++++++++- version.txt | 2 +- 6 files changed, 32 insertions(+), 11 deletions(-) diff --git a/Build/CMakeLists.txt b/Build/CMakeLists.txt index ea0f3e9..315332c 100644 --- a/Build/CMakeLists.txt +++ b/Build/CMakeLists.txt @@ -210,7 +210,7 @@ set ( FAUSTLIVE_SRC ${FAUSTLIVE_SRC} ${AUDIO_SRC}) set ( FAUSTLIVE_HEADERS ${FAUSTLIVE_HEADERS} ${AUDIO_HEADERS}) set (INCLUDE_DIRS ${FAUSTLIVE_INCLUDE_DIRS} ${QTINCDIRS} ${FAUST_INCLUDE_DIRS}) -set (FAUSTLIVE_DEFINITIONS ${FAUSTLIVE_DEFINITIONS} -DVERSION="${VERSION}" -DAPP_VERSION="2.2" -DHTTPCTRL -DQRCODECTRL ${LLVM_DEFINES}) +set (FAUSTLIVE_DEFINITIONS ${FAUSTLIVE_DEFINITIONS} -DVERSION="${VERSION}" -DAPP_VERSION="2.3" -DHTTPCTRL -DQRCODECTRL ${LLVM_DEFINES}) set (FAUSTLIVE_LIBRARIES ${FAUSTLIVE_LIBRARIES} ${FAUST_LIBRARIES} ${QTLIBS} ${LLVM_LIBRARIES} ${LIBMICROHPPTD_LIBRARIES}) #message ("FAUSTLIVE_LIBRARIES ${FAUSTLIVE_LIBRARIES}") diff --git a/Build/README.html b/Build/README.html index e688ec5..e311a95 100644 --- a/Build/README.html +++ b/Build/README.html @@ -28,11 +28,18 @@ ### Limitations and known bugs - crashes on Windows when compiling a dsp with input signals, on a machine without input audio device - - may crash on startup due to incorrect cache. In this case, find the `FaustLive-CurrentSession-2.0` folder in your home folder, remove it and restart. On Unix like stations (Linux, MacOS), this folder is hidden and located at `$HOME/.FaustLive-CurrentSession-2.0` + - may crash on startup due to incorrect cache. In this case, find the `FaustLive-CurrentSession-2.XX` folder in your home folder, remove it and restart. On Unix like stations (Linux, MacOS), this folder is hidden and located at `$HOME/.FaustLive-CurrentSession-2.XX` ## Building -To build the FaustLive project, go to the `build` folder and start with the README file. +### Versionning + +- use the *version* script to raise the version number, like `./version 2.5.8`. +- manually raise the `APP_VERSION` flag in Build/CMakeLists.txt (line 213) + +### Application building + +To build the FaustLive project, go to the `Build` folder and start with the README file.