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
New command line option -show for showing the interface, enabling triggers with the ShowInterface action, and showing the system tray icon. New command line option -hide for hiding the interface, disabling triggers with the ShowInterface action, and hiding the system tray icon. The application will no longer appear in Alt+Tab when interface is hidden.</value>
133
+
You can now do a "No Match" when comparing the provided text with the active window title. This comes with its own Trigger Action (Set Active Window Title As No Match) and command line option (-activeWindowTitleNoMatch).</value>
2.3.6.3 No Match option implemented for Active Window Title. Fixed visibility bug when no Triggers are available on startup.
137
138
2.3.6.2 New command line options -show and -hide. The application will no longer appear in Alt+Tab when interface is hidden.
138
139
2.3.6.1 Fix to Keyboard Shortcuts. Changed default trigger for closing window so interface will now hide on closing window instead of exiting to keep application running in system tray until Exit is selected from system tray icon menu.
/// Regex for parsing the -activeWindowTitleMatch command.
146
+
/// </summary>
147
+
internalconststringREGEX_COMMAND_LINE_ACTIVE_WINDOW_TITLE_MATCH="^-activeWindowTitleMatch=(?<ActiveWindowTitleMatch>.+)$";// The command line option -activeWindowTitleMatch is the same as -activeWindowTitle (to maintain backwards compatibility with previous versions since -activeWindowTitle is the old command line option)
148
+
149
+
/// <summary>
150
+
/// Regex for parsing the -activeWindowTitleNoMatch command.
Copy file name to clipboardExpand all lines: interface/main/FormMain-Help.cs
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,8 @@ private void LoadHelpTips()
54
54
_toolTip.SetToolTip(comboBoxFilterType,"Choose a type of filter. This could be a label or the title of an active window from an application that was captured during a session");
55
55
_toolTip.SetToolTip(comboBoxFilterValue,"Select a filter value based on the chosen filter type. This will show you what days in the calendar are associated with the filter value");
56
56
_toolTip.SetToolTip(buttonRefreshFilterValues,"Click this button to refresh the list of filter values");
57
-
_toolTip.SetToolTip(checkBoxActiveWindowTitle,"You can specify what text should be used for comparing with the title of the active window");
57
+
_toolTip.SetToolTip(checkBoxActiveWindowTitleComparisonCheck,"Compare the given text with the title of the active window and they should match");
58
+
_toolTip.SetToolTip(checkBoxActiveWindowTitleComparisonCheckReverse,"Compare the given text with the title of the active window and they should not match");
58
59
_toolTip.SetToolTip(radioButtonCaseSensitiveMatch,"The text comparison will be case sensitive so the active window title will need to match exactly with each lowercase and uppercase character");
59
60
_toolTip.SetToolTip(radioButtonCaseInsensitiveMatch,"The text comparison will be case insensitive so the active window title can contain a mixture of lowercase and uppercase characters");
60
61
_toolTip.SetToolTip(radioButtonRegularExpressionMatch,"The text comparison will match with the regular expression pattern entered in the above text input field");
0 commit comments