summary refs log tree commit diff stats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md22
1 files changed, 11 insertions, 11 deletions
diff --git a/README.md b/README.md
index 9effee2..26c452b 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,13 @@
-Rust hexchat-plugin
-===================
+Rust hexchat-unsafe-plugin
+==========================
 
-`hexchat-plugin` provides safe and rusty API bindings for developing native
+`hexchat-unsafe-plugin` provides rusty API bindings for developing native
 HexChat plugins.
 
 To get started, implement `hexchat_plugin::Plugin` on a struct and use the
-`hexchat_plugin!(impl Plugin)` macro in your `lib.rs`. Do not provide a `main`,
-as it will not work. Make sure to use the `cdylib` crate-type, or it will also
-not work.
+`hexchat_plugin!('a, impl Plugin<'a>)` macro in your `lib.rs`. Do not provide a
+`main`, as it will not work. Make sure to use the `cdylib` crate-type, or it
+will also not work.
 
 Also note that plugins may be loaded multiple times. It's recommended to avoid
 using global state (statics, thread locals) so as to not cause issues with it.
@@ -16,25 +16,25 @@ Examples
 --------
 
 For a production-grade plugin using this crate, take a look at
-<https://github.com/SoniEx2/cw2-hexchat>.
+[TODO].
 
 License
 -------
 
 ```text
 Hexchat Plugin API Bindings for Rust
-Copyright (C) 2018, 2021 Soni L.
+Copyright (C) 2018, 2021, 2022 Soni L.
 
 This program is free software: you can redistribute it and/or modify
-it under the terms of the GNU Affero General Public License as
+it under the terms of the GNU General Public License as
 published by the Free Software Foundation, either version 3 of the
 License, or (at your option) any later version.
 
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU Affero General Public License for more details.
+GNU General Public License for more details.
 
-You should have received a copy of the GNU Affero General Public License
+You should have received a copy of the GNU General Public License
 along with this program.  If not, see <https://www.gnu.org/licenses/>.
 ```