Skip to content

Commit

Permalink
v0.10.8 release
Browse files Browse the repository at this point in the history
v0.10.8 release
  • Loading branch information
Sigma88 committed Feb 8, 2021
2 parents 421eaea + 09c7b22 commit 2ff65ad
Show file tree
Hide file tree
Showing 56 changed files with 37 additions and 33 deletions.
7 changes: 7 additions & 0 deletions Changelog.txt
@@ -1,3 +1,10 @@
**v0.10.8**

- Changed folder for better install automation (CurseForge client)
- Updated to KSP 1.11.1 and Kopernicus 1.11.1_Release77
- Removed buggy minDetailDistance scaling


**v0.10.7**

- Updated to KSP 1.8.1 and Kopernicus 1.8.1-1
Expand Down
5 changes: 0 additions & 5 deletions GameData/Sigma/Dimensions/LoadingScreens/LoadingScreens.cfg

This file was deleted.

1 change: 0 additions & 1 deletion GameData/Sigma/Dimensions/LoadingScreens/LoadingTips.txt

This file was deleted.

Expand Up @@ -8,9 +8,6 @@
{
@PQS
{
&minDetailDistance = 8
@minDetailDistance /= #$../SigmaDimensions/Resize$

%Mods
{
#../../SigmaDimensions {}
Expand Down
Binary file not shown.
File renamed without changes.
File renamed without changes.
48 changes: 27 additions & 21 deletions README.md
@@ -1,23 +1,26 @@
# Sigma Dimensions
# *Sigma Dimensions*

*The Universal Rescale Mod for KSP*

**The Universal Rescale Mod for KSP**

### Downloads
- [GitHub](https://github.com/Sigma88/Sigma-Dimensions/releases)
- [CurseForge](https://www.curseforge.com/kerbal/ksp-mods/sigma-dimensions) (Automatic install available)

- [Releases](https://github.com/Sigma88/Sigma-Dimensions/releases)
- [ChangeLog](https://raw.githubusercontent.com/Sigma88/Sigma-Dimensions/master/Changelog.txt)


### Required Mods

- [Kopernicus](https://github.com/Kopernicus/Kopernicus)

### Other Links
- [ChangeLog](https://raw.githubusercontent.com/Sigma88/Sigma-Dimensions/master/Changelog.txt)
- [Source](https://github.com/Sigma88/Sigma-Dimensions/)

### How to support me

### Support
If you enjoy my mods, please consider supporting me with a small donation.

[![DonatePounds](https://i.imgur.com/xBBQy19.png "Donate Pounds")](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=65VBNHB39BTKG&item_name=Sigma-Dimensions&currency_code=GBP)[![DonateEuros](https://i.imgur.com/kKYb2lE.png "Donate Euros")](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=65VBNHB39BTKG&item_name=Sigma-Dimensions&currency_code=EUR)[![DonateDollars](https://i.imgur.com/TT1Vymu.png "Donate Dollars")](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=65VBNHB39BTKG&item_name=Sigma-Dimensions&currency_code=USD)
[![Donate Pounds](https://i.imgur.com/xBBQy19.png)][£][![Donate Euros](https://i.imgur.com/kKYb2lE.png)][][![Donate Dollars](https://i.imgur.com/TT1Vymu.png)][$]

[£]: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=65VBNHB39BTKG&item_name=Sigma-Dimensions&currency_code=GBP "Donate Pounds"
[]: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=65VBNHB39BTKG&item_name=Sigma-Dimensions&currency_code=EUR "Donate Euros"
[$]: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=65VBNHB39BTKG&item_name=Sigma-Dimensions&currency_code=USD "Donate Dollars"


### How To Report A Bug
Expand All @@ -27,17 +30,21 @@ To report a bug or to ask for support, open an issue on [GitHub](https://github.

### How To Install

To install the mod, follow these instructions:
This mod can be installed and updated automatically using the [CurseForge App](https://curseforge.overwolf.com/).

```
>> Install Manually
  - Remove any other version of the mod.
  - Unzip the archive directly into the folder 'KSP\GameData'
- Install any required mods
To install the mod manually, follow these instructions:

**1. Install Manually**
- Remove any other version of the mod.
- Unzip the archive directly into the folder 'KSP\GameData'

**2. Uninstall manually**
- Delete the folder 'KSP\GameData\SigmaDimensions'


### License
All Rights Reserved

>> Uninstall manually
  - Delete the folder 'KSP\GameData\Sigma\Dimensions'
```


# Settings
Expand Down Expand Up @@ -280,7 +287,6 @@ The PQSCity_Groups root node contains the groups definitions:
<br>**NOTE:**

If the node CENTER is not defined, or the positions defined are not valid,

the central position will be defined as the position of the first valid PQSMod of the group<br><br><br>

- **MODS**
Expand Down
Binary file modified [Source]/Distribution/SigmaDimensions.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion [Source]/SigmaDimensions/Dimensions/Compatibility.cs
Expand Up @@ -24,7 +24,7 @@ public void ModuleManagerPostLoad()
double Rescale = 1;
double customRescale = 1;

if (!double.TryParse(GameDatabase.Instance.GetConfigNode("Sigma/Dimensions/Settings/SigmaDimensions")?.GetValue("Rescale"), out Rescale))
if (!double.TryParse(GameDatabase.Instance.GetConfigNode("SigmaDimensions/Settings/SigmaDimensions")?.GetValue("Rescale"), out Rescale))
{
Rescale = 1;
}
Expand Down
2 changes: 1 addition & 1 deletion [Source]/SigmaDimensions/UserSettings.cs
Expand Up @@ -17,7 +17,7 @@ internal static ConfigNode ConfigNode
}
}

static string folder = "GameData/Sigma/Dimensions/";
static string folder = "GameData/SigmaDimensions/";
static string file = "Settings";
internal static string nodeName = "SigmaDimensions";

Expand Down
2 changes: 1 addition & 1 deletion [Source]/SigmaDimensions/Version.cs
Expand Up @@ -6,7 +6,7 @@ namespace SigmaDimensionsPlugin
[KSPAddon(KSPAddon.Startup.Instantly, true)]
public class Version : MonoBehaviour
{
public static readonly System.Version number = new System.Version("0.10.7");
public static readonly System.Version number = new System.Version("0.10.8");

void Awake()
{
Expand Down

0 comments on commit 2ff65ad

Please sign in to comment.