-
Notifications
You must be signed in to change notification settings - Fork 4
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
Showing
6 changed files
with
92 additions
and
63 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 |
---|---|---|
@@ -1,51 +1,61 @@ | ||
## v1.2.0 | ||
##### New | ||
- Add `defaultControlMode`, `defaultVabControlMode`, `defaultSphControlMode` configuration settings to control default | ||
control mode used for various situations. | ||
|
||
## v1.1.0 | ||
##### New | ||
- Add `KSPAssembly` attribute to assembly. | ||
|
||
##### Changes | ||
- `PLANEMODE_USER_SETTINGS` is deprecated (although still supported), a Module Manager patch should now be used to | ||
modify settings. An example patch is distributed in the `PlaneMode/Configuration` directory. | ||
- Clarified log message that made it appeared as if code was being executed more times than it was. | ||
- Simplified the way textures are loaded. | ||
|
||
##### Fixes | ||
- Fix Plane mode settings being persisted in certain situations. | ||
- Fix the display of the log level for debug messages. | ||
|
||
## v1.0.0 | ||
##### Fixes | ||
- Initalize ControlMode to Rocket to avoid warning on vessel load | ||
|
||
## v0.4.1 | ||
##### Fixes | ||
- Kerbal Space Program v1.0 compatibility | ||
|
||
## v0.4.0 | ||
##### New | ||
- Added setting to disable Application Launcher (stock toolbar) button. | ||
- Docking controls are now supported. | ||
|
||
##### Fixes | ||
- Interaction with trim controls should now be fixed. | ||
- Interaction with SAS/Autopilot should now be fixed. | ||
|
||
## v0.3.0 | ||
##### New | ||
- Use stock Application Launcher. | ||
- Control mode is persisted with command pods, probe cores, and docking ports. The mode used is determined by whichever | ||
part is selected with the *Control From Here* button. | ||
- Control mode is automatically selected for new parts in the editor. Parts in the VAB are placed in Rocket mode and | ||
parts in the SPH are placed in Plane mode. | ||
|
||
##### Changes | ||
- Renamed from "Aeroplane Mode" to "Plane Mode". | ||
- Settings configuration has been changed slightly and toggle and hold keys have both been defaulted to None rather | ||
than ScrollLock and Home. | ||
|
||
##### Fixes | ||
- Handle switching vessels better. | ||
## v1.3.0 | ||
##### New | ||
- Add actions to all applicables parts to change control modes, making them available to action groups. Available actions are: | ||
- `Control Mode: Toggle` | ||
- `Control Mode: Rocket` | ||
- `Control Mode: Plane` | ||
|
||
##### Fixes | ||
- Fix example configuration patch to show how to actually change toggle keys. | ||
|
||
## v1.2.0 | ||
##### New | ||
- Add `defaultControlMode`, `defaultVabControlMode`, `defaultSphControlMode` configuration settings to control default | ||
control mode used for various situations. | ||
|
||
## v1.1.0 | ||
##### New | ||
- Add `KSPAssembly` attribute to assembly. | ||
|
||
##### Changes | ||
- `PLANEMODE_USER_SETTINGS` is deprecated (although still supported), a Module Manager patch should now be used to | ||
modify settings. An example patch is distributed in the `PlaneMode/Configuration` directory. | ||
- Clarified log message that made it appeared as if code was being executed more times than it was. | ||
- Simplified the way textures are loaded. | ||
|
||
##### Fixes | ||
- Fix Plane mode settings being persisted in certain situations. | ||
- Fix the display of the log level for debug messages. | ||
|
||
## v1.0.0 | ||
##### Fixes | ||
- Initalize ControlMode to Rocket to avoid warning on vessel load | ||
|
||
## v0.4.1 | ||
##### Fixes | ||
- Kerbal Space Program v1.0 compatibility | ||
|
||
## v0.4.0 | ||
##### New | ||
- Added setting to disable Application Launcher (stock toolbar) button. | ||
- Docking controls are now supported. | ||
|
||
##### Fixes | ||
- Interaction with trim controls should now be fixed. | ||
- Interaction with SAS/Autopilot should now be fixed. | ||
|
||
## v0.3.0 | ||
##### New | ||
- Use stock Application Launcher. | ||
- Control mode is persisted with command pods, probe cores, and docking ports. The mode used is determined by whichever | ||
part is selected with the *Control From Here* button. | ||
- Control mode is automatically selected for new parts in the editor. Parts in the VAB are placed in Rocket mode and | ||
parts in the SPH are placed in Plane mode. | ||
|
||
##### Changes | ||
- Renamed from "Aeroplane Mode" to "Plane Mode". | ||
- Settings configuration has been changed slightly and toggle and hold keys have both been defaulted to None rather | ||
than ScrollLock and Home. | ||
|
||
##### Fixes | ||
- Handle switching vessels better. |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
os: Visual Studio 2015 RC | ||
os: Visual Studio 2015 | ||
version: "{build}" | ||
|
||
configuration: | ||
|
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,6 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Apokee.Artwork" version="0.2.0" /> | ||
<package id="Cake" version="0.4.3" /> | ||
<package id="Cake" version="0.5.0" /> | ||
<package id="YamlDotNet" version="3.6.1" /> | ||
</packages> |