Skip to content

Commit

Permalink
update header
Browse files Browse the repository at this point in the history
  • Loading branch information
jerryuhoo committed May 25, 2024
1 parent 2edf560 commit 8d87bf3
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Source/GUI/InterfaceDefines.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@

#pragma once

#include "../../JuceLibraryCode/JucePluginDefines.h"
//#include "../../JuceLibraryCode/JucePluginDefines.h"

#define VERSION JucePlugin_VersionString
#define VERSION "1.0.1"
#define GITHUB_LINK "https://github.com/jerryuhoo/Fire"
#define GITHUB_TAG_LINK "https://github.com/jerryuhoo/Fire/releases/tag/"
#define PRESET_EXETENSION ".fire"
Expand Down
1 change: 1 addition & 0 deletions Source/Panels/SpectrogramPanel/FFTProcessor.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*/

#pragma once
#include "juce_dsp/juce_dsp.h"

class SpectrumProcessor
{
Expand Down
1 change: 1 addition & 0 deletions Source/Panels/TopPanel/Preset.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#define STATE_H_INCLUDED

#include "juce_gui_basics/juce_gui_basics.h"
#include "juce_audio_processors/juce_audio_processors.h"
#include "../../GUI/LookAndFeel.h"
#include "../../Utility/VersionInfo.h"
#include "../../GUI/InterfaceDefines.h"
Expand Down
1 change: 1 addition & 0 deletions Source/PluginEditor.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

#pragma once

#include "BinaryData.h"
#include "GUI/LookAndFeel.h"
#include "Panels/ControlPanel/Graph Components/Oscilloscope.h"
#include "Panels/ControlPanel/Graph Components/DistortionGraph.h"
Expand Down
1 change: 1 addition & 0 deletions Source/Utility/AudioHelpers.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*/

#pragma once
#include "juce_dsp/juce_dsp.h"

static inline float dBToNormalizedGain(float inValue)
{
Expand Down
2 changes: 1 addition & 1 deletion Source/Utility/VersionInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ bool VersionInfo::isNewerVersionThanCurrent()
{
jassert (versionString.isNotEmpty());

auto currentTokens = juce::StringArray::fromTokens (ProjectInfo::versionString, ".", {});
auto currentTokens = juce::StringArray::fromTokens (VERSION, ".", {});
auto thisTokens = juce::StringArray::fromTokens (versionString, ".", {});

jassert (thisTokens.size() == 3);
Expand Down
2 changes: 1 addition & 1 deletion Source/Utility/VersionInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

#pragma once
#include "juce_core/juce_core.h"
#include "JuceHeader.h"
#include "../GUI/InterfaceDefines.h"

//==============================================================================
class VersionInfo
Expand Down

0 comments on commit 8d87bf3

Please sign in to comment.