Skip to content

Commit a3d8564

Browse files
committed
merged master -> main
1 parent 702cd48 commit a3d8564

16 files changed

Lines changed: 919 additions & 631 deletions

.github/workflows/build.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: build
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ "main" ]
66
paths:
77
- '**/*.cs'
88
pull_request:
@@ -13,5 +13,4 @@ on:
1313

1414
jobs:
1515
build:
16-
uses: KSPModdingLibs/KSPBuildTools/.github/workflows/build.yml@main
17-
16+
uses: KSPModdingLibs/KSPBuildTools/.github/workflows/build.yml@0.0.5

.github/workflows/create-release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ on:
99

1010
jobs:
1111
create-release:
12-
uses: KSPModdingLibs/KSPBuildTools/.github/workflows/create-release.yml@main
12+
uses: KSPModdingLibs/KSPBuildTools/.github/workflows/create-release.yml@0.0.5
1313
with:
1414
version-string: ${{ inputs.version-string }}
15-
version-template-extension: ''

.gitignore

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
.vs
2-
/packages
3-
.user
4-
bin/
5-
obj/
6-
7-
GameData/DistantObject/DistantObject.dll
8-
GameData/DistantObject/DistantObject.pdb
2+
bin
3+
obj
4+
*.user
5+
/GameData/DistantObject/DistantObject.dll
6+
/GameData/DistantObject/DistantObject.pdb
7+
/GameData/DistantObject/DistantObject.version

ChangeLog.md

Lines changed: 69 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -1,139 +1,146 @@
1-
v1.9.1.1 16 October 2018
1+
## Unreleased
2+
3+
- Recompiled for KSP 1.12.5
4+
5+
6+
## v1.9.1.1 16 October 2018
7+
28
- Recompiled against KSP release v1.5.0
39

4-
---
510

6-
v1.9.1 8 July 2017
11+
## v1.9.1 8 July 2017
12+
713
- Body mouseover names should now be localized correctly.
814
- RSS flares updated, courtesy PhineasFreak.
915

10-
---
1116

12-
v1.9.0 (26 May 2017)
17+
## v1.9.0 (26 May 2017)
18+
1319
- Recompiled against KSP release v1.3.0
1420

15-
---
1621

17-
v1.8.1 (20 October 2016)
22+
## v1.8.1 (20 October 2016)
23+
1824
- Fix potential exceptions related to the Blizzy Toolbar interface (thanks to Kerbas-ad-astra).
1925
- De-Linq the rest of DOE.
2026

21-
---
2227

23-
v1.8.0 (11 October 2016)
28+
## v1.8.0 (11 October 2016)
29+
2430
- Recompiled against KSP release v1.2.0
2531

26-
---
2732

28-
v1.7.2 (23 June 2016)
33+
## v1.7.2 (23 June 2016)
34+
2935
- Moved settings.cfg to PluginData to play better with ModuleManager.
3036
- Added some try/catch to deal with unexpected missing vessels triggering exceptions.
3137

32-
---
3338

34-
v1.7.1 (28 April 2016)
39+
## v1.7.1 (28 April 2016)
40+
3541
- Fixed color conversion that made vessel flares black instead of white. Issue #30.
3642

37-
---
3843

39-
v1.7.0 (19 Apr 2016)
44+
## v1.7.0 (19 Apr 2016)
45+
4046
- Changed default planet flare saturation to 100%. Issue #25.
4147
- Flares behind the sun should no longer show up in front of the sun. Issue #26.
4248
- Recompiled for KSP 1.1. Issue #27, #28.
4349
- Changed the way dimming is applied to flares.
4450
- Fixed GUI layout glitch when sliders for percentages reach 100%.
4551

46-
---
4752

48-
v1.6.4 (21 November 2015)
53+
## v1.6.4 (21 November 2015)
54+
4955
- Recompiled for KSP 1.0.5. Guess 1.6.3 wasn't quite compatible after all. Issue #23.
5056

51-
---
5257

53-
v1.6.3 (15 October 2015)
58+
## v1.6.3 (15 October 2015)
59+
5460
- Fix for ghost flares that appear when flare rendering is disabled. Issue #21.
5561

56-
---
5762

58-
v1.6.2 (9 October 2015)
63+
## v1.6.2 (9 October 2015)
64+
5965
- Fix for a nullref exception in VesselDraw with craft that have fixed solar panels, courtesy taniwha.
6066

