Skip to content

Commit 3f27edc

Browse files
committed
Add DEV info to window
1 parent 636ff38 commit 3f27edc

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

SDRunoPlugin_CloudMarkers.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
<FunctionLevelLinking>true</FunctionLevelLinking>
113113
<IntrinsicFunctions>true</IntrinsicFunctions>
114114
<SDLCheck>true</SDLCheck>
115-
<PreprocessorDefinitions>_SILENCE_EXPERIMENTAL_FILESYSTEM_DEPRECATION_WARNING;WIN32;NDEBUG;SDRUNOPLUGINANNOTATIONMANAGER_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
115+
<PreprocessorDefinitions>CLOUDMARKER_RELEASE;_SILENCE_EXPERIMENTAL_FILESYSTEM_DEPRECATION_WARNING;WIN32;NDEBUG;SDRUNOPLUGINANNOTATIONMANAGER_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
116116
<ConformanceMode>false</ConformanceMode>
117117
<PrecompiledHeader>NotUsing</PrecompiledHeader>
118118
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>

Ui/Window.cpp

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,15 +233,20 @@ void Window::createForm()
233233
lblVersion.transparent(true);
234234
lblVersion.typeface(fontSmall);
235235
lblVersion.fgcolor(color_rgb(0xaaaaaa));
236-
lblVersion.caption("www.markers.cloud\nVersion 0.0.1");
236+
237+
#ifndef CLOUDMARKER_RELEASE
238+
lblVersion.caption("www.markers.cloud\nVersion 0.0.2 DEV");
239+
#else
240+
lblVersion.caption("www.markers.cloud\nVersion 0.0.2");
241+
#endif
237242

238243
// Right Column
239244

240245
label lblMCommentC(*m_form, rectangle(formWidth / 2, 280, contentWidth, 10));
241246
lblMCommentC.transparent(true);
242247
lblMCommentC.typeface(fontTitle);
243248
lblMCommentC.fgcolor(color_rgb(0x777777));
244-
lblMCommentC.caption("COMMENTS");
249+
lblMCommentC.caption("DESCRIPTION");
245250

246251
m_lblMComment = new label(*m_form, rectangle(formWidth / 2, 290, contentWidth, 125), false);
247252
m_lblMComment->transparent(true);

0 commit comments

Comments
 (0)