From d32b5d39da1cab97a4d8b6c5e6c5fa8dbf865113 Mon Sep 17 00:00:00 2001 From: phandasm Date: Mon, 4 Apr 2022 12:27:29 -0700 Subject: [PATCH] v1.2.3 --- changelog.md | 3 ++- installer/installer.iss | 2 +- src/module.hpp | 2 +- src/source.cpp | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/changelog.md b/changelog.md index da704fb..8148751 100644 --- a/changelog.md +++ b/changelog.md @@ -1,4 +1,5 @@ -- Try to accomodate high channel count audio configurations +- Support more audio configurations +- Fix alignment when scaling bar graphs
Changes from 1.2.2 diff --git a/installer/installer.iss b/installer/installer.iss index 9527ce4..34271f6 100644 --- a/installer/installer.iss +++ b/installer/installer.iss @@ -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] diff --git a/src/module.hpp b/src/module.hpp index 1d8412f..1858596 100644 --- a/src/module.hpp +++ b/src/module.hpp @@ -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" diff --git a/src/source.cpp b/src/source.cpp index 158ddae..1db39d6 100644 --- a/src/source.cpp +++ b/src/source.cpp @@ -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];