Compare commits

...

7 Commits

Author SHA1 Message Date
AsmodeusRex e6dd981321 Revert changes to CI 2022-12-20 17:13:33 -08:00
AsmodeusRex 8cbc499365 Update CI 2022-12-20 17:07:55 -08:00
AsmodeusRex d7463fd566 Update deploy script 2022-12-20 16:38:51 -08:00
AsmodeusRex 461c96f6dd Update to 11.4.0 2022-12-20 16:33:30 -08:00
AsmodeusRex a1a0021af8 Add deployer 2022-12-18 20:27:05 -08:00
AsmodeusRex 39d9b1b04b Update CI 2022-12-18 19:34:36 -08:00
AsmodeusRex 981444e0fc Fix LoadFolders 2022-12-17 22:39:49 -08:00
5 changed files with 42 additions and 5 deletions

3
LATEST_CHANGELOG Normal file
View File

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

View File

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

View File

@ -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

View File

@ -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
-Kijin hot Spring grants 10% fertility

26
deploy.ps1 Normal file
View File

@ -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]