forked from Skullywag/ExtendedStorage
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a3a00d9
commit d6bb3b1
Showing
29 changed files
with
149 additions
and
96 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
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,12 +1,27 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ModMetaData> | ||
<name>Extended Storage</name> | ||
<supportedVersions> | ||
<li>1.0</li> | ||
</supportedVersions> | ||
<author>(see description)</author> | ||
<description xml:whitespace="preserve">Adds additional storage buildings that multi stack items. Auto sort by Fluffy, Harmony by spdskatr | ||
|
||
Authors: Skullywag, Fluffy, spdskatr, DoctorVanGogh | ||
</description> | ||
<packageId>Skullywag.ExtendedStorage</packageId> | ||
<supportedVersions> | ||
<li>1.0</li> | ||
<li>1.1</li> | ||
</supportedVersions> | ||
<modDependenciesByVersion> | ||
<v1.1> | ||
<li> | ||
<packageId>brrainz.harmony</packageId> | ||
<displayName>Harmony</displayName> | ||
<steamWorkshopUrl>steam://url/CommunityFilePage/2009463077</steamWorkshopUrl> | ||
<downloadUrl>https://github.com/pardeike/HarmonyRimWorld/releases/latest</downloadUrl> | ||
</li> | ||
</v1.1> | ||
</modDependenciesByVersion> | ||
<loadAfter> | ||
<li>brrainz.harmony</li> | ||
</loadAfter> | ||
</ModMetaData> |
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,7 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<Manifest> | ||
<identifier>Extended Storage</identifier> | ||
<version>3.4.1.1</version> | ||
<version>3.5.0.0</version> | ||
<manifestUri>https://raw.githubusercontent.com/Skullywag/ExtendedStorage/master/About/Manifest.xml</manifestUri> | ||
<downloadUri>https://github.com/Skullywag/ExtendedStorage/releases/latest</downloadUri> | ||
</Manifest> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<?xml-stylesheet type="text/xsl" href="c:\program files (x86)\microsoft visual studio\2017\enterprise\team tools\static analysis tools\fxcop\Xml\CodeAnalysisReport.xsl"?> | ||
<FxCopReport Version="15.0"> | ||
<Localized> | ||
<String Key="Category">Category</String> | ||
<String Key="Certainty">Certainty</String> | ||
<String Key="CollapseAll">Collapse All</String> | ||
<String Key="CheckId">Check Id</String> | ||
<String Key="Error">Error</String> | ||
<String Key="Errors">error(s)</String> | ||
<String Key="ExpandAll">Expand All</String> | ||
<String Key="Help">Help</String> | ||
<String Key="Line">Line</String> | ||
<String Key="Messages">message(s)</String> | ||
<String Key="LocationNotStoredInPdb">[Location not stored in Pdb]</String> | ||
<String Key="Project">Project</String> | ||
<String Key="Resolution">Resolution</String> | ||
<String Key="Rule">Rule</String> | ||
<String Key="RuleFile">Rule File</String> | ||
<String Key="RuleDescription">Rule Description</String> | ||
<String Key="Source">Source</String> | ||
<String Key="Status">Status</String> | ||
<String Key="Target">Target</String> | ||
<String Key="Warning">Warning</String> | ||
<String Key="Warnings">warning(s)</String> | ||
<String Key="ReportTitle">Code Analysis Report</String> | ||
</Localized> | ||
<Exceptions> | ||
<Exception Keyword="CA0068" Kind="Engine" TreatAsWarning="True"> | ||
<Type>Microsoft.FxCop.Sdk.FxCopException</Type> | ||
<ExceptionMessage>Debug information could not be found for target assembly 'ExtendedStorage.dll'. For best analysis results, include the .pdb file with debug information for 'ExtendedStorage.dll' in the same directory as the target assembly.</ExceptionMessage> | ||
</Exception> | ||
</Exceptions> | ||
</FxCopReport> |
Empty file.
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 @@ | ||
<loadFolders> | ||
<v1.1> | ||
<li>/</li> | ||
<li>v1.1</li> | ||
</v1.1> | ||
</loadFolders> |
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
This file was deleted.
Oops, something went wrong.
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,13 @@ | ||
using UnityEngine; | ||
using Verse; | ||
|
||
namespace ExtendedStorage | ||
{ | ||
public class ES_Dialog_Rename : Dialog_Rename | ||
{ | ||
private Building_ExtendedStorage building; | ||
|
||
public ES_Dialog_Rename(Building_ExtendedStorage building) => this.building = building; | ||
protected override void SetName(string name) => building.label = name; | ||
} | ||
} |
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
3 changes: 1 addition & 2 deletions
3
Source/ExtendedStorage/Patches/CompressibilityDeciderUtility_IsSaveCompressible.cs
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
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
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
Oops, something went wrong.