Skip to content

Commit 6368cdc

Browse files
committed
Preparation for 2.5.9 release.
1 parent 706666f commit 6368cdc

File tree

6 files changed

+32
-11
lines changed

6 files changed

+32
-11
lines changed

Build/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ set ( FAUSTLIVE_SRC ${FAUSTLIVE_SRC} ${AUDIO_SRC})
210210
set ( FAUSTLIVE_HEADERS ${FAUSTLIVE_HEADERS} ${AUDIO_HEADERS})
211211

212212
set (INCLUDE_DIRS ${FAUSTLIVE_INCLUDE_DIRS} ${QTINCDIRS} ${FAUST_INCLUDE_DIRS})
213-
set (FAUSTLIVE_DEFINITIONS ${FAUSTLIVE_DEFINITIONS} -DVERSION="${VERSION}" -DAPP_VERSION="2.2" -DHTTPCTRL -DQRCODECTRL ${LLVM_DEFINES})
213+
set (FAUSTLIVE_DEFINITIONS ${FAUSTLIVE_DEFINITIONS} -DVERSION="${VERSION}" -DAPP_VERSION="2.3" -DHTTPCTRL -DQRCODECTRL ${LLVM_DEFINES})
214214
set (FAUSTLIVE_LIBRARIES ${FAUSTLIVE_LIBRARIES} ${FAUST_LIBRARIES} ${QTLIBS} ${LLVM_LIBRARIES} ${LIBMICROHPPTD_LIBRARIES})
215215
#message ("FAUSTLIVE_LIBRARIES ${FAUSTLIVE_LIBRARIES}")
216216

Build/README.html

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,18 @@
2828
### Limitations and known bugs
2929

3030
- crashes on Windows when compiling a dsp with input signals, on a machine without input audio device
31-
- 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`
31+
- 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`
3232

3333
## Building
3434

35-
To build the FaustLive project, go to the `build` folder and start with the README file.
35+
### Versionning
36+
37+
- use the *version* script to raise the version number, like `./version 2.5.8`.
38+
- manually raise the `APP_VERSION` flag in Build/CMakeLists.txt (line 213)
39+
40+
### Application building
41+
42+
To build the FaustLive project, go to the `Build` folder and start with the README file.
3643

3744
<!--p align="center">
3845
<img width="70" src="./Resources/FaustLiveIcon.png"> <br />
@@ -44,6 +51,13 @@
4451
<br /><br />
4552
###Change log
4653

54+
----------------------------------------------------
55+
03/23/2022: version 2.5.9
56+
57+
- integrates Faust compiler version 2.40.4
58+
- based on LLVM 14.0.1 on and OS X and 10.0.0 on Windows
59+
- latest version of the Faust libraries
60+
4761
----------------------------------------------------
4862
03/22/2022: version 2.5.8
4963

Build/rsrc/FaustLive.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ END
5050
//
5151

5252
VS_VERSION_INFO VERSIONINFO
53-
FILEVERSION 2,5,8,0
54-
PRODUCTVERSION 2,5,8,0
53+
FILEVERSION 2,5,9,0
54+
PRODUCTVERSION 2,5,9,0
5555
FILEFLAGSMASK 0x17L
5656
#ifdef _DEBUG
5757
FILEFLAGS 0x1L
@@ -67,12 +67,12 @@ BEGIN
6767
BLOCK "040c04b0"
6868
BEGIN
6969
VALUE "FileDescription", "Faust Live Environment"
70-
VALUE "FileVersion", "2, 5, 8, 0"
70+
VALUE "FileVersion", "2, 5, 9, 0"
7171
VALUE "InternalName", "FaustLive"
7272
VALUE "LegalCopyright", "Copyright (C) 2009-2021 - Grame"
7373
VALUE "OriginalFilename", "FaustLive.exe"
7474
VALUE "ProductName", "FaustLive"
75-
VALUE "ProductVersion", "2, 5, 8, 0"
75+
VALUE "ProductVersion", "2, 5, 9, 0"
7676
END
7777
END
7878
BLOCK "VarFileInfo"

Build/rsrc/FaustLiveInfo.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@
3737
<key>CFBundleLongVersionString</key>
3838
<string></string>
3939
<key>CFBundleShortVersionString</key>
40-
<string>2.5.8</string>
40+
<string>2.5.9</string>
4141
<key>CFBundleVersion</key>
42-
<string>2.5.8</string>
42+
<string>2.5.9</string>
4343
<key>NSMicrophoneUsageDescription</key>
4444
<string>FaustLive input signal</string>
4545
<key>NSHumanReadableCopyright</key>

changelog.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,14 @@
44
GRAME - Centre National de Creation Musicale
55
http://www.grame.fr
66
====================================================
7-
Copyright GRAME (c) 2014-2021
7+
Copyright GRAME (c) 2014-2022
8+
9+
----------------------------------------------------
10+
03/23/2022: version 2.5.9
11+
12+
- integrates Faust compiler version 2.40.4
13+
- based on LLVM 14.0.1 on and OS X and 10.0.0 on Windows
14+
- latest version of the Faust libraries
815

916
----------------------------------------------------
1017
03/22/2022: version 2.5.8

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.5.8
1+
2.5.9

0 commit comments

Comments
 (0)