diff --git a/A320UE/README.md b/A320UE/README.md
index 30f1f2a..ccca89f 100644
--- a/A320UE/README.md
+++ b/A320UE/README.md
@@ -11,7 +11,7 @@ More specifically, it adds
### Download
-You can get the latest version [here]().
+You can get the latest version [here](https://github.com/smiley22/XPPlugins/releases/tag/A320UE).
### Installation
Simply extract the .zip archive into the *plugins* directory of your *FlightFactor A320 ultimate* installation, e.g. *X Plane 11\Aircraft\FlightFactor A320 ultimate\plugins*.
diff --git a/BetterMouseYoke/README.md b/BetterMouseYoke/README.md
index 52aea01..18b04f2 100644
--- a/BetterMouseYoke/README.md
+++ b/BetterMouseYoke/README.md
@@ -17,6 +17,14 @@ The absolute mouse position on the screen represents the deviation from center o
Additionally, a magenta text indicator is displayed in the upper-left corner of the screen when mouse yoke control is active.
+
+### Download
+You can get the latest version [here](https://github.com/smiley22/XPPlugins/releases/tag/BetterMouseYoke).
+
+### Installation
+Simply extract the .zip archive into the *plugins* directory of your *X Plane 11* installation, e.g. *X Plane 11\Resources\plugins*.
+
+
diff --git a/CycleQuickLooks/README.md b/CycleQuickLooks/README.md
index edd85e7..a22b756 100644
--- a/CycleQuickLooks/README.md
+++ b/CycleQuickLooks/README.md
@@ -5,4 +5,11 @@ The plugin adds two new commands that let you cycle through a plane's configured
* *CycleQuickLooks/Backward* cycles backward to the previous quick look
-![alt text](image.jpg?raw=true)
\ No newline at end of file
+### Download
+You can get the latest version [here](https://github.com/smiley22/XPPlugins/releases/tag/CycleQuickLooks).
+
+### Installation
+Simply extract the .zip archive into the *plugins* directory of your *X Plane 11* installation, e.g. *X Plane 11\Resources\plugins*.
+
+
+![alt text](image.jpg?raw=true)
diff --git a/PluginLoader/README.md b/PluginLoader/README.md
index 766558a..ecfea12 100644
--- a/PluginLoader/README.md
+++ b/PluginLoader/README.md
@@ -8,4 +8,11 @@ The loader looks for any dll files in its directory and attempts to load them as
The plugin also adds the command _Plugin/Reload_ to XP11 that unloads all loaded plugins from memory and then reloads them from their respective dll file from disk.
-![alt text](image.jpg?raw=true)
\ No newline at end of file
+### Download
+You can get the latest version [here](https://github.com/smiley22/XPPlugins/releases/tag/PluginLoader).
+
+### Installation
+Simply extract the .zip archive into the *plugins* directory of your *X Plane 11* installation, e.g. *X Plane 11\Resources\plugins*.
+
+
+![alt text](image.jpg?raw=true)
diff --git a/ToggleMouseLook/README.md b/ToggleMouseLook/README.md
index cbbe040..128d3c5 100644
--- a/ToggleMouseLook/README.md
+++ b/ToggleMouseLook/README.md
@@ -8,4 +8,12 @@ The plugin adds two new commands that mimic the mouse look behaviour of Prepar3D
Please note this plugin is for the Windows version of X-Plane 11 only. It does **not** work with either MacOS or Linux versions.
+
+### Download
+You can get the latest version [here](https://github.com/smiley22/XPPlugins/releases/tag/ToggleMouseLook).
+
+### Installation
+Simply extract the .zip archive into the *plugins* directory of your *X Plane 11* installation, e.g. *X Plane 11\Resources\plugins*.
+
+
![alt text](image.jpg?raw=true)
diff --git a/package.ps1 b/package.ps1
index 049b7b9..86cb3ab 100644
--- a/package.ps1
+++ b/package.ps1
@@ -16,7 +16,6 @@ function main($plugin, $version) {
}
function createArchive($plugin, [string] $version) {
- $dir = "$PSScriptRoot\$plugin"
$zip = "$PSScriptRoot\${plugin}_v${version}.zip"
__using($fs = New-Object IO.FileStream $zip, 'Create') {
__using($ar = New-Object IO.Compression.ZipArchive $fs, 'Create') {