Update names, url, and copyright

This commit is contained in:
Amethyst Reese 2022-08-23 22:44:46 -07:00
parent b203070196
commit 23d84678de
4 changed files with 12 additions and 12 deletions

View File

@ -1,4 +1,4 @@
Copyright (c) 2014 John Reese Copyright (c) 2022 Amethyst Reese
Permission is hereby granted, free of charge, to any person Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation obtaining a copy of this software and associated documentation

View File

@ -1,7 +1,7 @@
ZNC Push 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 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 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. "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 personal need. It may not fit your use cases, but any and all feedback would be greatly
appreciated. appreciated.
@ -537,7 +537,7 @@ to something similar to "http://domain/#channel/2011-03-09 14:25:09", or
License 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. 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 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. 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 [Discord]: https://discord.gg
[Igloo]: https://iglooirc.com/ [Igloo]: https://iglooirc.com/
[faq]: https://github.com/jreese/znc-push/blob/master/doc/faq.md [faq]: https://github.com/amyreese/znc-push/blob/master/doc/faq.md
[examples]: https://github.com/jreese/znc-push/blob/master/doc/examples.md [examples]: https://github.com/amyreese/znc-push/blob/master/doc/examples.md
[issues]: https://github.com/jreese/znc-push/issues [issues]: https://github.com/amyreese/znc-push/issues
[ZNC]: http://en.znc.in "ZNC, an advanced IRC bouncer" [ZNC]: http://en.znc.in "ZNC, an advanced IRC bouncer"
[ISO 8601]: http://en.wikipedia.org/wiki/ISO_8601 "ISO 8601 Date Format" [ISO 8601]: http://en.wikipedia.org/wiki/ISO_8601 "ISO 8601 Date Format"

View File

@ -5,7 +5,7 @@ Summary: Push notifications module for ZNC
Group: System Environment/Daemons Group: System Environment/Daemons
License: MIT License: MIT
URL: https://github.com/jreese/znc-push URL: https://github.com/amyreese/znc-push
Source0: %{name}-%{version}.tar.gz Source0: %{name}-%{version}.tar.gz
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)

View File

@ -4,7 +4,7 @@
* Allows the user to enter a Push user and API token, and sends * Allows the user to enter a Push user and API token, and sends
* channel highlights and personal messages to Push. * channel highlights and personal messages to Push.
* *
* Copyright (c) 2011 John Reese * Copyright (c) 2022 Amethyst Reese
* Licensed under the MIT license * Licensed under the MIT license
*/ */
@ -536,7 +536,7 @@ class CPushMod : public CModule
params["title"] = message_title; params["title"] = message_title;
params["text"] = message_content; 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"; params["sender"] = "ZNC Push";
} }
else if (service == "faast") else if (service == "faast")
@ -555,7 +555,7 @@ class CPushMod : public CModule
params["notification[subtitle]"] = context; params["notification[subtitle]"] = context;
params["notification[message]"] = message_content; params["notification[message]"] = message_content;
params["notification[long_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"] != "" ) if ( options["message_sound"] != "" )
{ {
params["notification[sound]"] = options["message_sound"]; params["notification[sound]"] = options["message_sound"];
@ -1895,7 +1895,7 @@ class CPushMod : public CModule
// HELP command // HELP command
else if (action == "help") 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 // VERSION command
else if (action == "version") else if (action == "version")