Skip to content

Commit

Permalink
Updated to EliteAPI 2.3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Somfic committed Dec 31, 2019
1 parent 968be38 commit ee92db8
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 8 deletions.
11 changes: 8 additions & 3 deletions EliteAPI/EliteAPI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyVersion>2.2.53.909</AssemblyVersion>
<FileVersion>2.2.53.909</FileVersion>
<AssemblyVersion>2.3.0.0</AssemblyVersion>
<FileVersion>2.3.0.0</FileVersion>
<PackageProjectUrl>https://github.com/EliteAPI/EliteAPI</PackageProjectUrl>
<RepositoryUrl>https://github.com/EliteAPI/EliteAPI</RepositoryUrl>
<PackageIconUrl>https://i.imgur.com/keDXwjY.png</PackageIconUrl>
Expand All @@ -14,7 +14,7 @@
VoiceAttack, VoiceMacro, Discord, C#, VB</Description>
<Copyright>Somfic 2019</Copyright>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>2.2.23.879</Version>
<Version>2.3.0.0</Version>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>

Expand All @@ -23,6 +23,11 @@ VoiceAttack, VoiceMacro, Discord, C#, VB</Description>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Costura.Fody" Version="4.1.0" />
<PackageReference Include="Fody" Version="6.0.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="ini-parser" Version="2.5.2" />
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8">
<PrivateAssets>all</PrivateAssets>
Expand Down
2 changes: 1 addition & 1 deletion EliteAPI/EliteDangerousAPI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public static DirectoryInfo StandardDirectory
/// <summary>
/// The version of EliteAPI.
/// </summary>
public string Version => "2.2.23.879";
public string Version => "2.3.0.0";

/// <summary>
/// Whether the API is currently running.
Expand Down
3 changes: 3 additions & 0 deletions EliteAPI/Events/EventHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -619,5 +619,8 @@ public class EventHandler
//FSSSignalDiscovered
public event EventHandler<FSSSignalDiscoveredInfo> FSSSignalDiscoveredEvent;
internal FSSSignalDiscoveredInfo InvokeFSSSignalDiscoveredEvent(FSSSignalDiscoveredInfo arg) { FSSSignalDiscoveredEvent?.Invoke(null, arg); return arg; }
//SquadronStartup
public event EventHandler<SquadronStartupInfo> SquadronStartupEvent;
internal SquadronStartupInfo InvokeSquadronStartupEvent(SquadronStartupInfo arg) { SquadronStartupEvent?.Invoke(null, arg); return arg; }
}
}
2 changes: 1 addition & 1 deletion EliteAPI/ThirdParty/EliteMacro/EliteMacro.iss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#define MyAppName "EliteMacro"
#define MyAppVersion "2.2.23.879"
#define MyAppVersion "2.3.0.0"
#define MyAppPublisher "Somfic"
#define MyAppURL "https://github.com/EliteAPI/EliteAPI"
[Setup]
Expand Down
2 changes: 1 addition & 1 deletion EliteAPI/ThirdParty/EliteVA/EliteVA.iss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#define MyAppName "EliteVA"
#define MyAppVersion "2.2.23.879"
#define MyAppVersion "2.3.0.0"
#define MyAppPublisher "Somfic"
#define MyAppURL "https://github.com/EliteAPI/EliteAPI"
[Setup]
Expand Down
2 changes: 1 addition & 1 deletion EliteAPI/versioncontrol.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.23.879
2.3.0.0
2 changes: 1 addition & 1 deletion Example/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ private static void Main(string[] args)
{
EliteAPI = new EliteDangerousAPI();
EliteAPI.Logger.AddHandler(new ConsoleHandler());
//EliteAPI.Logger.AddHandler(new LogFileHandler(Directory.GetCurrentDirectory(), "EliteAPI"));
EliteAPI.Logger.AddHandler(new LogFileHandler(Directory.GetCurrentDirectory(), "EliteAPI"));
EliteAPI.Start();

Thread.Sleep(-1);
Expand Down

0 comments on commit ee92db8

Please sign in to comment.