diff --git a/LATEST_CHANGELOG b/LATEST_CHANGELOG
new file mode 100644
index 0000000..9a2c399
--- /dev/null
+++ b/LATEST_CHANGELOG
@@ -0,0 +1,3 @@
+* Added deploy script
+* Fixed LoadFolders for Revia and Moyo
+* Added changelogs to release page
diff --git a/LoadFolders.xml b/LoadFolders.xml
index 93049fb..7be0397 100644
--- a/LoadFolders.xml
+++ b/LoadFolders.xml
@@ -5,15 +5,15 @@
Content/Mods/VGE
Content/Mods/Milk
- Content/Mods/Moyo
- Content/Mods/Revia
+ Content/Mods/Moyo
+ Content/Mods/Revia
Content/Base
Content/Mods/VGE
Content/Mods/Milk
- Content/Mods/Moyo
- Content/Mods/Revia
+ Content/Mods/Moyo
+ Content/Mods/Revia
\ No newline at end of file
diff --git a/ReadMe.md b/ReadMe.md
index d7255ad..c823a23 100644
--- a/ReadMe.md
+++ b/ReadMe.md
@@ -114,6 +114,7 @@ This mod requires RJW and must be placed somewhere below it.
* Update milk mod support
* FCP dogmeat
* Alpha mythology
+* Avali
### Test and improve
* Race to the rim
* Dragon's descent crossbreeding
diff --git a/changelog.txt b/changelog.txt
index 0cf4a34..996c4ec 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -1,3 +1,8 @@
+11.4.0
+-Added deploy script
+-Fixed LoadFolders for Revia and Moyo
+-Added changelogs to release page
+
11.3.3
-Added support for DLC races
@@ -358,4 +363,6 @@ Bovine Penis multi surgery bow require bovine penis and the label is fixed
-tweak breeders delight
-added length and width to custom parts
-mist men now get parts and gender
--Kijin hot Spring grants 10% fertility
\ No newline at end of file
+-Kijin hot Spring grants 10% fertility
+
+
diff --git a/deploy.ps1 b/deploy.ps1
new file mode 100644
index 0000000..492c4a1
--- /dev/null
+++ b/deploy.ps1
@@ -0,0 +1,26 @@
+Write-Output "Wait! Did you update LATEST_CHANGELOG?"
+pause
+
+$l = ".\LATEST_CHANGELOG"
+$c = ".\changelog.txt"
+$m = "Update to " + $args[0]
+
+Write-Output ("Deploying version " + $args[0])
+
+$a = Get-Content $l
+$b = $a | ForEach-Object { "* " + $_ }
+$b | Set-Content $l
+
+Write-Output $b
+
+$(
+ ($args[0])
+ ($a | ForEach-Object { "-" + $_ })
+ ("")
+ (Get-Content $c -Raw)
+) | Set-Content $c
+
+git add $l $c
+git commit -q -m $m
+git tag $args[0]
+git push origin $args[0]
\ No newline at end of file