diff --git a/LICENSE b/LICENSE index 8139328f..b7d74691 100644 --- a/LICENSE +++ b/LICENSE @@ -1,29 +1,27 @@ -BSD 3-Clause License +Copyright (c) Chris Caron +All rights reserved. -Apprise - Push Notification Library. -Copyright (c) 2023, Chris Caron +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. + 3. Neither the name of Django nor the names of its contributors may be used + to endorse or promote products derived from this software without + specific prior written permission. -3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/apprise/__init__.py b/apprise/__init__.py index 55fa7448..e67ce953 100644 --- a/apprise/__init__.py +++ b/apprise/__init__.py @@ -31,9 +31,9 @@ # POSSIBILITY OF SUCH DAMAGE. __title__ = 'Apprise' -__version__ = '1.2.1' +__version__ = '1.3.0' __author__ = 'Chris Caron' -__license__ = 'GPLv2' +__license__ = 'BSD' __copywrite__ = 'Copyright (C) 2023 Chris Caron ' __email__ = 'lead2gold@gmail.com' __status__ = 'Production' diff --git a/apprise/i18n/apprise.pot b/apprise/i18n/apprise.pot index 6c03a345..677814fe 100644 --- a/apprise/i18n/apprise.pot +++ b/apprise/i18n/apprise.pot @@ -1,14 +1,14 @@ # Translations template for apprise. -# Copyright (C) 2022 Chris Caron +# Copyright (C) 2023 Chris Caron # This file is distributed under the same license as the apprise project. -# FIRST AUTHOR , 2022. +# FIRST AUTHOR , 2023. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: apprise 1.2.1\n" +"Project-Id-Version: apprise 1.3.0\n" "Report-Msgid-Bugs-To: lead2gold@gmail.com\n" -"POT-Creation-Date: 2022-12-28 09:43-0500\n" +"POT-Creation-Date: 2023-02-22 17:31-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -50,6 +50,9 @@ msgstr "" msgid "Account SID" msgstr "" +msgid "Action" +msgstr "" + msgid "Add Tokens" msgstr "" @@ -83,6 +86,9 @@ msgstr "" msgid "Attach" msgstr "" +msgid "Attach File As" +msgstr "" + msgid "Attach Filename" msgstr "" @@ -92,6 +98,9 @@ msgstr "" msgid "Authentication Key" msgstr "" +msgid "Authentication Type" +msgstr "" + msgid "Authorization Token" msgstr "" @@ -305,6 +314,9 @@ msgstr "" msgid "Include Segment" msgstr "" +msgid "Integration ID" +msgstr "" + msgid "Is Ad?" msgstr "" @@ -353,6 +365,9 @@ msgstr "" msgid "Message Type" msgstr "" +msgid "Meta Extras" +msgstr "" + msgid "Modal" msgstr "" @@ -658,6 +673,9 @@ msgstr "" msgid "Text To Speech" msgstr "" +msgid "Third Party ID" +msgstr "" + msgid "Thread ID" msgstr "" @@ -715,6 +733,9 @@ msgstr "" msgid "Use Session" msgstr "" +msgid "User Email" +msgstr "" + msgid "User ID" msgstr "" diff --git a/packaging/redhat/python-apprise.spec b/packaging/redhat/python-apprise.spec index 9381cce2..dd77f718 100644 --- a/packaging/redhat/python-apprise.spec +++ b/packaging/redhat/python-apprise.spec @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # BSD 3-Clause License # # Apprise - Push Notification Library. @@ -57,7 +56,7 @@ SparkPost, Super Toasty, Streamlabs, Stride, Syslog, Techulus Push, Telegram, Twilio, Twitter, Twist, XBMC, Voipms, Vonage, Webex Teams} Name: python-%{pypi_name} -Version: 1.2.1 +Version: 1.3.0 Release: 1%{?dist} Summary: A simple wrapper to many popular notification services used today License: BSD @@ -187,6 +186,12 @@ LANG=C.UTF-8 PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version %{python3_sitelib}/%{pypi_name}/cli.* %changelog +* Wed Feb 22 2023 Chris Caron - 1.3.0 +- Updated to v1.3.0 + +* Fri Jan 20 2023 Fedora Release Engineering - 1.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Wed Dec 28 2022 Chris Caron - 1.2.1-1 - Updated to v1.2.1 diff --git a/setup.py b/setup.py index b73ad9c4..d9e9eb3a 100755 --- a/setup.py +++ b/setup.py @@ -66,9 +66,9 @@ else: setup( name='apprise', - version='1.2.1', + version='1.3.0', description='Push Notifications that work with just about every platform!', - license='GPLv2', + license='BSD', long_description=open('README.md', encoding="utf-8").read(), long_description_content_type='text/markdown', cmdclass=cmdclass,