diff --git a/config.md b/config.md index c50e79f..997c612 100644 --- a/config.md +++ b/config.md @@ -81,12 +81,12 @@ a = Apprise() a.add('mailto://user:pass@hotmail.com', tag='email') a.add('gnome://', tag='desktop') -# Send off our all of our notifications (v0.8.0 or less) +# This command actually won't notify anything because tags were associated +# with our URLs a.notify("A message!", title="An Optional Title") -# For Apprise v0.8.1 or newer, the following will notify everything: -# The 'all' is a system level keyword to notify everything disreguarding -# tag assignments: +# This however will notify all of them. It uses the special keyword 'all' +# which disregards any tag names set. a.notify("A message!", title="An Optional Title", tag="all") # To notify specific URLs that were loaded, you can match them by their