diff --git a/LICENSE b/LICENSE index 575971f..fbb94d2 100644 --- a/LICENSE +++ b/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 diff --git a/README.md b/README.md index 42de80c..bbf983b 100755 --- a/README.md +++ b/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" diff --git a/contrib/znc-push.spec b/contrib/znc-push.spec index d4c8e97..973d31b 100644 --- a/contrib/znc-push.spec +++ b/contrib/znc-push.spec @@ -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) diff --git a/push.cpp b/push.cpp index dcd1601..9e2fade 100755 --- a/push.cpp +++ b/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")