Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
7f1c954
Merge pull request #8 from LMMS/master
LostRobotMusic Jun 21, 2019
0bb50a8
Merge pull request #11 from LMMS/master
LostRobotMusic Aug 7, 2019
a332d47
Merge pull request #12 from LMMS/master
LostRobotMusic Aug 30, 2019
5f0aacc
Merge pull request #13 from LMMS/master
LostRobotMusic Sep 4, 2019
6f4afb1
Add Phaser effect, upgrade Flanger effect
LostRobotMusic Sep 4, 2019
b41a6a9
Resolve code/style reviews
LostRobotMusic Sep 4, 2019
b9d1b45
Resolve code/style reviews, don't calulate LFO rate every loop
LostRobotMusic Sep 4, 2019
9a8fdfa
Rename Phaser.cpp and Phaser.h to PhaserEffect.cpp and PhaserEffect.h
LostRobotMusic Sep 4, 2019
4e1ba1d
Remove unnecessary Phaser disconnection
LostRobotMusic Sep 5, 2019
b7dd6d1
Fix Phaser artwork LFO font
LostRobotMusic Sep 5, 2019
779d1b5
Merge branch 'master' into phaser
LostRobotMusic Nov 24, 2019
bd9ee92
Add Phaser to plugin list
LostRobotMusic Nov 24, 2019
8534cab
Add many enhancements for the Phaser effect
LostRobotMusic Feb 17, 2020
34221f3
Fix stuff
LostRobotMusic Feb 17, 2020
ed7c1b2
Fix stuff 2: Electric Boogaloo
LostRobotMusic Feb 17, 2020
b467652
Fix stuff 3: No joke here
LostRobotMusic Feb 17, 2020
47e6f6a
Resolve code and style reviews
LostRobotMusic Feb 26, 2020
185ce06
Resolve more code and style reviews
LostRobotMusic Apr 18, 2020
fbd62a6
Input follower range buff
LostRobotMusic May 17, 2020
81bbf89
Make LFO Rate logarithmic by default
LostRobotMusic May 17, 2020
df143d1
Remove RMS from input follower
LostRobotMusic Oct 26, 2020
c5ce560
Fix compilation complaints
LostRobotMusic Oct 26, 2020
6b97fb5
Major update
LostRobotMusic Dec 11, 2020
9e9a824
Fix stuffs
LostRobotMusic Dec 15, 2020
9cd0ecf
Fix more stuffs
LostRobotMusic Dec 15, 2020
801acf4
Add Input Follower enable button
LostRobotMusic Dec 16, 2020
3211fe6
Initialize QuadratureLfo's frequency and phase in constructor
LostRobotMusic Dec 16, 2020
ab2dee9
Why is it called oven when you of in the cold food of out hot eat the…
LostRobotMusic Jan 15, 2021
b4bac58
Revert one of the modes to its original naming, due to very high demand.
LostRobotMusic Feb 25, 2021
e597a2c
Fix merge conflicts with Flanger upgrade PR
LostRobotMusic Mar 25, 2021
f436816
Continue running Phaser while LFO is disabled
LostRobotMusic Mar 25, 2021
f679542
Fix inaccurate comment
LostRobotMusic Mar 25, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove unnecessary Phaser disconnection
  • Loading branch information
LostRobotMusic committed Sep 5, 2019
commit 4e1ba1db0c63c3a7f29da2f7453090b22b54cd67
2 changes: 1 addition & 1 deletion plugins/Phaser/PhaserControls.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ PhaserControls::PhaserControls( PhaserEffect* effect ) :

PhaserControls::~PhaserControls()
{
disconnect( gui->mainWindow(), SIGNAL( periodicUpdate() ), 0, 0 );
}


void PhaserControls::saveSettings( QDomDocument& doc, QDomElement& _this )
{
m_cutoffModel.saveSettings( doc, _this, "cutoff" );
Expand Down