diff --git a/README.md b/README.md
index 137c2b9..549e966 100644
--- a/README.md
+++ b/README.md
@@ -4,16 +4,13 @@
## Overview
-**Textractor** (a.k.a. NextHooker) is an open-source 32 bit* text hooker for Windows/Wine based off of [ITHVNR](http://www.hongfire.com/forum/showthread.php/438331-ITHVNR-ITH-with-the-VNR-engine).
+**Textractor** (a.k.a. NextHooker) is an open-source x86/x64 text hooker for Windows/Wine based off of [ITHVNR](http://www.hongfire.com/forum/showthread.php/438331-ITHVNR-ITH-with-the-VNR-engine).
![How it looks](https://media.discordapp.net/attachments/330538905072041994/486629608456847360/unknown.png?width=1083&height=353)
-*Compatible with 64 bit operating systems. 64 bit version with very limited functionality available on request.
-
## Downloads
-Releases of Textractor can be found [here](https://github.com/Artikash/Textractor/releases).
-Additional extensions for Textractor can be found [here](https://github.com/Artikash/Extensions/releases).
+Releases of Textractor can be found [here](https://github.com/Artikash/Textractor/releases).
Previous releases of ITHVNR can be found [here](https://github.com/mireado/ITHVNR/releases).
@@ -27,7 +24,7 @@ Previous releases of ITHVNR can be found [here](https://github.com/mireado/ITHVN
## Extensions
See my [Example Extension project](https://github.com/Artikash/ExampleExtension) to see how to build an extension.
-See the extensions folder and my [Extensions project](https://github.com/Artikash/Extensions) for examples of what extensions can do.
+See the extensions folder for examples of what extensions can do.
## Contributing
@@ -45,7 +42,8 @@ The host (see GUI/host folder) injects vnrhook.dll (created from the vnrhook fol
Host writes to hostPipe, vnrhook writes to hookPipe.
vnrhook waits for the pipe to be connected, then injects a few instructions into any text outputting functions (e.g. TextOut, GetGlyphOutline) that cause their input to be sent through the pipe.
Additional information about hooks is shared through a file view (a.k.a. section object) that is mapped to a reference to the TextHook class.
-The text that the host receives through the pipe is then processed a little before being dispatched back to the GUI and displayed.
+The text that the host receives through the pipe is then processed a little before being dispatched back to the GUI.
+Finally, the GUI dispatches the text to extensions before displaying it.
## Developers