Skip to content

Commit f9920cb

Browse files
committed
pin apprise links to current version (0.9.3)
1 parent cd91ca5 commit f9920cb

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Features:
2323
- [x] Includes movie trailers
2424
- [x] Automatically renames media
2525
- [x] Supports multiple languages (TMDB supports internationalized Titles, Descriptions and Poster artwork)
26-
- [x] Notifications - supports all major notification services (via [Apprise](https://github.com/caronc/apprise))
26+
- [x] Notifications - supports all major notification services (via [Apprise](https://github.com/caronc/apprise/tree/v0.9.3))
2727
- [x] Imports existing libraries
2828
- [x] VPN integration (optional)
2929
- [x] Auto download subtitles via [opensubtitles](https://www.opensubtitles.com/) [api](https://opensubtitles.stoplight.io/)

docs/USAGE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ If you want to see the logs you can run:
7373
## Notifications
7474

7575
nefarious can send notifications (e.g. push notifications, email, sms) when media is downloaded.
76-
See [Apprise](https://github.com/caronc/apprise) for documentation on how to construct the *Notification Url* for
77-
the [available notification services](https://github.com/caronc/apprise#popular-notification-services).
76+
See [Apprise](https://github.com/caronc/apprise/tree/v0.9.3) for documentation on how to construct the *Notification Url* for
77+
the [available notification services](https://github.com/caronc/apprise/tree/v0.9.3#popular-notification-services).
7878

7979
Enter the *Notification Url* on the settings page. You can test it from there to make sure it works as expected.
8080

src/frontend/src/app/settings/settings.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@
172172
<div class="card-header">Notifications</div>
173173
<div class="card-body">
174174
<p>Defining a <i>Notification URL</i> allows you to get notified when downloads are complete.</p>
175-
<p>nefarious uses <a target="_blank" href="https://github.com/caronc/apprise">Apprise</a> for notifications which supports <a target="_blank" href="https://github.com/caronc/apprise#productivity-based-notifications">most major notification services.</a></p>
175+
<p>nefarious uses <a target="_blank" href="https://github.com/caronc/apprise/tree/v0.9.3">Apprise</a> for notifications which supports <a target="_blank" href="https://github.com/caronc/apprise#productivity-based-notifications">most major notification services.</a></p>
176176
<div class="my-2">
177177
<label>Notification URL</label>
178178
<input type="text" class="form-control" placeholder="slack://TokenA/TokenB/TokenC/" formControlName="apprise_notification_url">

src/nefarious/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class NefariousSettings(models.Model):
5959
# expects keyword/boolean pairs like {"x265": false, "265": false}
6060
keyword_search_filters = JSONField(blank=True, null=True) # type: dict
6161

62-
# apprise notifications - https://github.com/caronc/apprise
62+
# apprise notifications - https://github.com/caronc/apprise/tree/v0.9.3
6363
apprise_notification_url = models.CharField(max_length=1000, blank=True)
6464

6565
# category of media the user prefers: movie or tv...

src/nefarious/notification.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
def send_message(message: str) -> bool:
7-
# apprise notifications - https://github.com/caronc/apprise
7+
# apprise notifications - https://github.com/caronc/apprise/tree/v0.9.3
88
nefarious_settings = NefariousSettings.get()
99
if nefarious_settings.apprise_notification_url:
1010
apprise_instance = apprise.Apprise()

0 commit comments

Comments
 (0)