Skip to content
This repository has been archived by the owner on Aug 15, 2018. It is now read-only.

Commit

Permalink
v1.01
Browse files Browse the repository at this point in the history
  • Loading branch information
malahx committed Jul 21, 2016
1 parent 32c0a98 commit f523728
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 11 deletions.
Binary file modified GameData/ZeroMiniAVC/Plugins/KSP-AVC.dll
Binary file not shown.
10 changes: 7 additions & 3 deletions GameData/ZeroMiniAVC/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,22 @@ ZeroMiniAVC is a small plugin which disable and prune all MiniAVC add by others

#### How to install it?

Unzip all files. Put the 0ZeroMiniAVC folder in your KSP/GameData folder.
Unzip all files. Put the ZeroMiniAVC folder in your KSP/GameData folder.

#### How to update it?

Unzip all files. Merge the new 0ZeroMiniAVC folder with the old folder which is in your KSP/GameData folder.
Unzip all files. Merge the new ZeroMiniAVC folder with the old folder which is in your KSP/GameData folder.

#### How to uninstall it?

Delete the 0ZeroMiniAVC folder in your KSP/GameData folder.
Delete the ZeroMiniAVC folder in your KSP/GameData folder.

#### Changelog


v1.01 - 2016.07.21
* Fix: Added a deletion of existing MiniAVC already pruned.

v1.00 - 2016.07.11
* First release.

Expand Down
4 changes: 2 additions & 2 deletions GameData/ZeroMiniAVC/ZeroMiniAVC.version
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"NAME" : "ZeroMiniAVC",
"URL" : "https://raw.githubusercontent.com/malahx/ZeroMiniAVC/master/ZeroMiniAVC.version",
"CHANGE_LOG_URL" : "https://raw.githubusercontent.com/malahx/ZeroMiniAVC/master/README.md",
"DOWNLOAD" : "https://github.com/malahx/0ZeroMiniAVC/releases",
"DOWNLOAD" : "https://github.com/malahx/ZeroMiniAVC/releases",
"VERSION": {
"MAJOR" : 1,
"MINOR" : 0,
"PATCH" : 0,
"PATCH" : 1,
"BUILD" : 0
},
"KSP_VERSION": {
Expand Down
2 changes: 1 addition & 1 deletion Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.

[assembly: AssemblyVersion ("1.0.0.*")]
[assembly: AssemblyVersion ("1.0.1.*")]

// The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing.
Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,22 @@ ZeroMiniAVC is a small plugin which disable and prune all MiniAVC add by others

#### How to install it?

Unzip all files. Put the 0ZeroMiniAVC folder in your KSP/GameData folder.
Unzip all files. Put the ZeroMiniAVC folder in your KSP/GameData folder.

#### How to update it?

Unzip all files. Merge the new 0ZeroMiniAVC folder with the old folder which is in your KSP/GameData folder.
Unzip all files. Merge the new ZeroMiniAVC folder with the old folder which is in your KSP/GameData folder.

#### How to uninstall it?

Delete the 0ZeroMiniAVC folder in your KSP/GameData folder.
Delete the ZeroMiniAVC folder in your KSP/GameData folder.

#### Changelog


v1.01 - 2016.07.21
* Fix: Added a deletion of existing MiniAVC already pruned.

v1.00 - 2016.07.11
* First release.

Expand Down
3 changes: 3 additions & 0 deletions ZeroMiniAVC.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ void OnApplicationQuit() {
for (int _i = _assemblies.Count - 1; _i >= 0; --_i) {
AssemblyLoader.LoadedAssembly _assembly = _assemblies[_i];
if (_assembly.name == "MiniAVC") {
if (File.Exists (_assembly.path + ".pruned")) {
File.Delete (_assembly.path + ".pruned");
}
File.Move (_assembly.path, _assembly.path + ".pruned");
string[] _path = _assembly.path.Split (new char[2] { '/', '\\' });
string _mod = _path[_path.IndexOf ("GameData") + 1];
Expand Down
4 changes: 2 additions & 2 deletions ZeroMiniAVC.version
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"NAME" : "ZeroMiniAVC",
"URL" : "https://raw.githubusercontent.com/malahx/ZeroMiniAVC/master/ZeroMiniAVC.version",
"CHANGE_LOG_URL" : "https://raw.githubusercontent.com/malahx/ZeroMiniAVC/master/README.md",
"DOWNLOAD" : "https://github.com/malahx/0ZeroMiniAVC/releases",
"DOWNLOAD" : "https://github.com/malahx/ZeroMiniAVC/releases",
"VERSION": {
"MAJOR" : 1,
"MINOR" : 0,
"PATCH" : 0,
"PATCH" : 1,
"BUILD" : 0
},
"KSP_VERSION": {
Expand Down

0 comments on commit f523728

Please sign in to comment.