Compare commits

..

No commits in common. "e6dd981321dca72416fd8ff24ade24b225971a03" and "cad70e553267ddfcce3b43d183e64105181aadb9" have entirely different histories.

5 changed files with 5 additions and 42 deletions

View file

@ -1,3 +0,0 @@
* Added deploy script
* Fixed LoadFolders for Revia and Moyo
* Added changelogs to release page

View file

@ -5,15 +5,15 @@
<!-- Mods --> <!-- Mods -->
<li IfModActive="VanillaExpanded.VGeneticsE">Content/Mods/VGE</li> <li IfModActive="VanillaExpanded.VGeneticsE">Content/Mods/VGE</li>
<li IfModActive="rjw.milk.humanoid">Content/Mods/Milk</li> <li IfModActive="rjw.milk.humanoid">Content/Mods/Milk</li>
<li IfModActive="Nemonian.MY">Content/Mods/Moyo</li> <li IfModActive="moyo">Content/Mods/Moyo</li>
<li IfModActive="FS.ReviaRace">Content/Mods/Revia</li> <li IfModActive="revia">Content/Mods/Revia</li>
</v1.3> </v1.3>
<v1.4> <v1.4>
<li>Content/Base</li> <li>Content/Base</li>
<!-- Mods --> <!-- Mods -->
<li IfModActive="VanillaExpanded.VGeneticsE">Content/Mods/VGE</li> <li IfModActive="VanillaExpanded.VGeneticsE">Content/Mods/VGE</li>
<li IfModActive="rjw.milk.humanoid">Content/Mods/Milk</li> <li IfModActive="rjw.milk.humanoid">Content/Mods/Milk</li>
<li IfModActive="Nemonian.MY">Content/Mods/Moyo</li> <li IfModActive="moyo">Content/Mods/Moyo</li>
<li IfModActive="FS.ReviaRace">Content/Mods/Revia</li> <li IfModActive="revia">Content/Mods/Revia</li>
</v1.4> </v1.4>
</loadFolders> </loadFolders>

View file

@ -114,7 +114,6 @@ This mod requires RJW and must be placed somewhere below it.
* Update milk mod support * Update milk mod support
* FCP dogmeat * FCP dogmeat
* Alpha mythology * Alpha mythology
* Avali
### Test and improve ### Test and improve
* Race to the rim * Race to the rim
* Dragon's descent crossbreeding * Dragon's descent crossbreeding

View file

@ -1,8 +1,3 @@
11.4.0
-Added deploy script
-Fixed LoadFolders for Revia and Moyo
-Added changelogs to release page
11.3.3 11.3.3
-Added support for DLC races -Added support for DLC races
@ -364,5 +359,3 @@ Bovine Penis multi surgery bow require bovine penis and the label is fixed
-added length and width to custom parts -added length and width to custom parts
-mist men now get parts and gender -mist men now get parts and gender
-Kijin hot Spring grants 10% fertility -Kijin hot Spring grants 10% fertility

View file

@ -1,26 +0,0 @@
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]