-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from RimWorldCCLTeam/development
v0.12.2 Update
- Loading branch information
Showing
33 changed files
with
160 additions
and
29 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 |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
*.userprefs | ||
*.sln.docstates | ||
DLL_Project/Source-DLLs/*.dll | ||
DLL_Project/*.bat | ||
|
||
# Build results | ||
[Dd]ebug/ | ||
|
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
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,36 @@ | ||
REM DO NOT RECOMMIT THIS FILE! | ||
REM This is a local file copy after build. Get it once and your .gitnore | ||
REM should handle it after that. Make all your local copies at the end. | ||
|
||
REM Set this to your local RimWorld install path and CCL Assemblies directory | ||
Set InstalledCCLAssemblies="/badkarma/" | ||
|
||
if NOT EXIST %InstalledCCLAssemblies% ( | ||
echo Missing or invalid copy target: | ||
echo %InstalledCCLAssemblies% | ||
EXIT -1 | ||
) | ||
|
||
echo Build Config: %1 | ||
echo Build Target: %2 | ||
echo Solution Path: %3 | ||
echo CCL Install Path: %InstalledCCLAssemblies% | ||
|
||
echo Copy to RimWorld | ||
copy %2 %InstalledCCLAssemblies% | ||
|
||
if %1 == Debug ( | ||
echo Copy to Modders Resource | ||
copy %2 "%3_Mod\Modders Resource\Community Core Library\Assemblies" | ||
) else ( | ||
echo Copy to User Release | ||
copy %2 "%3_Mod\User Release\Community Core Library\Assemblies" | ||
) | ||
|
||
REM Add any other local copies here | ||
rem goto Finished | ||
|
||
rem echo Copy to ModPile | ||
rem copy %2 "C:\Utils\dev\Projects\ModPile\ModPile_ProjectDLL\Source-DLLs" | ||
|
||
:Finished |
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 |
---|---|---|
|
@@ -12,5 +12,7 @@ public struct DesignatorData | |
|
||
public string designationCategoryDef; | ||
|
||
public Type designatorNextTo; | ||
|
||
} | ||
} |
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
Binary file modified
BIN
+1 KB
(100%)
_Mod/Modders Resource/Community Core Library/Assemblies/Community Core Library.dll
Binary file not shown.
Binary file removed
BIN
-4.07 KB
...ders Resource/Community Core Library/Textures/UI/Icons/Commands/GroupButton.png
Binary file not shown.
Binary file removed
BIN
-4.07 KB
...ers Resource/Community Core Library/Textures/UI/Icons/Commands/LinkedButton.png
Binary file not shown.
Binary file removed
BIN
-4.07 KB
...dders Resource/Community Core Library/Textures/UI/Icons/Commands/NextButton.png
Binary file not shown.
Binary file removed
BIN
-4.07 KB
...dders Resource/Community Core Library/Textures/UI/Icons/Commands/RoomButton.png
Binary file not shown.
Binary file added
BIN
+5.73 KB
...Resource/Community Core Library/Textures/UI/Icons/Commands/SelectLightColor.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+7.76 KB
... Resource/Community Core Library/Textures/UI/Icons/Commands/ShareLightColor.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+8.45 KB
...ders Resource/Community Core Library/Textures/UI/Icons/Commands/ShareSowTag.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Binary file modified
BIN
+512 Bytes
(100%)
_Mod/User Release/Community Core Library/Assemblies/Community Core Library.dll
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 |
---|---|---|
|
@@ -31,5 +31,4 @@ | |
|
||
<RefrigeratedStorage>냉장 보관</RefrigeratedStorage> | ||
|
||
|
||
</LanguageData> |
Binary file removed
BIN
-4.07 KB
.../User Release/Community Core Library/Textures/UI/Icons/Commands/GroupButton.png
Binary file not shown.
Binary file removed
BIN
-4.07 KB
...User Release/Community Core Library/Textures/UI/Icons/Commands/LinkedButton.png
Binary file not shown.
Binary file removed
BIN
-4.07 KB
_Mod/User Release/Community Core Library/Textures/UI/Icons/Commands/NextButton.png
Binary file not shown.
Binary file removed
BIN
-4.07 KB
_Mod/User Release/Community Core Library/Textures/UI/Icons/Commands/RoomButton.png
Binary file not shown.
Binary file added
BIN
+5.73 KB
... Release/Community Core Library/Textures/UI/Icons/Commands/SelectLightColor.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+7.76 KB
...r Release/Community Core Library/Textures/UI/Icons/Commands/ShareLightColor.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+8.45 KB
.../User Release/Community Core Library/Textures/UI/Icons/Commands/ShareSowTag.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.