Skip to content

Commit bac2aec

Browse files
committed
v1.4.0
1 parent 401e91e commit bac2aec

File tree

5 files changed

+37
-9
lines changed

5 files changed

+37
-9
lines changed

THANKS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
These people have contributed to the development or maintenance of Waveform in some way.
2+
If I have forgotten anyone or you would like to be attributed differently, open an issue or pull request.
3+
4+
Romain <https://github.com/rmnvgr>
5+
神枪968 <https://github.com/GodGun968>

changelog.md

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

55
## Installation
6+
Note that on x86 Waveform requires an AVX capable CPU (all Intel and AMD since ~2011).
7+
68
### Windows
79
Either
810
- Use the installer and select your OBS folder.
@@ -11,13 +13,34 @@ or
1113

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

14-
### Linux (Ubuntu 20.04)
16+
### Linux (Ubuntu 20.04, Flatpak)
17+
<details>
18+
<summary>Instructions</summary>
19+
1520
#### Prebuilt Binaries
1621
- Extract Waveform\_v#.#.#\_Ubuntu\_x64.tar.gz to your `~/.config/obs-studio/plugins` folder.
1722

23+
#### Flatpak
24+
- `flatpak install flathub com.obsproject.Studio.Plugins.waveform`
25+
1826
#### Source Build
1927
- Step-by-step instructions in the [readme](https://github.com/phandasm/waveform/blob/master/README.md#linux-ubuntu-20043-lts).
28+
</details>
2029

21-
### MacOS (10.13+ with x64 CPU only)
22-
#### Prebuilt Binaries
30+
### MacOS (10.13+)
31+
<details>
32+
<summary>Instructions</summary>
33+
34+
#### M1 (Arm) Macs
35+
- Extract Waveform\_v#.#.#\_MacOS\_Arm64.zip to your `/Library/Application Support/obs-studio/plugins` folder.
36+
37+
#### Intel Macs
2338
- Extract Waveform\_v#.#.#\_MacOS\_x64.zip to your `/Library/Application Support/obs-studio/plugins` folder.
39+
</details>
40+
41+
### [OBS Music Edition 27.2.4 (x64)](https://github.com/pkviet/obs-studio/releases/tag/v27.2.4)
42+
<details>
43+
<summary>Instructions</summary>
44+
45+
- Extract for_OBS_ME_only.zip to the *root* of your OBS ME folder (e.g. `C:\Program Files\obs-studio-ME`).
46+
</details>

installer/installer.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "Waveform"
5-
#define MyAppVersion "1.3.0"
5+
#define MyAppVersion "1.4.0"
66
#define MyAppURL "https://github.com/phandasm/waveform"
77

88
[Setup]

src/module.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919

2020
#define MODULE_DISPLAY_NAME "Waveform Visualizer"
2121
#define MODULE_NAME "phandasm_waveform"
22-
#define VERSION_STRING "1.3.0"
22+
#define VERSION_STRING "1.4.0"

src/source.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ namespace callbacks {
325325
obs_property_set_long_description(slope, T(P_SLOPE_DESC));
326326
auto rolloff_q = obs_properties_add_float_slider(props, P_ROLLOFF_Q, T(P_ROLLOFF_Q), 0.0, 10.0, 0.01);
327327
obs_property_set_long_description(rolloff_q, T(P_ROLLOFF_Q_DESC));
328-
auto rolloff_rate = obs_properties_add_float_slider(props, P_ROLLOFF_RATE, T(P_ROLLOFF_RATE), 0.0, 60.0, 0.01);
328+
auto rolloff_rate = obs_properties_add_float_slider(props, P_ROLLOFF_RATE, T(P_ROLLOFF_RATE), 0.0, 65.0, 0.01);
329329
obs_property_set_long_description(rolloff_rate, T(P_ROLLOFF_RATE_DESC));
330330
auto renderlist = obs_properties_add_list(props, P_RENDER_MODE, T(P_RENDER_MODE), OBS_COMBO_TYPE_LIST, OBS_COMBO_FORMAT_STRING);
331331
obs_property_list_add_string(renderlist, T(P_LINE), P_LINE);

0 commit comments

Comments
 (0)