61-
---
6267

63-
v1.6.1 (21 August 2015)
68+
## v1.6.1 (21 August 2015)
69+
6470
- Tweaks to body flare rendering to reduce the amount of unchanging data being stored by the mod and queried every update.
6571
- Changed computation of a constant used for flare brightness to allow for Kerbin being a child of something other than Kerbol (for instance, with the New Horizons mod). Courtesy forum user Tynrael.
6672

67-
---
6873

69-
v1.6.0 (July 23, 2015)
74+
## v1.6.0 (July 23, 2015)
75+
7076
- Finally fixed vessel flare positions.
7177
- Changed equation used to determine vessel flare brightness so smaller satellites will be visible.
7278
- Internal code changes to eliminate some redundant updates.
7379

74-
---
7580

76-
v1.5.7 (July 8, 2015)
81+
## v1.5.7 (July 8, 2015)
82+
7783
- NullReferenceException in FlareDraw.OnDestroy has been fixed.
7884
- Sky dimming has changed again. Flares are dimmed less aggressively, particularly for very low max brightness settings.
7985
- The flare model's texture was resized and converted to .dds. If you are installing over an existing DOE, please make sure to delete GameData/DistantObject/Flare/model000.png
8086

81-
---
8287

83-
v1.5.6 (June 27, 2015)
88+
## v1.5.6 (June 27, 2015)
89+
8490
- Big flares appearing for small/dim worlds is fixed. Issue #16.
8591
- A few changes to hopefully reduce memory footprint when some features are not used.
8692
- Sky dimming has been changed: Updates are shown immediately when "Apply" is pressed. Sky dimming now affects Tracking Station and Space Center views. Planet dimming near the sun has been tweaked.
8793

88-
---
8994

90-
v1.5.5 (May 2, 2015)
95+
## v1.5.5 (May 2, 2015)
96+
9197
- Option to show config button only in Space Center view (Gribbleshnibit8View).
9298
- Labels for worlds that are not visible (such as blocked by a nearby world) no longer show up.
9399
- Some assorted tweaks in an effort to deal with a couple of other bugs.
94100
- Ghost flares should be fixed.
95101

96-
---
97102

