diff --git a/apprise/__init__.py b/apprise/__init__.py index 09026108..f4083498 100644 --- a/apprise/__init__.py +++ b/apprise/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2021 Chris Caron +# Copyright (C) 2022 Chris Caron # All rights reserved. # # This code is licensed under the MIT License. @@ -24,10 +24,10 @@ # THE SOFTWARE. __title__ = 'Apprise' -__version__ = '0.9.6' +__version__ = '0.9.7' __author__ = 'Chris Caron' __license__ = 'MIT' -__copywrite__ = 'Copyright (C) 2021 Chris Caron ' +__copywrite__ = 'Copyright (C) 2022 Chris Caron ' __email__ = 'lead2gold@gmail.com' __status__ = 'Production' diff --git a/apprise/i18n/apprise.pot b/apprise/i18n/apprise.pot index 274b379c..bcab4ad2 100644 --- a/apprise/i18n/apprise.pot +++ b/apprise/i18n/apprise.pot @@ -1,14 +1,14 @@ # Translations template for apprise. -# Copyright (C) 2021 Chris Caron +# Copyright (C) 2022 Chris Caron # This file is distributed under the same license as the apprise project. -# FIRST AUTHOR , 2021. +# FIRST AUTHOR , 2022. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: apprise 0.9.6\n" +"Project-Id-Version: apprise 0.9.7\n" "Report-Msgid-Bugs-To: lead2gold@gmail.com\n" -"POT-Creation-Date: 2021-12-01 18:56-0500\n" +"POT-Creation-Date: 2022-02-02 14:27-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -140,12 +140,18 @@ msgstr "" msgid "Custom Icon" msgstr "" +msgid "Custom Image URL" +msgstr "" + msgid "Cycles" msgstr "" msgid "DBus Notification" msgstr "" +msgid "Data Entries" +msgstr "" + msgid "Details" msgstr "" @@ -200,6 +206,9 @@ msgstr "" msgid "Facility" msgstr "" +msgid "Fetch Method" +msgstr "" + msgid "Flair ID" msgstr "" @@ -311,9 +320,15 @@ msgstr "" msgid "Name" msgstr "" +msgid "Nextcloud Talk" +msgstr "" + msgid "No dependencies." msgstr "" +msgid "Notification Color" +msgstr "" + msgid "Notification ID" msgstr "" @@ -352,6 +367,9 @@ msgstr "" msgid "Path" msgstr "" +msgid "Payload Extras" +msgstr "" + msgid "Port" msgstr "" @@ -382,6 +400,9 @@ msgstr "" msgid "Remove Tokens" msgstr "" +msgid "Reply To Email" +msgstr "" + msgid "Resubmit Flag" msgstr "" @@ -460,6 +481,9 @@ msgstr "" msgid "Tags" msgstr "" +msgid "Target Callsign" +msgstr "" + msgid "Target Channel" msgstr "" @@ -577,6 +601,9 @@ msgstr "" msgid "Token C" msgstr "" +msgid "Transmitter Groups" +msgstr "" + msgid "URL" msgstr "" diff --git a/packaging/redhat/python-apprise.spec b/packaging/redhat/python-apprise.spec index ac47e744..517df92e 100644 --- a/packaging/redhat/python-apprise.spec +++ b/packaging/redhat/python-apprise.spec @@ -1,4 +1,4 @@ -# Copyright (C) 2021 Chris Caron +# Copyright (C) 2022 Chris Caron # All rights reserved. # # This code is licensed under the MIT License. @@ -58,7 +58,7 @@ SMTP2Go, Spontit, SparkPost, Super Toasty, Streamlabs, Stride, Syslog, Techulus Telegram, Twilio, Twitter, Twist, XBMC, XMPP, Webex Teams} Name: python-%{pypi_name} -Version: 0.9.6 +Version: 0.9.7 Release: 1%{?dist} Summary: A simple wrapper to many popular notification services used today License: MIT @@ -236,6 +236,9 @@ LANG=C.UTF-8 PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version %endif %changelog +* Wed Feb 2 2022 Chris Caron - 0.9.7-1 +- Updated to v0.9.7 + * Wed Dec 1 2021 Chris Caron - 0.9.6-1 - Updated to v0.9.6 diff --git a/setup.py b/setup.py index 96789883..568441db 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (C) 2021 Chris Caron +# Copyright (C) 2022 Chris Caron # All rights reserved. # # This code is licensed under the MIT License. @@ -62,7 +62,7 @@ else: setup( name='apprise', - version='0.9.6', + version='0.9.7', description='Push Notifications that work with just about every platform!', license='MIT', long_description=open('README.md').read(),