You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Made Xnote function less prominent visible in the application.
Changed some text to amke it more clear for users what Xnote does.
Added a link to the website I introduced.
Hi Jan
I'll be happy to publish new beta releases regularly.
Feel free to increase the size of the About box to allow you to put your text and link into it.
XNote Reference check: that would be great.
Maybe only show the XNote settings info in the CamStudio Recorder display area if XNote/MotionControl are connected? The less people have to try and figure out, the better ;o)
Cheers
Nick :o)
Copy file name to clipboardExpand all lines: CamStudio/Recorder/Profile.h
+21-8Lines changed: 21 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -199,6 +199,7 @@ enum eLegacySettings
199
199
200
200
// XNote
201
201
, XNOTEANNOTATION
202
+
, XNOTEREMOTECONTROL
202
203
, XNOTECAMERADELAYINMILLISEC
203
204
, XNOTEDISPLAYCAMERADELAY
204
205
, XNOTERECORDDURATIONLIMITINMILLISEC
@@ -1048,34 +1049,38 @@ struct sXNoteOpts
1048
1049
// settings here are the ones that are initially used for dialog screen..!
1049
1050
sXNoteOpts()
1050
1051
#ifdef CAMSTUDIO4XNOTE
1051
-
: m_bAnnotation(true) // True, because I did not managed to read info from config
1052
+
: m_bAnnotation(true) // True, because I did not managed to read info from config
1053
+
, m_bXnoteRemoteControlMode(true) // Default On: We want that externals as Xnote and Video motion alerts are recognoized by Camstudio.
1052
1054
#else
1053
-
: m_bAnnotation(false) // False, default as it should be with stand Camstudio
1055
+
: m_bAnnotation(false) // False, default as it should be with stand Camstudio
1056
+
, m_bXnoteRemoteControlMode(false) // Default Off: Minimize the Xnote effects in standard Camstudio
1054
1057
#endif
1055
1058
, m_taXNote(BOTTOM_LEFT)
1056
1059
, m_bXnoteDisplayCameraDelayMode(true) // Default On: Show used delay in capture
1057
-
, m_ulXnoteCameraDelayInMilliSec(175UL) // Average delay, default 175 ms
1060
+
, m_ulXnoteCameraDelayInMilliSec(175UL) // Average delay, default 175 ms
1058
1061
, m_cXnoteDisplayFormatString("(0000)..00:00:00.000") // Default (Delay) hh:mm:ss.ttt, Not really a format. As long as the timer is not running this will be showed
1059
1062
, m_bXnoteRecordDurationLimitMode(true) // Default On: Show used delay in capture
1060
1063
, m_ulXnoteRecordDurationLimitInMilliSec(1750UL) // Average recording duration, default 1750 ms. Required otherwise recording lenght is zero
1061
-
, m_ulStartXnoteTickCounter(0) // A non persistent member
1062
-
, m_ulSnapXnoteTickCounter(0) // A non persistent member
1063
-
, m_cSnapXnoteTimesString("") // A non persistent member
1064
+
, m_ulStartXnoteTickCounter(0) // A non persistent member
1065
+
, m_ulSnapXnoteTickCounter(0) // A non persistent member
1066
+
, m_cSnapXnoteTimesString("") // A non persistent member
1064
1067
{
1065
1068
}
1066
1069
sXNoteOpts(constsXNoteOpts& rhs)
1067
1070
// copy ala sVideoOpts
1068
1071
#ifdef CAMSTUDIO4XNOTE
1069
1072
: m_bAnnotation(true) // True, because I did not managed to read info from config
1073
+
, m_bXnoteRemoteControlMode(true) // Default On: We want that externals as Xnote and Video motion alerts are recognoized by Camstudio.
1070
1074
#else
1071
1075
: m_bAnnotation(false) // False, default as it should be with stand Camstudio
1076
+
, m_bXnoteRemoteControlMode(false) // Default Off: Minimize the Xnote effects in standard Camstudio
1072
1077
#endif
1073
1078
, m_taXNote(BOTTOM_LEFT)
1074
-
, m_bXnoteDisplayCameraDelayMode(true) // Default On: Show used delay in capture
1079
+
, m_bXnoteDisplayCameraDelayMode(true) // Default On: Show used delay in capture
1075
1080
, m_ulXnoteCameraDelayInMilliSec(175UL) // Average delay, default 175 ms
1076
1081
, m_cXnoteDisplayFormatString("(0000)..00:00:00.000") // Default hh:mm:ss.ttt, Not really a format. As long as the timer is not running this will be showed
1077
1082
, m_bXnoteRecordDurationLimitMode(true) // Default On: Show used delay in capture
1078
-
, m_ulXnoteRecordDurationLimitInMilliSec(1750UL) // Average recordin duration, default 1750 ms
1083
+
, m_ulXnoteRecordDurationLimitInMilliSec(1750UL) // Average recordin duration, default 1750 ms
1079
1084
, m_ulStartXnoteTickCounter(0UL) // A non persistent member
1080
1085
, m_ulSnapXnoteTickCounter(0UL) // A non persistent member
1081
1086
, m_cSnapXnoteTimesString("") // A non persistent member
0 commit comments