Skip to content

Commit 7ea7e9c

Browse files
committed
Update docs and version number for 0.7.2 release
1 parent 31b50aa commit 7ea7e9c

File tree

5 files changed

+37
-4
lines changed

5 files changed

+37
-4
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
Version 0.7.2
2+
3+
* Binaural monitoring axis inversion controls - closes [#177](https://github.com/ebu/ear-production-suite/issues/177)
4+
* Save binaural monitoring config to file - closes [#182](https://github.com/ebu/ear-production-suite/issues/182)
5+
* Patch JUCE so Windows can detect failure to open UDP port - closes [#169](https://github.com/ebu/ear-production-suite/issues/169)
6+
* Don't crash if binaural monitoring plugin receives 0.6.0 metadata - closes [#180](https://github.com/ebu/ear-production-suite/issues/180)
7+
* Fix potential race condition in weak pointer usage [#181](https://github.com/ebu/ear-production-suite/issues/181)
8+
* Use mono mix for export waveform display, hide channel selection in export dialog [#185](https://github.com/ebu/ear-production-suite/pull/185)
9+
* Disable renderers when exporting to ADM for improved export speed [#185](https://github.com/ebu/ear-production-suite/pull/185)
10+
* Fix resolution of overlapping routings from HOA input plugin [#191](https://github.com/ebu/ear-production-suite/issues/191)
11+
* Pushed custom libadm changes upstream and updated submodule [#189](https://github.com/ebu/ear-production-suite/pull/189)
12+
113
Version 0.7.1
214

315
* Updated JUCE framework to 6.1.5 [#171](https://github.com/ebu/ear-production-suite/pull/171), fixes arm64/macos crash on unhandled keydown events [#174](https://github.com/ebu/ear-production-suite/issues/174)

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set(CMAKE_CXX_STANDARD 17)
33
set(CMAKE_CXX_STANDARD_REQUIRED ON)
44
set(CMAKE_CXX_EXTENSIONS OFF)
55

6-
set(EPS_VERSION_BASE 0.7.1) # This is used as fallback if getting from git fails. Must be only numeric.
6+
set(EPS_VERSION_BASE 0.7.2) # This is used as fallback if getting from git fails. Must be only numeric.
77
# NOTE: also update hard-coded version number in
88
# - vcpkg.json
99

@@ -62,4 +62,4 @@ option(EPS_QUIET "Disable output of configuration summary" OFF)
6262
if(NOT EPS_QUIET)
6363
message(STATUS "\n")
6464
feature_summary(WHAT ALL)
65-
endif()
65+
endif()

packaging/README.md.in

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,33 @@ Please download the files from there. The EAR Production Suite (EPS) download bu
99
- REAPER session template
1010

1111
## Release notes
12+
0.7.2 Adds the following features:
13+
14+
### Binaural rendering
15+
* Inversion controls for head tracking axis - This is to improve compatibility with head tracking devices.
16+
* Configuration persistence - these new settings are saved globally to avoid having to configure your device per session.
17+
18+
### Performance
19+
* Improved ADM export performance by disabling renderers while export is taking place.
20+
21+
### Bug fixes
22+
See detailed changelog below.
23+
24+
### Known issues
25+
We are aware of a problem that impacts the import or reloading of large projects. This bug can cause crashes, or result in inputs that appear as 'unnamed' in the Scene plugin and fail to render.
26+
27+
We have identified and resolved this issue, but it required a fairly major internal restructure. This is now being tested and we hope to release the fix as 0.7.3.
28+
1229
Please note that the EPS currently outputs ADM using egocentric, polar coordinates and conforming to the [EBU Broadcast Production Profile](https://tech.ebu.ch/publications/tech3392).
1330
While the EPS can import files that have been authored using the [Dolby Atmos ADM](https://professionalsupport.dolby.com/s/article/Dolby-Atmos-ADM-Profile-specification?language=en_US) profile, coordinates and directspeakers pack formats are converted on import and exported files will no longer conform to this profile.
1431

1532
To fix a problem using the plugins with some hosts, the ID for all plugins changed with the 0.7.0 release.
1633
This change will break any projects that use the 0.6.0 plugins. See tools/upgrade_project to upgrade existing REAPER projects.
1734

35+
For an up to date list of known issues, please refer to [GitHub](https://github.com/ebu/ear-production-suite/issues)
36+
37+
### Changes
38+
1839
@CHANGELOG@
1940

2041
### 0.6.0

packaging/README.pdf

2.95 KB
Binary file not shown.

vcpkg.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg/master/scripts/vcpkg.schema.json",
33
"name": "ear-production-suite",
4-
"version": "0.7.1",
4+
"version": "0.7.2",
55
"dependencies": [
66
"protobuf",
77
"nng",
@@ -28,4 +28,4 @@
2828
"boost-uuid",
2929
"boost-variant"
3030
]
31-
}
31+
}

0 commit comments

Comments
 (0)