Skip to content

Commit

Permalink
v1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
phandasm committed Apr 4, 2022
1 parent 64a3b6e commit d32b5d3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
- Try to accomodate high channel count audio configurations
- Support more audio configurations
- Fix alignment when scaling bar graphs

<details>
<summary>Changes from 1.2.2</summary>
Expand Down
2 changes: 1 addition & 1 deletion installer/installer.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Waveform"
#define MyAppVersion "1.2.3-beta1"
#define MyAppVersion "1.2.3"
#define MyAppURL "https://github.com/phandasm/waveform"

[Setup]
Expand Down
2 changes: 1 addition & 1 deletion src/module.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@

#define MODULE_DISPLAY_NAME "Waveform Visualizer"
#define MODULE_NAME "phandasm_waveform"
#define VERSION_STRING "1.2.3-beta1"
#define VERSION_STRING "1.2.3"
2 changes: 1 addition & 1 deletion src/source.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1145,7 +1145,7 @@ void WAVSource::render_bars([[maybe_unused]] gs_effect_t *effect)

for(auto i = 0; i < m_num_bars; ++i)
{
auto x1 = (float)(i * bar_stride) + 0.5f;
auto x1 = (float)(i * bar_stride);
auto x2 = x1 + m_bar_width;
auto val = m_interp_bufs[channel][i];

Expand Down

0 comments on commit d32b5d3

Please sign in to comment.