98-
v1.5.4 (April 29, 2015)
103+
## v1.5.4 (April 29, 2015)
104+
99105
- Fix the App Launcher extra icon bug (Issue #12)
100106

101-
---
102107

103-
v1.5.3 (April 27, 2015)
108+
## v1.5.3 (April 27, 2015)
109+
104110
- KSP 1.0 compatibility release
105111

106-
---
107112

108-
v1.5.2 (February 15, 2015)
113+
## v1.5.2 (February 15, 2015)
114+
109115
- Fixed flares rendering when their world is rendered (eg, Minmus and its flare rendering at the same time).
110116
- Internal reorganization of the flare management code to make it less costly to execute, and easier to change.
111117

112-
---
113118

114-
v1.5.1 (December 21, 2014)
119+
## v1.5.1 (December 21, 2014)
120+
115121
- Removed requirement for blizzy's Toolbar being installed.
116122

117-
---
118123

119-
v1.5.0 (December 21, 2014)
124+
## v1.5.0 (December 21, 2014)
125+
120126
- Disable flare rendering in MapView, since flare positions are completely wrong.
121127
- Add support for stock KSP Toolbar (AppLauncher).
122128

123-
---
124129

125-
v1.4.2 (December 11, 2014)
130+
## v1.4.2 (December 11, 2014)
131+
126132
- Move vessel flares back to camera layer 0 to reduce their displacement as a temporary workaround for Issue #3 (MOARdV)
127133
- Fix flare drawing so it works with the CactEye telescope mod (Raven45)
128134

129-
---
130135

131-
v1.4.1
136+
## v1.4.1
137+
132138
- Fix skybox max brightness not being read (Issue #1)
133139

134-
----
140+
-
135141

136-
v1.4 (November 2, 2014) Distant Object Enhancement bis
142+
143+
## v1.4 (November 2, 2014) Distant Object Enhancement bis
137144

138145
- 0.25 compatibility
139146
- Fix potential NULL reference exceptions when vessels are destroyed fixed (Anatid)
@@ -143,20 +150,21 @@ v1.4 (November 2, 2014) Distant Object Enhancement bis
143150
- Enabled GUI in Flight in addition to Space Center view (some changes still going back to the Space Center before they take effect) (MOARdV)
144151
- Improved handling of missing config file or missing config file entries (MOARdV)
145152

153+
-
146154

147-
----
148155

149-
v1.3.1 (July 29, 2014)
156+
## v1.3.1 (July 29, 2014)
150157

151158
Patch by MOARdV
152159

153160
- 0.24 compatibility
154161
- Two null reference exceptions fixed
155162
- Removed System.Threading.Tasks
156163

157-
----
164+
-
165+
158166

159-
v1.3 (March 3, 2014)
167+
## v1.3 (March 3, 2014)
160168

161169
- Dynamic skybox fading
162170
- Added settings GUI
@@ -165,9 +173,10 @@ v1.3 (March 3, 2014)
165173
- Vessel rendering no longer attempts to draw incompatible parts in many cases
166174
- Probably some other minor things
167175

168-
----
176+
-
169177

170-
v1.2 (February 18, 2014)
178+
179+
## v1.2 (February 18, 2014)
171180

172181
- Planet color definitions added for Real Solar System
173182
- Planet color definitions added for Real Solar System (metaphor's reconfiguration)
@@ -179,14 +188,16 @@ v1.2 (February 18, 2014)
179188
- Added setting to easily toggle vessel rendering
180189
- Vessel rendering is now disabled by default
181190

182-
----
191+
-
192+
183193

184-
v1.1 (February 17, 2014)
194+
## v1.1 (February 17, 2014)
185195

186196
- Fixed issue with plugin trying to render flags and EVA Kerbals
187197

188-
----
198+
-
199+
189200

190-
v1.0 (February 16, 2014)
201+
## v1.0 (February 16, 2014)
191202

192-
- Initial Release
203+
- Initial Release

DistantObject.sln

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,33 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
4-
VisualStudioVersion = 17.10.35027.167
4+
VisualStudioVersion = 17.11.35312.102
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DistantObject", "Source-Code\DistantObject.csproj", "{CFA036CD-0BD0-4363-9A4B-621567C9F5E3}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DistantObject", "Source-Code\DistantObject.csproj", "{87201E45-2967-4308-8DFD-C640516D67ED}"
7+
EndProject
8+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{C89FCA5E-043B-4207-A574-59748AF92577}"
9+
ProjectSection(SolutionItems) = preProject
10+
.gitignore = .gitignore
11+
ChangeLog.md = ChangeLog.md
12+
README.txt = README.txt
13+
todo.txt = todo.txt
14+
EndProjectSection
715
EndProject
816
Global
917
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1018
Debug|Any CPU = Debug|Any CPU
1119
Release|Any CPU = Release|Any CPU
1220
EndGlobalSection
1321
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14-
{CFA036CD-0BD0-4363-9A4B-621567C9F5E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15-
{CFA036CD-0BD0-4363-9A4B-621567C9F5E3}.Debug|Any CPU.Build.0 = Debug|Any CPU
16-
{CFA036CD-0BD0-4363-9A4B-621567C9F5E3}.Release|Any CPU.ActiveCfg = Release|Any CPU
17-
{CFA036CD-0BD0-4363-9A4B-621567C9F5E3}.Release|Any CPU.Build.0 = Release|Any CPU
22+
{87201E45-2967-4308-8DFD-C640516D67ED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
23+
{87201E45-2967-4308-8DFD-C640516D67ED}.Debug|Any CPU.Build.0 = Debug|Any CPU
24+
{87201E45-2967-4308-8DFD-C640516D67ED}.Release|Any CPU.ActiveCfg = Release|Any CPU
25+
{87201E45-2967-4308-8DFD-C640516D67ED}.Release|Any CPU.Build.0 = Release|Any CPU
1826
EndGlobalSection
1927
GlobalSection(SolutionProperties) = preSolution
2028
HideSolutionNode = FALSE
2129
EndGlobalSection
2230
GlobalSection(ExtensibilityGlobals) = postSolution
23-
SolutionGuid = {F958512B-7A41-49FF-AFDA-2BA23D5EE231}
31+
SolutionGuid = {1049C0E9-7356-440C-8453-6C69FA5BB95F}
2432
EndGlobalSection
2533
EndGlobal

GameData/DistantObject/DistantObject.version

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
 (0)