This repository was archived by the owner on Oct 26, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 11 files changed +37
-43
lines changed
Dated_QuickSaves/Properties
Sensible_Screenshot/Properties Expand file tree Collapse file tree 11 files changed +37
-43
lines changed Original file line number Diff line number Diff line change @@ -186,4 +186,6 @@ FakesAssemblies/
186
186
# LightSwitch generated files
187
187
GeneratedArtifacts /
188
188
_Pvt_Extensions /
189
- ModelManifest.xml
189
+ ModelManifest.xml
190
+ /.vs /Modlets /v15 /Server /sqlite3
191
+ /.vs /slnx.sqlite
Original file line number Diff line number Diff line change 10
10
[ assembly: AssemblyConfiguration ( "" ) ]
11
11
[ assembly: AssemblyCompany ( "" ) ]
12
12
[ assembly: AssemblyProduct ( "DatedQuickSaves" ) ]
13
- [ assembly: AssemblyCopyright ( "Copyright © 2017 " ) ]
13
+ [ assembly: AssemblyCopyright ( "Copyright © 2018 " ) ]
14
14
[ assembly: AssemblyTrademark ( "" ) ]
15
15
[ assembly: AssemblyCulture ( "" ) ]
16
16
32
32
// You can specify all the values or you can default the Build and Revision Numbers
33
33
// by using the '*' as shown below:
34
34
// [assembly: AssemblyVersion("1.0.*")]
35
- [ assembly: AssemblyVersion ( "1.1.4 .0" ) ]
36
- [ assembly: AssemblyFileVersion ( "1.1.4 .0" ) ]
35
+ [ assembly: AssemblyVersion ( "1.1.5 .0" ) ]
36
+ [ assembly: AssemblyFileVersion ( "1.1.5 .0" ) ]
Original file line number Diff line number Diff line change 10
10
[ assembly: AssemblyConfiguration ( "" ) ]
11
11
[ assembly: AssemblyCompany ( "" ) ]
12
12
[ assembly: AssemblyProduct ( "EditorTime" ) ]
13
- [ assembly: AssemblyCopyright ( "Copyright © 2016 " ) ]
13
+ [ assembly: AssemblyCopyright ( "Copyright © 2018 " ) ]
14
14
[ assembly: AssemblyTrademark ( "" ) ]
15
15
[ assembly: AssemblyCulture ( "" ) ]
16
16
32
32
// You can specify all the values or you can default the Build and Revision Numbers
33
33
// by using the '*' as shown below:
34
34
// [assembly: AssemblyVersion("1.0.*")]
35
- [ assembly: AssemblyVersion ( "1.0.5 .0" ) ]
36
- [ assembly: AssemblyFileVersion ( "1.0.5 .0" ) ]
35
+ [ assembly: AssemblyVersion ( "1.0.6 .0" ) ]
36
+ [ assembly: AssemblyFileVersion ( "1.0.6 .0" ) ]
Original file line number Diff line number Diff line change 1
1
{
2
2
"NAME":"NIMBY",
3
- "VERSION":"1.1.0 .0",
3
+ "VERSION":"1.1.1 .0",
4
4
"KSP_VERSION":{
5
5
"MAJOR":1,
6
- "MINOR":3 ,
7
- "PATCH":0
6
+ "MINOR":4 ,
7
+ "PATCH":1
8
8
},
9
9
"KSP_VERSION_MIN":{
10
10
"MAJOR":1,
11
- "MINOR":2 ,
12
- "PATCH":2
11
+ "MINOR":4 ,
12
+ "PATCH":0
13
13
},
14
14
"KSP_VERSION_MAX":{
15
15
"MAJOR":1,
16
- "MINOR":3 ,
17
- "PATCH":0
16
+ "MINOR":4 ,
17
+ "PATCH":8
18
18
}
19
19
}
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ public class NotInMyBackYard : MonoBehaviour
17
17
public void Start ( )
18
18
{
19
19
//initialize beacons
20
- LoadBeacons ( KSPUtil . ApplicationRootPath + "/GameData/NIMBY/Beacons.cfg" , true ) ;
20
+ LoadBeacons ( KSPUtil . ApplicationRootPath + "/GameData/NIMBY/PluginData/ Beacons.cfg" , true ) ;
21
21
}
22
22
23
23
public void LoadBeacons ( string beaconFile , bool createIfNotExists = false )
@@ -105,12 +105,16 @@ public IList<IBeacon> GetAllBeacons()
105
105
//find all vessels that have a mobile beacon module
106
106
foreach ( Vessel vessel in FlightGlobals . Vessels )
107
107
{
108
+ if ( vessel == FlightGlobals . ActiveVessel )
109
+ {
110
+ continue ;
111
+ }
108
112
//make sure it's active
109
113
IEnumerable < ModuleMobileRecoveryBeacon > modules ;
110
114
if ( vessel . loaded && ( modules = vessel . Parts . Select ( p => p . Modules . GetModule < ModuleMobileRecoveryBeacon > ( ) ) ) != null )
111
115
{
112
116
Debug . Log ( $ "[NIMBY] { vessel . GetDisplayName ( ) } has module") ;
113
- IBeacon active = modules . FirstOrDefault ( m => m . Active ) ;
117
+ IBeacon active = modules ? . FirstOrDefault ( m => m ? . Active ?? false ) ;
114
118
if ( active != null )
115
119
{
116
120
Debug . Log ( $ "[NIMBY] Module is Active.") ;
Original file line number Diff line number Diff line change 10
10
[ assembly: AssemblyConfiguration ( "" ) ]
11
11
[ assembly: AssemblyCompany ( "" ) ]
12
12
[ assembly: AssemblyProduct ( "NotInMyBackYard" ) ]
13
- [ assembly: AssemblyCopyright ( "Copyright © 2017 " ) ]
13
+ [ assembly: AssemblyCopyright ( "Copyright © 2018 " ) ]
14
14
[ assembly: AssemblyTrademark ( "" ) ]
15
15
[ assembly: AssemblyCulture ( "" ) ]
16
16
32
32
// You can specify all the values or you can default the Build and Revision Numbers
33
33
// by using the '*' as shown below:
34
34
// [assembly: AssemblyVersion("1.0.*")]
35
- [ assembly: AssemblyVersion ( "1.1.0 .0" ) ]
36
- [ assembly: AssemblyFileVersion ( "1.1.0 .0" ) ]
35
+ [ assembly: AssemblyVersion ( "1.1.1 .0" ) ]
36
+ [ assembly: AssemblyFileVersion ( "1.1.1 .0" ) ]
Original file line number Diff line number Diff line change 10
10
[ assembly: AssemblyConfiguration ( "" ) ]
11
11
[ assembly: AssemblyCompany ( "" ) ]
12
12
[ assembly: AssemblyProduct ( "SensibleScreenshot" ) ]
13
- [ assembly: AssemblyCopyright ( "Copyright © 2016 " ) ]
13
+ [ assembly: AssemblyCopyright ( "Copyright © 2018 " ) ]
14
14
[ assembly: AssemblyTrademark ( "" ) ]
15
15
[ assembly: AssemblyCulture ( "" ) ]
16
16
32
32
// You can specify all the values or you can default the Build and Revision Numbers
33
33
// by using the '*' as shown below:
34
34
// [assembly: AssemblyVersion("1.0.*")]
35
- [ assembly: AssemblyVersion ( "1.2.3 .0" ) ]
36
- [ assembly: AssemblyFileVersion ( "1.2.3 .0" ) ]
35
+ [ assembly: AssemblyVersion ( "1.2.4 .0" ) ]
36
+ [ assembly: AssemblyFileVersion ( "1.2.4 .0" ) ]
Original file line number Diff line number Diff line change 10
10
[ assembly: AssemblyConfiguration ( "" ) ]
11
11
[ assembly: AssemblyCompany ( "" ) ]
12
12
[ assembly: AssemblyProduct ( "ShipSaveSplicer" ) ]
13
- [ assembly: AssemblyCopyright ( "Copyright © 2017 " ) ]
13
+ [ assembly: AssemblyCopyright ( "Copyright © 2018 " ) ]
14
14
[ assembly: AssemblyTrademark ( "" ) ]
15
15
[ assembly: AssemblyCulture ( "" ) ]
16
16
32
32
// You can specify all the values or you can default the Build and Revision Numbers
33
33
// by using the '*' as shown below:
34
34
// [assembly: AssemblyVersion("1.0.*")]
35
- [ assembly: AssemblyVersion ( "1.1.3 .0" ) ]
36
- [ assembly: AssemblyFileVersion ( "1.1.3 .0" ) ]
35
+ [ assembly: AssemblyVersion ( "1.1.4 .0" ) ]
36
+ [ assembly: AssemblyFileVersion ( "1.1.4 .0" ) ]
Original file line number Diff line number Diff line change @@ -65,18 +65,6 @@ public void OnClick()
65
65
SpaceTracking trackingStation = ( SpaceTracking ) FindObjectOfType ( typeof ( SpaceTracking ) ) ;
66
66
Vessel selectedVessel = trackingStation . SelectedVessel ;
67
67
68
- //1.2 made this non-private
69
- //foreach (FieldInfo f in trackingStation.GetType().GetFields(BindingFlags.NonPublic | BindingFlags.Instance))
70
- //{
71
- // if (f.FieldType == typeof(Vessel))
72
- // {
73
- // //FYI: the first one (0) is the currently selected vessel
74
- // //The second one (1) is the one that the mouse is hovering over
75
- // selectedVessel = f.GetValue(trackingStation) as Vessel;
76
- // break;
77
- // }
78
- //}
79
-
80
68
if ( ctrlHeld || includeCrew ) //ctrl or modifier held
81
69
{
82
70
OpenImportWindow ( ) ;
Original file line number Diff line number Diff line change 10
10
[ assembly: AssemblyConfiguration ( "" ) ]
11
11
[ assembly: AssemblyCompany ( "" ) ]
12
12
[ assembly: AssemblyProduct ( "TreeToppler" ) ]
13
- [ assembly: AssemblyCopyright ( "Copyright © 2017 " ) ]
13
+ [ assembly: AssemblyCopyright ( "Copyright © 2018 " ) ]
14
14
[ assembly: AssemblyTrademark ( "" ) ]
15
15
[ assembly: AssemblyCulture ( "" ) ]
16
16
32
32
// You can specify all the values or you can default the Build and Revision Numbers
33
33
// by using the '*' as shown below:
34
34
// [assembly: AssemblyVersion("1.0.*")]
35
- [ assembly: AssemblyVersion ( "1.1.2 .0" ) ]
36
- [ assembly: AssemblyFileVersion ( "1.1.2 .0" ) ]
35
+ [ assembly: AssemblyVersion ( "1.1.3 .0" ) ]
36
+ [ assembly: AssemblyFileVersion ( "1.1.3 .0" ) ]
You can’t perform that action at this time.
0 commit comments