Skip to content

Commit

Permalink
Merge pull request #17 from RimWorldCCLTeam/development
Browse files Browse the repository at this point in the history
Update v0.12.1
  • Loading branch information
ForsakenShell committed Aug 30, 2015
2 parents 7962933 + b73b7c5 commit 32d1841
Show file tree
Hide file tree
Showing 77 changed files with 3,933 additions and 311 deletions.
2 changes: 1 addition & 1 deletion CommunityCoreLibrary.sln
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ Global
$30.inheritsScope = text/plain
$30.scope = text/plain
description = RimWorld Alpha 12 Community Core Library
version = 0.12.0
version = 0.12.1
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
5 changes: 2 additions & 3 deletions DLL_Project/Alerts/Alert_PlaceWorker_Restriction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,11 @@ public override string FullExplanation
get
{
var msg = new StringBuilder();
msg.AppendLine( "AlertPlaceWorkerRestrictionSupportRemovedDesc".Translate() );
foreach( var t in PlaceWorker_Restriction_Alert_Data.DestroyedThings )
{
msg.AppendLine( " " + t.def.defName );
}
return msg.ToString();
}
return "AlertPlaceWorkerRestrictionSupportRemovedDesc".Translate(msg.ToString());
}
}

Expand Down
12 changes: 11 additions & 1 deletion DLL_Project/CommunityCoreLibrary.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
<ReleaseVersion>0.12.0</ReleaseVersion>
<ReleaseVersion>0.12.1</ReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down Expand Up @@ -47,13 +47,17 @@
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Structures\CompInjectionSet.cs" />
<Compile Include="Defs\MainTab_HelpMenuDef.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="PlaceWorkers\PlaceWorker_OnlyUnderRoof.cs" />
<Compile Include="PlaceWorkers\PlaceWorker_WallAttachment.cs" />
<Compile Include="StaticClasses\CCL_Log.cs" />
<Compile Include="ThingComps\CompPawnGizmo.cs" />
<Compile Include="ThingComps\CompPowerLowIdleDraw.cs" />
<Compile Include="CompProperties\CompProperties_LowIdleDraw.cs" />
<Compile Include="Defs\AdvancedResearchDef.cs" />
<Compile Include="ThingComps\CompRangedGizmoGiver.cs" />
<Compile Include="Toils\Toils_Common.cs" />
<Compile Include="ThingComps\CompRefrigerated.cs" />
<Compile Include="StaticClasses\Icons.cs" />
Expand Down Expand Up @@ -102,6 +106,12 @@
<Compile Include="Structures\DesignatorData.cs" />
<Compile Include="Extensions\TerrainWithComps.cs" />
<Compile Include="Extensions\BuildableDef_Extensions.cs" />
<Compile Include="Verbs\VerbProperties_Extended.cs" />
<Compile Include="Verbs\Verb_ShootExtended.cs" />
<Compile Include="Extensions\ResearchProjectDef_Extensions.cs" />
<Compile Include="StaticClasses\HelpController.cs" />
<Compile Include="StaticClasses\HelpCategoryDefOf.cs" />
<Compile Include="Extensions\RecipeDef_Extensions.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down
Loading

0 comments on commit 32d1841

Please sign in to comment.