Skip to content

Commit e31bac6

Browse files
committed
bumped version to v1.9.1
1 parent dcc3a60 commit e31bac6

File tree

6 files changed

+80
-19
lines changed

6 files changed

+80
-19
lines changed

apprise/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# POSSIBILITY OF SUCH DAMAGE.
2828

2929
__title__ = 'Apprise'
30-
__version__ = '1.9.0'
30+
__version__ = '1.9.1'
3131
__author__ = 'Chris Caron'
3232
__license__ = 'BSD'
3333
__copywrite__ = 'Copyright (C) 2024 Chris Caron <lead2gold@gmail.com>'

apprise/i18n/apprise.pot

Lines changed: 22 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
#, fuzzy
77
msgid ""
88
msgstr ""
9-
"Project-Id-Version: apprise 1.9.0\n"
9+
"Project-Id-Version: apprise 1.9.1\n"
1010
"Report-Msgid-Bugs-To: lead2gold@gmail.com\n"
11-
"POT-Creation-Date: 2024-09-02 12:59-0400\n"
11+
"POT-Creation-Date: 2024-12-17 19:32-0500\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <LL@li.org>\n"
1515
"MIME-Version: 1.0\n"
1616
"Content-Type: text/plain; charset=utf-8\n"
1717
"Content-Transfer-Encoding: 8bit\n"
18-
"Generated-By: Babel 2.15.0\n"
18+
"Generated-By: Babel 2.16.0\n"
1919

2020
msgid "A local Gnome environment is required."
2121
msgstr ""
@@ -50,7 +50,7 @@ msgstr ""
5050
msgid "Access Token"
5151
msgstr ""
5252

53-
msgid "Account Email"
53+
msgid "Account Email or Object ID"
5454
msgstr ""
5555

5656
msgid "Account SID"
@@ -107,6 +107,9 @@ msgstr ""
107107
msgid "Attach Filename"
108108
msgstr ""
109109

110+
msgid "Auth ID"
111+
msgstr ""
112+
110113
msgid "Auth Token"
111114
msgstr ""
112115

@@ -493,6 +496,12 @@ msgstr ""
493496
msgid "Overflow Mode"
494497
msgstr ""
495498

499+
msgid "PGP Encryption"
500+
msgstr ""
501+
502+
msgid "PGP Public Key Path"
503+
msgstr ""
504+
496505
msgid "Packages are recommended to improve functionality."
497506
msgstr ""
498507

@@ -616,6 +625,9 @@ msgstr ""
616625
msgid "Sensitive Attachments"
617626
msgstr ""
618627

628+
msgid "Server Discovery"
629+
msgstr ""
630+
619631
msgid "Server Key"
620632
msgstr ""
621633

@@ -709,9 +721,6 @@ msgstr ""
709721
msgid "Target Device"
710722
msgstr ""
711723

712-
msgid "Target Device ID"
713-
msgstr ""
714-
715724
msgid "Target Email"
716725
msgstr ""
717726

@@ -763,9 +772,6 @@ msgstr ""
763772
msgid "Target Subreddit"
764773
msgstr ""
765774

766-
msgid "Target Tag ID"
767-
msgstr ""
768-
769775
msgid "Target Team"
770776
msgstr ""
771777

@@ -853,6 +859,9 @@ msgstr ""
853859
msgid "Token C"
854860
msgstr ""
855861

862+
msgid "Token D"
863+
msgstr ""
864+
856865
msgid "Topic"
857866
msgstr ""
858867

@@ -916,6 +925,9 @@ msgstr ""
916925
msgid "Visibility"
917926
msgstr ""
918927

928+
msgid "Volume"
929+
msgstr ""
930+
919931
msgid "Web Based"
920932
msgstr ""
921933

packaging/man/apprise.1

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" generated with Ronn-NG/v0.9.1
22
.\" http://github.com/apjanke/ronn-ng/tree/0.9.1
3-
.TH "APPRISE" "1" "August 2024" "Chris Caron <lead2gold@gmail.com>"
3+
.TH "APPRISE" "1" "December 2024" "Chris Caron <lead2gold@gmail.com>"
44
.SH "NAME"
55
\fBapprise\fR \- Push Notifications that work with just about every platform!
66
.SH "SYNOPSIS"
@@ -108,6 +108,8 @@ The \fBstorage\fR action has the following sub actions:
108108
.IP "" 0
109109
.SH "SERVICE URLS"
110110
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\.
111+
.P
112+
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\.
111113
.SH "EXAMPLES"
112114
Send a notification to as many servers as you want to specify as you can easily chain them together:
113115
.IP "" 4
@@ -183,9 +185,13 @@ By default \fBapprise\fR looks in the following local locations for custom plugi
183185
.fi
184186
.IP "" 0
185187
.P
186-
Simply create your own python file with the following bare minimum content in it: from apprise\.decorators import notify
188+
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\.
189+
.P
190+
Simply create your own python file with the following bare minimum content in it:
187191
.IP "" 4
188192
.nf
193+
from apprise\.decorators import notify
194+
189195
# This example assumes you want your function to trigger on foobar://
190196
# references:
191197
@notify(on="foobar", name="My Custom Notification")
@@ -223,6 +229,8 @@ Configuration files can be directly referenced via \fBapprise\fR when referencin
223229
.P
224230
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\.
225231
.P
232+
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\.
233+
.P
226234
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:
227235
.IP "" 4
228236
.nf
@@ -238,6 +246,14 @@ $ apprise \-vv \-\-title "Will Be Late Getting Home" \e
238246
\-\-tag=family
239247
.fi
240248
.IP "" 0
249+
.SH "ENVIRONMENT VARIABLES"
250+
\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\.
251+
.P
252+
\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\.
253+
.P
254+
\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\.
255+
.P
256+
\fBAPPRISE_STORAGE_PATH\fR: Explicitly specify the persistent storage path to use (over\-riding the default)\.
241257
.SH "BUGS"
242258
If you find any bugs, please make them known at: \fIhttps://github\.com/caronc/apprise/issues\fR
243259
.SH "DONATIONS"

packaging/man/apprise.1.html

Lines changed: 34 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packaging/redhat/python-apprise.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Telegram, Threema Gateway, Twilio, Twitter, Twist, VictorOps, Voipms, Vonage,
5555
WeCom Bot, WhatsApp, Webex Teams, Workflows, WxPusher, XBMC}
5656

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

151151
%changelog
152+
* Tue Dec 17 2024 Chris Caron <lead2gold@gmail.com> - 1.9.1
153+
- Updated to v1.9.1
154+
152155
* Mon Sep 2 2024 Chris Caron <lead2gold@gmail.com> - 1.9.0
153156
- Updated to v1.9.0
154157

setup.py

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

6464
setup(
6565
name='apprise',
66-
version='1.9.0',
66+
version='1.9.1',
6767
description='Push Notifications that work with just about every platform!',
6868
license='BSD',
6969
long_description=open('README.md', encoding="utf-8").read(),

0 commit comments

Comments
 (0)