-
-
Notifications
You must be signed in to change notification settings - Fork 436
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
80 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]>' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 "" | ||
|
@@ -50,7 +50,7 @@ msgstr "" | |
msgid "Access Token" | ||
msgstr "" | ||
|
||
msgid "Account Email" | ||
msgid "Account Email or Object ID" | ||
msgstr "" | ||
|
||
msgid "Account SID" | ||
|
@@ -107,6 +107,9 @@ msgstr "" | |
msgid "Attach Filename" | ||
msgstr "" | ||
|
||
msgid "Auth ID" | ||
msgstr "" | ||
|
||
msgid "Auth Token" | ||
msgstr "" | ||
|
||
|
@@ -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 "" | ||
|
||
|
@@ -616,6 +625,9 @@ msgstr "" | |
msgid "Sensitive Attachments" | ||
msgstr "" | ||
|
||
msgid "Server Discovery" | ||
msgstr "" | ||
|
||
msgid "Server Key" | ||
msgstr "" | ||
|
||
|
@@ -709,9 +721,6 @@ msgstr "" | |
msgid "Target Device" | ||
msgstr "" | ||
|
||
msgid "Target Device ID" | ||
msgstr "" | ||
|
||
msgid "Target Email" | ||
msgstr "" | ||
|
||
|
@@ -763,9 +772,6 @@ msgstr "" | |
msgid "Target Subreddit" | ||
msgstr "" | ||
|
||
msgid "Target Tag ID" | ||
msgstr "" | ||
|
||
msgid "Target Team" | ||
msgstr "" | ||
|
||
|
@@ -853,6 +859,9 @@ msgstr "" | |
msgid "Token C" | ||
msgstr "" | ||
|
||
msgid "Token D" | ||
msgstr "" | ||
|
||
msgid "Topic" | ||
msgstr "" | ||
|
||
|
@@ -916,6 +925,9 @@ msgstr "" | |
msgid "Visibility" | ||
msgstr "" | ||
|
||
msgid "Volume" | ||
msgstr "" | ||
|
||
msgid "Web Based" | ||
msgstr "" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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 | ||
|
@@ -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") | ||
|
@@ -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 | ||
|
@@ -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" | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters