Skip to content

Commit

Permalink
Reverted font
Browse files Browse the repository at this point in the history
  • Loading branch information
MeijisIrlnd committed Dec 22, 2022
1 parent 3dbc4a9 commit b0d3aed
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions CommandLineDistortion.jucer
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
<JUCERPROJECT id="evfaQW" name="Transfer" projectType="audioplug" useAppConfig="0"
addUsingNamespaceToJuceHeader="0" displaySplashScreen="1" jucerFormatVersion="1"
pluginChannelConfigs="{1, 1}, {2, 2}" pluginName="Transfer" pluginManufacturer="Syl Morrison"
pluginDesc="KCU001" companyName="Syl Morrison" companyCopyright="KCU"
companyWebsite="https://kalidemusic.com" cppLanguageStandard="20"
pluginDesc="SM001" companyName="Syl Morrison" companyCopyright="KCU"
companyWebsite="https://meijisirlnd.github.io" cppLanguageStandard="20"
pluginCharacteristicsValue="pluginEditorRequiresKeys" pluginAUMainType="'aufx'"
pluginAUIsSandboxSafe="1">
pluginAUIsSandboxSafe="1" version="0.0.1" companyEmail="[email protected]">
<MAINGROUP id="q5aHrr" name="Transfer">
<GROUP id="{E1BD8A85-B738-0C04-A90A-6AD1615459FF}" name="Resources">
<FILE id="Bcejyy" name="agree-personal-use.regular.otf" compile="0"
Expand Down
4 changes: 2 additions & 2 deletions JuceLibraryCode/JuceHeader.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ namespace ProjectInfo
{
const char* const projectName = "Transfer";
const char* const companyName = "Syl Morrison";
const char* const versionString = "1.0.0";
const int versionNumber = 0x10000;
const char* const versionString = "0.0.1";
const int versionNumber = 0x1;
}
#endif
12 changes: 6 additions & 6 deletions JuceLibraryCode/JucePluginDefines.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,16 @@
#define JucePlugin_Name "Transfer"
#endif
#ifndef JucePlugin_Desc
#define JucePlugin_Desc "KCU001"
#define JucePlugin_Desc "SM001"
#endif
#ifndef JucePlugin_Manufacturer
#define JucePlugin_Manufacturer "Syl Morrison"
#endif
#ifndef JucePlugin_ManufacturerWebsite
#define JucePlugin_ManufacturerWebsite "https://kalidemusic.com"
#define JucePlugin_ManufacturerWebsite "https://meijisirlnd.github.io"
#endif
#ifndef JucePlugin_ManufacturerEmail
#define JucePlugin_ManufacturerEmail ""
#define JucePlugin_ManufacturerEmail "[email protected]"
#endif
#ifndef JucePlugin_ManufacturerCode
#define JucePlugin_ManufacturerCode 0x4d616e75
Expand All @@ -77,13 +77,13 @@
#define JucePlugin_EditorRequiresKeyboardFocus 1
#endif
#ifndef JucePlugin_Version
#define JucePlugin_Version 1.0.0
#define JucePlugin_Version 0.0.1
#endif
#ifndef JucePlugin_VersionCode
#define JucePlugin_VersionCode 0x10000
#define JucePlugin_VersionCode 0x1
#endif
#ifndef JucePlugin_VersionString
#define JucePlugin_VersionString "1.0.0"
#define JucePlugin_VersionString "0.0.1"
#endif
#ifndef JucePlugin_VSTUniqueID
#define JucePlugin_VSTUniqueID JucePlugin_PluginCode
Expand Down
4 changes: 2 additions & 2 deletions Source/UI/LF.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class LF : public juce::LookAndFeel_V4
juce::Font getComboBoxFont(juce::ComboBox& source) override { return font.withHeight(source.getHeight()); }
juce::Font getPopupMenuFont() override { return font; }
juce::Font& getFont() { return font; }

static inline juce::Font createFont() { return juce::Typeface::createSystemTypefaceFor(BinaryData::DroidSansMono_ttf, BinaryData::DroidSansMono_ttfSize); }
static inline void instantiateHorizontalSlider(juce::Component* parent, juce::Slider* s, juce::Label* l, const juce::String& labelText)
{
l->setJustificationType(juce::Justification::centredTop);
Expand All @@ -66,7 +66,7 @@ class TitleLF : public juce::LookAndFeel_V4

~TitleLF() override { }
juce::Font getLabelFont(juce::Label& label) override {
return juce::Font(juce::Typeface::createSystemTypefaceFor(BinaryData::WetdreamzmediumLYxZ_otf, BinaryData::WetdreamzmediumLYxZ_otfSize)).withHeight(label.getHeight());
return juce::Font(LF::createFont().withHeight(label.getHeight()));
}
};

Expand Down
Binary file added TransferIcon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b0d3aed

Please sign in to comment.