diff --git a/.mod_data.yml b/.mod_data.yml index 7017423..5d3dc77 100644 --- a/.mod_data.yml +++ b/.mod_data.yml @@ -23,5 +23,8 @@ dependencies: # Configure dependencies url: http://taniwha.org/~bill/Shabby_v0.1.2.zip zip: true deploy: - GitHub: - enabled: true # activate/deactivate this deployment script \ No newline at end of file + - SpaceDock: + enabled: true # activate/deactivate this deployment script + mod-id: 2451 # The Spacedock mod ID for deployment + - GitHub: + enabled: true # activate/deactivate this deployment script \ No newline at end of file diff --git a/GameData/ConformalDecals/Assets/decal-blank.mu b/GameData/ConformalDecals/Assets/decal-blank.mu index 2f33090..a2e687d 100644 Binary files a/GameData/ConformalDecals/Assets/decal-blank.mu and b/GameData/ConformalDecals/Assets/decal-blank.mu differ diff --git a/GameData/ConformalDecals/Plugins/ConformalDecals.dll b/GameData/ConformalDecals/Plugins/ConformalDecals.dll index c4175b1..76e71ba 100644 Binary files a/GameData/ConformalDecals/Plugins/ConformalDecals.dll and b/GameData/ConformalDecals/Plugins/ConformalDecals.dll differ diff --git a/GameData/ConformalDecals/Versioning/ConformalDecals.version b/GameData/ConformalDecals/Versioning/ConformalDecals.version index 46028ef..0914349 100644 --- a/GameData/ConformalDecals/Versioning/ConformalDecals.version +++ b/GameData/ConformalDecals/Versioning/ConformalDecals.version @@ -6,7 +6,7 @@ { "MAJOR":0, "MINOR":1, - "PATCH":0, + "PATCH":1, "BUILD":0 }, "KSP_VERSION": diff --git a/README.md b/README.md index 36792f5..202c5af 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,19 @@ -# Conformal Decals v0.1.0 +# Conformal Decals v0.1.1 [![Build Status](https://travis-ci.org/drewcassidy/KSP-Conformal-Decals.svg?branch=release)](https://travis-ci.org/drewcassidy/KSP-Conformal-Decals) [![Art: CC BY-SA 4.0](https://img.shields.io/badge/Art%20License-CC%20BY--SA%204.0-orange.svg)](https://creativecommons.org/licenses/by-sa/4.0/) [![Code: GPL v3](https://img.shields.io/badge/Code%20License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) +![Screenshot](http://pileof.rocks/KSP/images/ConformalDecalsHeader.png) + Conformal Decals adds a set of decal stickers to KSP, as well as providing a framework for creating your own decals which conform to the surface of the parts they are attached to. ## Dependencies Required: -- KSP (1.8.0 to 1.9.0) +- KSP (1.8.x to 1.9.x) - B9 Part Switch (2.16.0). Bundled with release. - ModuleManager (4.1.3). Bundled with release. - Shabby (0.1.2). Bundled with release. +Optional: +- Wild Blue Tools. For custom decals category in the VAB and SPH. ## Credits @@ -27,6 +31,6 @@ Art assets and configuration files are licensed CC-BY-SA 4.0, as described in th Plugin code is distributed under the GPL v3, as described in the LICENSE-SOURCE.md file Any bundled mods are distributed under their own license: -- ModuleManager by blowfish and sarbian is distributed under a Creative Commons Sharealike license. More details, including source code, can be found here: https://forum.kerbalspaceprogram.com/index.php?/topic/50533-* +- ModuleManager by blowfish and sarbian is distributed under a Creative Commons Sharealike license. More details, including source code, can be found [here](https://forum.kerbalspaceprogram.com/index.php?/topic/50533-*). - B9PartSwitch by blowfish is distributed under the LGPL v3 license. -- Shabby by taniwha is distributed under the GPL v3 license. \ No newline at end of file +- Shabby by taniwha is distributed under the GPL v3 license. diff --git a/Source/ConformalDecals/ConformalDecals.csproj b/Source/ConformalDecals/ConformalDecals.csproj index 912b4f8..19d5ed4 100644 --- a/Source/ConformalDecals/ConformalDecals.csproj +++ b/Source/ConformalDecals/ConformalDecals.csproj @@ -68,6 +68,6 @@ - sh -e -c "cp -v '$(TargetPath)' '$(SolutionDir)/../Distribution/GameData/ConformalDecals/Plugins'" + sh -e -c "cp -v '$(TargetPath)' '$(SolutionDir)/../GameData/ConformalDecals/Plugins'" diff --git a/Source/ConformalDecals/ModuleConformalFlag.cs b/Source/ConformalDecals/ModuleConformalFlag.cs index d82ea41..4ce228b 100644 --- a/Source/ConformalDecals/ModuleConformalFlag.cs +++ b/Source/ConformalDecals/ModuleConformalFlag.cs @@ -95,6 +95,7 @@ namespace ConformalDecals { materialProperties.AddOrGetTextureProperty("_Decal", true).TextureUrl = newFlagUrl; UpdateMaterials(); + UpdateScale(); } private void SetFlagSymmetryCounterparts(string newFlagUrl) { diff --git a/changelog.txt b/changelog.txt index ffa5bb6..23b08f3 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,10 @@ +v0.1.1 +------ +Fixes: +- Fixed flag decal not adjusting to new texture sizes immediately. +- Fixed decal bounds being visible on launch. +- Fixed decal bounds being visible in the part icon. + v0.1.0 ------