Skip to content

Commit

Permalink
v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phandasm committed Feb 23, 2023
1 parent 29d906a commit 0efd3d3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ include(CheckSymbolExists)

project(waveform)

set(WAVEFORM_VERSION "1.6.0-beta3")
set(WAVEFORM_VERSION "1.6.0")

# set default install prefix to OBS plugin path on linux and MacOS
# otherwise set it to the windows installer source folder
Expand Down
22 changes: 10 additions & 12 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
# Notice to Intel Mac users
OBS requirement has been bumped to 28, please uninstall older versions of waveform first.

## Beta 3 changes
- Fix graph frozen after playback of media file finishes
- Fix "Hide graph when audio is silent" option for level meters

## Beta 2 changes
- Fix possible crash when using volume normalization or rolloff
- Adjustments to mirror frequency axis option
- Update Chinese localization (#32 thanks to GodGun968)

## Beta 1 changes
## Changes in 1.6.0
- Add option to mirror frequency axis
- Add option to adjust arc in radial mode
- Add option to adjust arc angle in radial mode
- Add option for minimum bar height
- Add option to adjust normalized volume target
- Add "Single" channel mode to allow selection of specific audio channel
- Fix some potential crashes
- Fix graph frozen after playback of media file finishes
- Fix "Hide graph when audio is silent" option for level meters
- Update Chinese localization (#32, #38 thanks to GodGun968)
- Improve rendering of curve graph in some cases
- Performance improvements

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

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

#### ARM64/Apple Silicon Macs
Expand Down
2 changes: 1 addition & 1 deletion src/source.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1082,7 +1082,7 @@ void WAVSource::update(obs_data_t *settings)
const auto maxmod = (float)(num_mods - 1);
m_slope_modifiers.reset(membuf_alloc<float>(num_mods));
for(size_t i = 0; i < num_mods; ++i)
m_slope_modifiers[i] = log10(log_interp(10.0f, 10000.0f, ((float)i * m_slope) / maxmod));
m_slope_modifiers[i] = std::log10(log_interp(10.0f, 10000.0f, ((float)i * m_slope) / maxmod));

// rounded caps
m_cap_verts.clear();
Expand Down

0 comments on commit 0efd3d3

Please sign in to comment.