mirror of https://github.com/SeanOMik/znc-push.git
Update names, url, and copyright
This commit is contained in:
parent
b203070196
commit
23d84678de
2
LICENSE
2
LICENSE
|
@ -1,4 +1,4 @@
|
|||
Copyright (c) 2014 John Reese
|
||||
Copyright (c) 2022 Amethyst Reese
|
||||
|
||||
Permission is hereby granted, free of charge, to any person
|
||||
obtaining a copy of this software and associated documentation
|
||||
|
|
12
README.md
12
README.md
|
@ -1,7 +1,7 @@
|
|||
ZNC Push
|
||||
========
|
||||
|
||||
[FAQ][] | [Example Configuration][examples] | [![Build Status](https://travis-ci.org/jreese/znc-push.svg?branch=master)](https://travis-ci.org/jreese/znc-push)
|
||||
[FAQ][] | [Example Configuration][examples] | [![Build Status](https://travis-ci.org/amyreese/znc-push.svg?branch=master)](https://travis-ci.org/amyreese/znc-push)
|
||||
|
||||
|
||||
Overview
|
||||
|
@ -40,7 +40,7 @@ distribution, so feedback on older releases of ZNC is needed to continue support
|
|||
If you want to use ZNC versions before 1.0 (0.206 or older), you will need to check out the
|
||||
"legacy" branch in order to compile it correctly.
|
||||
|
||||
ZNC Push was created by [John Reese](http://johnmreese.com) and designed to fill a
|
||||
ZNC Push was created by [Amethyst Reese](http://noswap.com) and designed to fill a
|
||||
personal need. It may not fit your use cases, but any and all feedback would be greatly
|
||||
appreciated.
|
||||
|
||||
|
@ -537,7 +537,7 @@ to something similar to "http://domain/#channel/2011-03-09 14:25:09", or
|
|||
License
|
||||
-------
|
||||
|
||||
This project is copyright John Reese, and licensed under the MIT license.
|
||||
This project is copyright Amethyst Reese, and licensed under the MIT license.
|
||||
I am providing code in this repository to you under an open source license.
|
||||
Because this is my personal repository, the license you receive to my code is
|
||||
from me and not from my employer. See the `LICENSE` file for details.
|
||||
|
@ -560,9 +560,9 @@ from me and not from my employer. See the `LICENSE` file for details.
|
|||
[Discord]: https://discord.gg
|
||||
[Igloo]: https://iglooirc.com/
|
||||
|
||||
[faq]: https://github.com/jreese/znc-push/blob/master/doc/faq.md
|
||||
[examples]: https://github.com/jreese/znc-push/blob/master/doc/examples.md
|
||||
[issues]: https://github.com/jreese/znc-push/issues
|
||||
[faq]: https://github.com/amyreese/znc-push/blob/master/doc/faq.md
|
||||
[examples]: https://github.com/amyreese/znc-push/blob/master/doc/examples.md
|
||||
[issues]: https://github.com/amyreese/znc-push/issues
|
||||
[ZNC]: http://en.znc.in "ZNC, an advanced IRC bouncer"
|
||||
[ISO 8601]: http://en.wikipedia.org/wiki/ISO_8601 "ISO 8601 Date Format"
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ Summary: Push notifications module for ZNC
|
|||
|
||||
Group: System Environment/Daemons
|
||||
License: MIT
|
||||
URL: https://github.com/jreese/znc-push
|
||||
URL: https://github.com/amyreese/znc-push
|
||||
Source0: %{name}-%{version}.tar.gz
|
||||
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
||||
|
||||
|
|
8
push.cpp
8
push.cpp
|
@ -4,7 +4,7 @@
|
|||
* Allows the user to enter a Push user and API token, and sends
|
||||
* channel highlights and personal messages to Push.
|
||||
*
|
||||
* Copyright (c) 2011 John Reese
|
||||
* Copyright (c) 2022 Amethyst Reese
|
||||
* Licensed under the MIT license
|
||||
*/
|
||||
|
||||
|
@ -536,7 +536,7 @@ class CPushMod : public CModule
|
|||
|
||||
params["title"] = message_title;
|
||||
params["text"] = message_content;
|
||||
params["image"] = "https://raw2.github.com/jreese/znc-push/master/logo.png";
|
||||
params["image"] = "https://raw2.github.com/amyreese/znc-push/master/logo.png";
|
||||
params["sender"] = "ZNC Push";
|
||||
}
|
||||
else if (service == "faast")
|
||||
|
@ -555,7 +555,7 @@ class CPushMod : public CModule
|
|||
params["notification[subtitle]"] = context;
|
||||
params["notification[message]"] = message_content;
|
||||
params["notification[long_message]"] = message_content;
|
||||
params["notification[icon_url]"] = "https://raw2.github.com/jreese/znc-push/master/logo.png";
|
||||
params["notification[icon_url]"] = "https://raw2.github.com/amyreese/znc-push/master/logo.png";
|
||||
if ( options["message_sound"] != "" )
|
||||
{
|
||||
params["notification[sound]"] = options["message_sound"];
|
||||
|
@ -1895,7 +1895,7 @@ class CPushMod : public CModule
|
|||
// HELP command
|
||||
else if (action == "help")
|
||||
{
|
||||
PutModule("View the detailed documentation at https://github.com/jreese/znc-push/blob/master/README.md");
|
||||
PutModule("View the detailed documentation at https://github.com/amyreese/znc-push/blob/master/README.md");
|
||||
}
|
||||
// VERSION command
|
||||
else if (action == "version")
|
||||
|
|
Loading…
Reference in New Issue