Skip to content

Commit

Permalink
bumped version to v1.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
caronc committed Dec 18, 2024
1 parent dcc3a60 commit e31bac6
Show file tree
Hide file tree
Showing 6 changed files with 80 additions and 19 deletions.
2 changes: 1 addition & 1 deletion apprise/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# POSSIBILITY OF SUCH DAMAGE.

__title__ = 'Apprise'
__version__ = '1.9.0'
__version__ = '1.9.1'
__author__ = 'Chris Caron'
__license__ = 'BSD'
__copywrite__ = 'Copyright (C) 2024 Chris Caron <[email protected]>'
Expand Down
32 changes: 22 additions & 10 deletions apprise/i18n/apprise.pot
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: apprise 1.9.0\n"
"Project-Id-Version: apprise 1.9.1\n"
"Report-Msgid-Bugs-To: [email protected]\n"
"POT-Creation-Date: 2024-09-02 12:59-0400\n"
"POT-Creation-Date: 2024-12-17 19:32-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.15.0\n"
"Generated-By: Babel 2.16.0\n"

msgid "A local Gnome environment is required."
msgstr ""
Expand Down Expand Up @@ -50,7 +50,7 @@ msgstr ""
msgid "Access Token"
msgstr ""

msgid "Account Email"
msgid "Account Email or Object ID"
msgstr ""

msgid "Account SID"
Expand Down Expand Up @@ -107,6 +107,9 @@ msgstr ""
msgid "Attach Filename"
msgstr ""

msgid "Auth ID"
msgstr ""

msgid "Auth Token"
msgstr ""

Expand Down Expand Up @@ -493,6 +496,12 @@ msgstr ""
msgid "Overflow Mode"
msgstr ""

msgid "PGP Encryption"
msgstr ""

msgid "PGP Public Key Path"
msgstr ""

msgid "Packages are recommended to improve functionality."
msgstr ""

Expand Down Expand Up @@ -616,6 +625,9 @@ msgstr ""
msgid "Sensitive Attachments"
msgstr ""

msgid "Server Discovery"
msgstr ""

msgid "Server Key"
msgstr ""

Expand Down Expand Up @@ -709,9 +721,6 @@ msgstr ""
msgid "Target Device"
msgstr ""

msgid "Target Device ID"
msgstr ""

msgid "Target Email"
msgstr ""

Expand Down Expand Up @@ -763,9 +772,6 @@ msgstr ""
msgid "Target Subreddit"
msgstr ""

msgid "Target Tag ID"
msgstr ""

msgid "Target Team"
msgstr ""

Expand Down Expand Up @@ -853,6 +859,9 @@ msgstr ""
msgid "Token C"
msgstr ""

msgid "Token D"
msgstr ""

msgid "Topic"
msgstr ""

Expand Down Expand Up @@ -916,6 +925,9 @@ msgstr ""
msgid "Visibility"
msgstr ""

msgid "Volume"
msgstr ""

msgid "Web Based"
msgstr ""

Expand Down
20 changes: 18 additions & 2 deletions packaging/man/apprise.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" generated with Ronn-NG/v0.9.1
.\" http://github.com/apjanke/ronn-ng/tree/0.9.1
.TH "APPRISE" "1" "August 2024" "Chris Caron <[email protected]>"
.TH "APPRISE" "1" "December 2024" "Chris Caron <[email protected]>"
.SH "NAME"
\fBapprise\fR \- Push Notifications that work with just about every platform!
.SH "SYNOPSIS"
Expand Down Expand Up @@ -108,6 +108,8 @@ The \fBstorage\fR action has the following sub actions:
.IP "" 0
.SH "SERVICE URLS"
There are to many service URL and combinations to list here\. It\'s best to visit the Apprise GitHub page \fIhttps://github\.com/caronc/apprise/wiki#notification\-services\fR and see what\'s available\.
.P
The \fBenvironment variable\fR of \fBAPPRISE_URLS\fR (comma/space delimited) can be specified to provide the default set of URLs you wish to notify if none are otherwise specified\.
.SH "EXAMPLES"
Send a notification to as many servers as you want to specify as you can easily chain them together:
.IP "" 4
Expand Down Expand Up @@ -183,9 +185,13 @@ By default \fBapprise\fR looks in the following local locations for custom plugi
.fi
.IP "" 0
.P
Simply create your own python file with the following bare minimum content in it: from apprise\.decorators import notify
The \fBenvironment variable\fR of \fBAPPRISE_PLUGIN_PATH\fR can be specified to override the list identified above with one of your own\. use a semi\-colon (\fB;\fR), line\-feed (\fB\en\fR), and/or carriage return (\fB\er\fR) to delimit multiple entries\.
.P
Simply create your own python file with the following bare minimum content in it:
.IP "" 4
.nf
from apprise\.decorators import notify

# This example assumes you want your function to trigger on foobar://
# references:
@notify(on="foobar", name="My Custom Notification")
Expand Down Expand Up @@ -223,6 +229,8 @@ Configuration files can be directly referenced via \fBapprise\fR when referencin
.P
The \fBconfiguration files\fR specified above can also be identified with a \fB\.yml\fR extension or even just entirely removing the \fB\.conf\fR extension altogether\.
.P
The \fBenvironment variable\fR of \fBAPPRISE_CONFIG_PATH\fR can be specified to override the list identified above with one of your own\. use a semi\-colon (\fB;\fR), line\-feed (\fB\en\fR), and/or carriage return (\fB\er\fR) to delimit multiple entries\.
.P
If a default configuration file is referenced in any way by the \fBapprise\fR tool, you no longer need to provide it a Service URL\. Usage of the \fBapprise\fR tool simplifies to:
.IP "" 4
.nf
Expand All @@ -238,6 +246,14 @@ $ apprise \-vv \-\-title "Will Be Late Getting Home" \e
\-\-tag=family
.fi
.IP "" 0
.SH "ENVIRONMENT VARIABLES"
\fBAPPRISE_URLS\fR: Specify the default URLs to notify IF none are otherwise specified on the command line explicitly\. If the \fB\-\-config\fR (\fB\-c\fR) is specified, then this will over\-rides any reference to this variable\. Use white space and/or a comma (\fB,\fR) to delimit multiple entries\.
.P
\fBAPPRISE_CONFIG_PATH\fR: Explicitly specify the config search path to use (over\-riding the default)\. Use a semi\-colon (\fB;\fR), line\-feed (\fB\en\fR), and/or carriage return (\fB\er\fR) to delimit multiple entries\.
.P
\fBAPPRISE_PLUGIN_PATH\fR: Explicitly specify the custom plugin search path to use (over\-riding the default)\. Use a semi\-colon (\fB;\fR), line\-feed (\fB\en\fR), and/or carriage return (\fB\er\fR) to delimit multiple entries\.
.P
\fBAPPRISE_STORAGE_PATH\fR: Explicitly specify the persistent storage path to use (over\-riding the default)\.
.SH "BUGS"
If you find any bugs, please make them known at: \fIhttps://github\.com/caronc/apprise/issues\fR
.SH "DONATIONS"
Expand Down
38 changes: 34 additions & 4 deletions packaging/man/apprise.1.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion packaging/redhat/python-apprise.spec
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Telegram, Threema Gateway, Twilio, Twitter, Twist, VictorOps, Voipms, Vonage,
WeCom Bot, WhatsApp, Webex Teams, Workflows, WxPusher, XBMC}

Name: python-%{pypi_name}
Version: 1.9.0
Version: 1.9.1
Release: 1%{?dist}
Summary: A simple wrapper to many popular notification services used today
License: BSD
Expand Down Expand Up @@ -149,6 +149,9 @@ LANG=C.UTF-8 PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version
%{python3_sitelib}/%{pypi_name}/cli.*

%changelog
* Tue Dec 17 2024 Chris Caron <[email protected]> - 1.9.1
- Updated to v1.9.1

* Mon Sep 2 2024 Chris Caron <[email protected]> - 1.9.0
- Updated to v1.9.0

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@

setup(
name='apprise',
version='1.9.0',
version='1.9.1',
description='Push Notifications that work with just about every platform!',
license='BSD',
long_description=open('README.md', encoding="utf-8").read(),
Expand Down

0 comments on commit e31bac6

Please sign in to comment.