diff --git a/README.md b/README.md index ed43da2e..888d0aa7 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ The table below identifies the services this tool supports and some example serv | [BlueSky](https://github.com/caronc/apprise/wiki/Notify_bluesky) | bluesky:// | (TCP) 443 | bluesky://Handle:AppPw
bluesky://Handle:AppPw/TargetHandle
bluesky://Handle:AppPw/TargetHandle1/TargetHandle2/TargetHandleN | [Chanify](https://github.com/caronc/apprise/wiki/Notify_chanify) | chantify:// | (TCP) 443 | chantify://token | [Discord](https://github.com/caronc/apprise/wiki/Notify_discord) | discord:// | (TCP) 443 | discord://webhook_id/webhook_token
discord://avatar@webhook_id/webhook_token -| [Dot.](https://dot.mindreset.tech/docs/service/studio/api/text_api) | dot:// | (TCP) 443 | dot://apikey@device_id/text/
dot://apikey@device_id/image/
**Note**: `device_id` is the Quote/0 hardware serial +| [Dot.](https://github.com/caronc/apprise/wiki/Notify_dot) | dot:// | (TCP) 443 | dot://apikey@device_id/text/
dot://apikey@device_id/image/
**Note**: `device_id` is the Quote/0 hardware serial | [Emby](https://github.com/caronc/apprise/wiki/Notify_emby) | emby:// or embys:// | (TCP) 8096 | emby://user@hostname/
emby://user:password@hostname | [Enigma2](https://github.com/caronc/apprise/wiki/Notify_enigma2) | enigma2:// or enigma2s:// | (TCP) 80 or 443 | enigma2://hostname | [FCM](https://github.com/caronc/apprise/wiki/Notify_fcm) | fcm:// | (TCP) 443 | fcm://project@apikey/DEVICE_ID
fcm://project@apikey/#TOPIC
fcm://project@apikey/DEVICE_ID1/#topic1/#topic2/DEVICE_ID2/ diff --git a/apprise/plugins/dot.py b/apprise/plugins/dot.py index 191a0a85..0a1b3b3d 100644 --- a/apprise/plugins/dot.py +++ b/apprise/plugins/dot.py @@ -95,7 +95,7 @@ class NotifyDot(NotifyBase): secure_protocol = "dot" # A URL that takes you to the setup/help of the specific protocol - setup_url = "https://dot.mindreset.tech/docs/service/studio/api/text_api" + setup_url = "https://github.com/caronc/apprise/wiki/Notify_dot" # Allows the user to specify the NotifyImageSize object image_size = NotifyImageSize.XY_128 @@ -105,6 +105,7 @@ class NotifyDot(NotifyBase): # Supported API modes SUPPORTED_MODES = ("text", "image") + DEFAULT_MODE = "text" # Define object templates