Skip to content

Commit 0efd3d3

Browse files
committed
v1.6.0
1 parent 29d906a commit 0efd3d3

File tree

3 files changed

+12
-14
lines changed

3 files changed

+12
-14
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ include(CheckSymbolExists)
88

99
project(waveform)
1010

11-
set(WAVEFORM_VERSION "1.6.0-beta3")
11+
set(WAVEFORM_VERSION "1.6.0")
1212

1313
# set default install prefix to OBS plugin path on linux and MacOS
1414
# otherwise set it to the windows installer source folder

changelog.md

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,18 @@
11
# Notice to Intel Mac users
22
OBS requirement has been bumped to 28, please uninstall older versions of waveform first.
33

4-
## Beta 3 changes
5-
- Fix graph frozen after playback of media file finishes
6-
- Fix "Hide graph when audio is silent" option for level meters
7-
8-
## Beta 2 changes
9-
- Fix possible crash when using volume normalization or rolloff
10-
- Adjustments to mirror frequency axis option
11-
- Update Chinese localization (#32 thanks to GodGun968)
12-
13-
## Beta 1 changes
4+
## Changes in 1.6.0
145
- Add option to mirror frequency axis
15-
- Add option to adjust arc in radial mode
6+
- Add option to adjust arc angle in radial mode
167
- Add option for minimum bar height
8+
- Add option to adjust normalized volume target
9+
- Add "Single" channel mode to allow selection of specific audio channel
10+
- Fix some potential crashes
11+
- Fix graph frozen after playback of media file finishes
12+
- Fix "Hide graph when audio is silent" option for level meters
13+
- Update Chinese localization (#32, #38 thanks to GodGun968)
1714
- Improve rendering of curve graph in some cases
15+
- Performance improvements
1816

1917
## Installation
2018
### Windows
@@ -44,7 +42,7 @@ Note: Should work for most distros, but do not mix with the .deb package above.
4442
<summary>Click for instructions</summary>
4543

4644
#### Intel Macs
47-
- **Uninstall waveform versions prior to 1.6.0-beta3**
45+
- **Uninstall waveform versions prior to 1.6.0**
4846
- Download Waveform\_v#.#.#\_MacOS\_x86\_64.pkg and run it.
4947

5048
#### ARM64/Apple Silicon Macs

src/source.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1082,7 +1082,7 @@ void WAVSource::update(obs_data_t *settings)
10821082
const auto maxmod = (float)(num_mods - 1);
10831083
m_slope_modifiers.reset(membuf_alloc<float>(num_mods));
10841084
for(size_t i = 0; i < num_mods; ++i)
1085-
m_slope_modifiers[i] = log10(log_interp(10.0f, 10000.0f, ((float)i * m_slope) / maxmod));
1085+
m_slope_modifiers[i] = std::log10(log_interp(10.0f, 10000.0f, ((float)i * m_slope) / maxmod));
10861086

10871087
// rounded caps
10881088
m_cap_verts.clear();

0 commit comments

Comments
 (0)