We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21cf9aa commit 0e08a65Copy full SHA for 0e08a65
source/interface_derived.cpp
@@ -221,12 +221,14 @@ void MainFrameDerived::Filter(wxKeyEvent &){
221
LoadProjects(filter);
222
}
223
224
+#define BUILD_YEAR (__DATE__ + 7)
225
+
226
//definitions for the events
227
void MainFrameDerived::OnAbout(wxCommandEvent& event)
228
{
229
wxAboutDialogInfo aboutInfo;
230
aboutInfo.SetName("Unity Hub Native");
- aboutInfo.SetCopyright("(C) Ravbug 2023");
231
+ aboutInfo.SetCopyright(fmt::format("(C) Ravbug {}",BUILD_YEAR));
232
aboutInfo.SetDescription("Developed with wxWidgets in C++");
233
#if defined __linux__
234
aboutInfo.SetWebSite("https://github.com/ravbug/UnityHubNative");
0 commit comments