Skip to content

Commit

Permalink
Updated copyright string
Browse files Browse the repository at this point in the history
  • Loading branch information
apohl79 committed May 3, 2022
1 parent 705eedd commit 52d3a6c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Plugin/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ macro(ag_add_plugin type)
PLUGIN_NAME "${pluginname}"
PRODUCT_NAME "${productname}"
COMPANY_NAME "e47"
COMPANY_COPYRIGHT "2021 Andreas Pohl"
COMPANY_COPYRIGHT "2020-2022 Andreas Pohl"
COMPANY_WEBSITE "https://www.audiogridder.com"
DESCRIPTION "${pluginname}"
PLUGIN_MANUFACTURER_CODE XE47
Expand Down
2 changes: 1 addition & 1 deletion Server/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ juce_add_gui_app(AudioGridderServer
VERSION "${AG_VERSION}"
PRODUCT_NAME "AudioGridderServer"
COMPANY_NAME "e47"
COMPANY_COPYRIGHT "2021 Andreas Pohl"
COMPANY_COPYRIGHT "2020-2022 Andreas Pohl"
COMPANY_WEBSITE "https://www.audiogridder.com"
PLUGINHOST_AU TRUE
ICON_BIG "${AG_ICON_BIG}"
Expand Down
8 changes: 4 additions & 4 deletions Server/Source/MenuBarWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ MenuBarWindow::MenuBarWindow(App* app)
app->hideSplashWindow();
});
#ifdef JUCE_WINDOWS
String info = L"\xa9 2020-2021 Andreas Pohl, https://audiogridder.com";
String info = L"\xa9 2020-2022 Andreas Pohl, https://audiogridder.com";
#else
String info = L"© 2020-2021 Andreas Pohl, https://audiogridder.com";
String info = L"© 2020-2022 Andreas Pohl, https://audiogridder.com";
#endif
app->setSplashInfo(info);
});
Expand Down Expand Up @@ -65,9 +65,9 @@ void MenuBarWindow::mouseUp(const MouseEvent& /* event */) {
m_app->hideSplashWindow();
});
#ifdef JUCE_WINDOWS
String info = L"\xa9 2020-2021 Andreas Pohl, https://audiogridder.com";
String info = L"\xa9 2020-2022 Andreas Pohl, https://audiogridder.com";
#else
String info = L"© 2020-2021 Andreas Pohl, https://audiogridder.com";
String info = L"© 2020-2022 Andreas Pohl, https://audiogridder.com";
#endif
m_app->setSplashInfo(info);
});
Expand Down

0 comments on commit 52d3a6c

Please sign in to comment.