-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Added Orbital Trade alert patches
If "We Had a Trader?" or "Tweaks Galore" are active, Realistic Orbital Trade now patches their alerts about orbital trade ships to include information about when they close their comms if the player triggered extra grace time in a trade.
- Loading branch information
Showing
30 changed files
with
493 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
originals |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
These directories/files are only here to ensure the assemblies with dependencies on other mods can build. Everything except their assemblies have been stripped out. | ||
|
||
For reference: | ||
|
||
- 1541408076: We Had a Trader? | ||
- 2695164414: Tweaks Galore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#Push-Location originals | ||
Remove-Item -Recurse -Force refs | ||
refasmer -v --all -O refs -g "originals\**\*.dll" | ||
#Pop-Location |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Continuous Integration | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- "README.md" | ||
- "CHANGELOG.md" | ||
- ".gitignore" | ||
tags-ignore: | ||
# This will ignore release versions tagged with a version identifier. We'll | ||
# use a separate workflow for them. | ||
- "v*" | ||
pull_request: | ||
paths-ignore: | ||
- README.md | ||
- "CHANGELOG.md" | ||
- ".gitignore" | ||
|
||
jobs: | ||
build: | ||
uses: ./.github/workflows/build.yml | ||
with: | ||
artifact-suffix: ${{ github.sha }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
/.vscode/obj | ||
|
||
/*/Assemblies | ||
|
||
*.sln |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>Library</OutputType> | ||
<TargetFramework>net48</TargetFramework> | ||
<PlatformTarget>x64</PlatformTarget> | ||
<LangVersion>10.0</LangVersion> | ||
<Nullable>enable</Nullable> | ||
|
||
<RootNamespace>RealisticOrbitalTrade.TweaksGalore</RootNamespace> | ||
<AssemblyName>RealisticOrbitalTrade.TweaksGalore</AssemblyName> | ||
<VersionPrefix>0.6.1</VersionPrefix> | ||
|
||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> | ||
|
||
<!-- Intellisense doesn't work without specifying these explicitly --> | ||
<!-- !! Don't check in with these uncommented !! --> | ||
<!-- <RimWorldSteamWorkshopFolderPath>C:\Program Files (x86)\Steam\steamapps\workshop\content\294100</RimWorldSteamWorkshopFolderPath> | ||
<RimWorldVersion>1.5</RimWorldVersion> --> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)' == 'Release'"> | ||
<DebugType>none</DebugType> | ||
<DebugSymbols>false</DebugSymbols> | ||
<Optimize>true</Optimize> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)' == 'Debug'"> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<DebugSymbols>true</DebugSymbols> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<!-- Mod --> | ||
<Compile Include="../Source/RealisticOrbitalTrade.TweaksGalore/**" /> | ||
</ItemGroup> | ||
|
||
<Choose> | ||
<When Condition="'$(RimWorldVersion)' == '1.5'"> | ||
<PropertyGroup> | ||
<DefineConstants>$(DefineConstants);v1_5</DefineConstants> | ||
<OutputPath>../1.5_TweaksGalore/Assemblies</OutputPath> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Krafs.Rimworld.Ref" Version="1.5.*-*"> | ||
<ExcludeAssets>runtime</ExcludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
</When> | ||
</Choose> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Lib.Harmony" Version="2.2.2"> | ||
<ExcludeAssets>runtime</ExcludeAssets> | ||
</PackageReference> | ||
<ProjectReference Include=".\mod.csproj"> | ||
<CopyLocal>False</CopyLocal> | ||
<Private>false</Private> | ||
</ProjectReference> | ||
<Reference Include="TweaksGalore"> | ||
<HintPath>$(RimWorldSteamWorkshopFolderPath)\2695164414\$(RimWorldVersion)\Assemblies\TweaksGalore.dll</HintPath> | ||
<CopyLocal>False</CopyLocal> | ||
<Private>false</Private> | ||
</Reference> | ||
</ItemGroup> | ||
</Project> |
Oops, something went wrong.