diff --git a/CHANGELOG.md b/CHANGELOG.md index 582138e0..74963f50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## [1.4.2](https://github.com/pyouroboros/ouroboros/tree/1.4.2) (2019-07-31) +[Full Changelog](https://github.com/pyouroboros/ouroboros/compare/v1.4.1...1.4.2) + +**Closed issues:** + +- Join Notifications truncated and icon returning 404 [\#325](https://github.com/pyouroboros/ouroboros/issues/325) + ## [1.4.1](https://github.com/pyouroboros/ouroboros/tree/1.4.1) (2019-06-03) [Full Changelog](https://github.com/pyouroboros/ouroboros/compare/v1.4.0...1.4.1) diff --git a/pyouroboros/__init__.py b/pyouroboros/__init__.py index faed9793..14f4256d 100644 --- a/pyouroboros/__init__.py +++ b/pyouroboros/__init__.py @@ -1,2 +1,2 @@ -VERSION = "1.4.1" +VERSION = "1.4.2" BRANCH = "master" diff --git a/pyouroboros/notifiers.py b/pyouroboros/notifiers.py index c93a4ac7..7d577260 100644 --- a/pyouroboros/notifiers.py +++ b/pyouroboros/notifiers.py @@ -14,7 +14,7 @@ def __init__(self, config, data_manager): def build_apprise(self): asset = apprise.AppriseAsset( - image_url_mask='https://bin.cajun.pro/images/ouroboros/notifications/ouroboros-logo-{XY}{EXTENSION}', + image_url_mask='https://i.imgur.com/L40ksWY.png', default_extension='.png' ) asset.app_id = "Ouroboros" diff --git a/requirements.txt b/requirements.txt index 4330f459..0bf32527 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,5 +2,5 @@ docker>=3.7.0 prometheus_client>=0.5.0 requests>=2.21.0 influxdb>=5.2.1 -apprise>=0.7.4 +apprise>=0.7.9 apscheduler>=3.5.3 \ No newline at end of file