Skip to content

Commit

Permalink
Rename "Advanced" settings to "Window Detection Settings"
Browse files Browse the repository at this point in the history
  • Loading branch information
deadlydog committed Aug 28, 2020
1 parent beb7b63 commit e717c77
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ You can also customize how often the alerts should trigger again if the Outlook
### Older versions of Outlook

Recent versions of Outlook have the text `Reminder(s)` in the reminders window that pops up.
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.
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.
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`.
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.

## How To Run The App

Expand Down
8 changes: 4 additions & 4 deletions src/NotifyWhenMicrosoftOutlookReminderWindowIsOpen.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
;==========================================================
; Constant Variables
;==========================================================
ApplicationVersionNumber := "v1.1.0"
ApplicationVersionNumber := "v1.1.1"
AppResourcesDirectoryPath := A_ScriptDir . "\NotifyWhenMicrosoftOutlookReminderWindowIsOpenResources"
AppTrayIconFilePath := AppResourcesDirectoryPath . "\AppIcon.ico" ; Define where to unpack the mouse cursor image file to.
MouseCursorImageFilePath := AppResourcesDirectoryPath . "\MouseCursor.ani" ; Define where to unpack the mouse cursor image file to.
Expand Down Expand Up @@ -31,8 +31,8 @@ Settings.MillisecondsToShowTransparentWindowAlertFor := { Value: 3000, Category:
Settings.SecondsBeforeAlertsAreReTriggeredWhenOutlookRemindersWindowIsStillOpen := { Value: 30, Category: "General" }
Settings.EnsureOutlookRemindersWindowIsRestored := { Value: true, Category: "Outlook Reminders Window" }
Settings.EnsureOutlookRemindersWindowIsAlwaysOnTop := { Value: true, Category: "Outlook Reminders Window" }
Settings.OutlookRemindersWindowTitleTextToMatch := { Value: "Reminder(s)", Category: "Advanced" }
Settings.OutlookProcessName := { Value: "Outlook.exe", Category: "Advanced" }
Settings.OutlookRemindersWindowTitleTextToMatch := { Value: "Reminder(s)", Category: "Window Detection" }
Settings.OutlookProcessName := { Value: "Outlook.exe", Category: "Window Detection" }
Settings := LoadSettingsFromFileIfExistsOrCreateFile(SettingsFilePath, Settings)

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

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

Expand Down

0 comments on commit e717c77

Please sign in to comment.