Skip to content

Commit

Permalink
v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phandasm committed May 31, 2022
1 parent 401e91e commit bac2aec
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 9 deletions.
5 changes: 5 additions & 0 deletions THANKS
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
These people have contributed to the development or maintenance of Waveform in some way.
If I have forgotten anyone or you would like to be attributed differently, open an issue or pull request.

Romain <https://github.com/rmnvgr>
神枪968 <https://github.com/GodGun968>
35 changes: 29 additions & 6 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
- Add experimental MacOS support (x64 CPUs only)
- Add Channel Spacing option in stereo mode
- Fix alpha overlap with rounded caps (except in radial mode)
- Add native support for Arm64 (aka 'Apple Silicon') based Macs
- Add Simplified Chinese localization (#14 thanks to [神枪968](https://github.com/GodGun968))
- Add option to roll-off the edges of the graph (#12)

## Installation
Note that on x86 Waveform requires an AVX capable CPU (all Intel and AMD since ~2011).

### Windows
Either
- Use the installer and select your OBS folder.
Expand All @@ -11,13 +13,34 @@ or

Both methods include 32-bit and 64-bit binaries.

### Linux (Ubuntu 20.04)
### Linux (Ubuntu 20.04, Flatpak)
<details>
<summary>Instructions</summary>

#### Prebuilt Binaries
- Extract Waveform\_v#.#.#\_Ubuntu\_x64.tar.gz to your `~/.config/obs-studio/plugins` folder.

#### Flatpak
- `flatpak install flathub com.obsproject.Studio.Plugins.waveform`

#### Source Build
- Step-by-step instructions in the [readme](https://github.com/phandasm/waveform/blob/master/README.md#linux-ubuntu-20043-lts).
</details>

### MacOS (10.13+ with x64 CPU only)
#### Prebuilt Binaries
### MacOS (10.13+)
<details>
<summary>Instructions</summary>

#### M1 (Arm) Macs
- Extract Waveform\_v#.#.#\_MacOS\_Arm64.zip to your `/Library/Application Support/obs-studio/plugins` folder.

#### Intel Macs
- Extract Waveform\_v#.#.#\_MacOS\_x64.zip to your `/Library/Application Support/obs-studio/plugins` folder.
</details>

### [OBS Music Edition 27.2.4 (x64)](https://github.com/pkviet/obs-studio/releases/tag/v27.2.4)
<details>
<summary>Instructions</summary>

- Extract for_OBS_ME_only.zip to the *root* of your OBS ME folder (e.g. `C:\Program Files\obs-studio-ME`).
</details>
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.3.0"
#define MyAppVersion "1.4.0"
#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.3.0"
#define VERSION_STRING "1.4.0"
2 changes: 1 addition & 1 deletion src/source.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ namespace callbacks {
obs_property_set_long_description(slope, T(P_SLOPE_DESC));
auto rolloff_q = obs_properties_add_float_slider(props, P_ROLLOFF_Q, T(P_ROLLOFF_Q), 0.0, 10.0, 0.01);
obs_property_set_long_description(rolloff_q, T(P_ROLLOFF_Q_DESC));
auto rolloff_rate = obs_properties_add_float_slider(props, P_ROLLOFF_RATE, T(P_ROLLOFF_RATE), 0.0, 60.0, 0.01);
auto rolloff_rate = obs_properties_add_float_slider(props, P_ROLLOFF_RATE, T(P_ROLLOFF_RATE), 0.0, 65.0, 0.01);
obs_property_set_long_description(rolloff_rate, T(P_ROLLOFF_RATE_DESC));
auto renderlist = obs_properties_add_list(props, P_RENDER_MODE, T(P_RENDER_MODE), OBS_COMBO_TYPE_LIST, OBS_COMBO_FORMAT_STRING);
obs_property_list_add_string(renderlist, T(P_LINE), P_LINE);
Expand Down

0 comments on commit bac2aec

Please sign in to comment.