Skip to content

Commit e717c77

Browse files
committed
Rename "Advanced" settings to "Window Detection Settings"
1 parent beb7b63 commit e717c77

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

ReadMe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ You can also customize how often the alerts should trigger again if the Outlook
3434
### Older versions of Outlook
3535

3636
Recent versions of Outlook have the text `Reminder(s)` in the reminders window that pops up.
37-
If you are using an older version of Outlook, or want to use this app to monitor a different application, you can change the `Window title text to match against` and `Outlook process name` in the settings.
38-
The alerts will trigger whenever a window with the specified text in it's title is open, and it belongs to a process with the matching process name.
37+
If you are using an older version of Outlook, or want to use this app to monitor a different application, you can adjust the `Window Detection Settings`.
38+
The alerts will trigger whenever a window whose title contains the specified text is open, and it belongs to a process with the matching process name.
3939

4040
## How To Run The App
4141

src/NotifyWhenMicrosoftOutlookReminderWindowIsOpen.ahk

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
;==========================================================
44
; Constant Variables
55
;==========================================================
6-
ApplicationVersionNumber := "v1.1.0"
6+
ApplicationVersionNumber := "v1.1.1"
77
AppResourcesDirectoryPath := A_ScriptDir . "\NotifyWhenMicrosoftOutlookReminderWindowIsOpenResources"
88
AppTrayIconFilePath := AppResourcesDirectoryPath . "\AppIcon.ico" ; Define where to unpack the mouse cursor image file to.
99
MouseCursorImageFilePath := AppResourcesDirectoryPath . "\MouseCursor.ani" ; Define where to unpack the mouse cursor image file to.
@@ -31,8 +31,8 @@ Settings.MillisecondsToShowTransparentWindowAlertFor := { Value: 3000, Category:
3131
Settings.SecondsBeforeAlertsAreReTriggeredWhenOutlookRemindersWindowIsStillOpen := { Value: 30, Category: "General" }
3232
Settings.EnsureOutlookRemindersWindowIsRestored := { Value: true, Category: "Outlook Reminders Window" }
3333
Settings.EnsureOutlookRemindersWindowIsAlwaysOnTop := { Value: true, Category: "Outlook Reminders Window" }
34-
Settings.OutlookRemindersWindowTitleTextToMatch := { Value: "Reminder(s)", Category: "Advanced" }
35-
Settings.OutlookProcessName := { Value: "Outlook.exe", Category: "Advanced" }
34+
Settings.OutlookRemindersWindowTitleTextToMatch := { Value: "Reminder(s)", Category: "Window Detection" }
35+
Settings.OutlookProcessName := { Value: "Outlook.exe", Category: "Window Detection" }
3636
Settings := LoadSettingsFromFileIfExistsOrCreateFile(SettingsFilePath, Settings)
3737

3838
;==========================================================
@@ -424,7 +424,7 @@ ShowSettingsWindow(settingsFilePathParameter, settingsParameter, applicationVers
424424
Gui, Add, Edit, x+5
425425
Gui, Add, UpDown, yp+25 x20 vmillisecondsToShowTransparentWindowAlertFor Range1-60000 Disabled%transparentWindowAlertsAreDisabled%, %millisecondsToShowTransparentWindowAlertFor%
426426

427-
Gui, Add ,GroupBox, x10 w525 r3, Advanced:
427+
Gui, Add ,GroupBox, x10 w525 r3, Window Detection Settings:
428428
Gui, Add, Text, yp+25 x20, Window title text to match against (default is "Reminder(s)"):
429429
Gui, Add, Edit, x+5 r1 w200 voutlookRemindersWindowTitleTextToMatch, %outlookRemindersWindowTitleTextToMatch%
430430

0 commit comments

Comments
 (0)