Skip to content

Commit

Permalink
Update logo everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
timothyschoen committed Nov 2, 2022
1 parent 76a18ff commit a6dd28f
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 6 deletions.
Binary file modified .github/.DS_Store
Binary file not shown.
10 changes: 8 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,13 @@ set(PLUGDATA_VERSION "0.6.2")
set(PLUGDATA_COMPANY_NAME "PlugData")
set(PLUGDATA_COMPANY_COPYRIGHT "PlugData by Timothy Schoen")
set(PLUGDATA_COMPANY_WEBSITE "github.com/timothyschoen/plugdata")
set(PLUGDATA_ICON_BIG "${CMAKE_CURRENT_SOURCE_DIR}/Resources/plugd_logo.png")

if(APPLE)
set(PLUGDATA_ICON_BIG "${CMAKE_CURRENT_SOURCE_DIR}/Resources/plugdata_logo_mac.png")
else()
set(PLUGDATA_ICON_BIG "${CMAKE_CURRENT_SOURCE_DIR}/Resources/plugdata_logo.png")
endif()

set(PLUGDATA_PLUGINS_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/Plugins")


Expand Down Expand Up @@ -281,7 +287,7 @@ file(GLOB PlugDataBinaryDataSources
${CMAKE_CURRENT_SOURCE_DIR}/Resources/InterBold.ttf
${CMAKE_CURRENT_SOURCE_DIR}/Resources/InterThin.ttf
${CMAKE_CURRENT_SOURCE_DIR}/Resources/IBMPlexMono.ttf
${CMAKE_CURRENT_SOURCE_DIR}/Resources/plugd_logo.png
${CMAKE_CURRENT_SOURCE_DIR}/Resources/plugdata_logo.png
${CMAKE_CURRENT_SOURCE_DIR}/Resources/Filesystem.zip
)

Expand Down
Binary file modified Resources/Icon.icns
Binary file not shown.
Binary file removed Resources/plugd_logo.png
Binary file not shown.
Binary file added Resources/plugdata_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/plugdata_logo_mac.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
8 changes: 4 additions & 4 deletions Source/Dialogs/SettingsDialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,8 @@ EXTERN char* pd_version;

struct AboutPanel : public Component {

Image logo = ImageFileFormat::loadFrom(BinaryData::plugd_logo_png, BinaryData::plugd_logo_pngSize);

Image logo = ImageFileFormat::loadFrom(BinaryData::plugdata_logo_png, BinaryData::plugdata_logo_pngSize);
void paint(Graphics& g) override
{
g.setFont(30);
Expand All @@ -205,11 +205,11 @@ struct AboutPanel : public Component {
g.drawFittedText("Inter font by Rasmus Andersson", 150, 210, getWidth() - 150, 50, Justification::left, 2);
g.drawFittedText("Made with JUCE", 150, 230, getWidth() - 150, 50, Justification::left, 2);

g.drawFittedText("Special thanks to: Deskew Technologies, ludnny, kreth608, Joshua A.C. Newman, QuevasMz, chee, polarity, CyrCom and emptyvesselnz for supporting this project", 150, 270, getWidth() - 200, 80, Justification::left, 3);
g.drawFittedText("Special thanks to: Deskew Technologies, ludnny, kreth608, Joshua A.C. Newman, QuevasMz, chee, polarity, CyrCom, emptyvesselnz, grabanton, daniellumertz and vasilymilovidov for supporting this project", 150, 270, getWidth() - 200, 80, Justification::left, 3);

g.drawFittedText("This program is published under the terms of the GPL3 license", 150, 340, getWidth() - 150, 50, Justification::left, 2);

Rectangle<float> logoBounds = { 10.0f, 20.0f, 128, 128 };
Rectangle<float> logoBounds = { 20.0f, 20.0f, 110, 110 };

g.drawImage(logo, logoBounds);
}
Expand Down

0 comments on commit a6dd28f

Please sign in to comment.