(no message)
diff --git a/PokemonGo.RocketAPI.Console/PokemonGo.RocketAPI.Console.csproj b/PokemonGo.RocketAPI.Console/PokemonGo.RocketAPI.Console.csproj
index 982972b..aed36fb 100644
--- a/PokemonGo.RocketAPI.Console/PokemonGo.RocketAPI.Console.csproj
+++ b/PokemonGo.RocketAPI.Console/PokemonGo.RocketAPI.Console.csproj
@@ -11,6 +11,12 @@
<AssemblyName>PokemonGo.RocketAPI.Console</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
+ <PrimaryVersionType>AssemblyVersionAttribute</PrimaryVersionType>
+ <AssemblyInfoFilePath>..\PokemonGo.RocketAPI\Properties\AssemblyInfo.cs</AssemblyInfoFilePath>
+ <UpdateAssemblyVersion>True</UpdateAssemblyVersion>
+ <UpdateAssemblyFileVersion>False</UpdateAssemblyFileVersion>
+ <UpdateAssemblyInfoVersion>False</UpdateAssemblyInfoVersion>
+ <AssemblyVersionSettings>YearStamp.MonthStamp.DayStamp.Increment</AssemblyVersionSettings>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
diff --git a/PokemonGo.RocketAPI.Console/Properties/AssemblyInfo.cs b/PokemonGo.RocketAPI.Console/Properties/AssemblyInfo.cs
index 367b386..fd11297 100644
--- a/PokemonGo.RocketAPI.Console/Properties/AssemblyInfo.cs
+++ b/PokemonGo.RocketAPI.Console/Properties/AssemblyInfo.cs
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyVersion("2016.7.22.5")]
[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/PokemonGo.RocketAPI.Logic/Navigation.cs b/PokemonGo.RocketAPI.Logic/Navigation.cs
index d1211e3..eb71c7e 100644
--- a/PokemonGo.RocketAPI.Logic/Navigation.cs
+++ b/PokemonGo.RocketAPI.Logic/Navigation.cs
@@ -23,7 +23,7 @@ namespace PokemonGo.RocketAPI.Logic
Location sourceLocation = new Location(_client.CurrentLat, _client.CurrentLng);
var distanceToTarget = LocationUtils.CalculateDistanceInMeters(sourceLocation, targetLocation);
- Logger.Normal($"Distance to target location: {distanceToTarget:0.##} meters. Will take {distanceToTarget / speedInMetersPerSecond:0.##} seconds!");
+ Logger.Normal($"(NAVIGATION) Distance to target location: {distanceToTarget:0.##} meters. Will take {distanceToTarget / speedInMetersPerSecond:0.##} seconds!");
double nextWaypointBearing = LocationUtils.DegreeBearing(sourceLocation, targetLocation);
double nextWaypointDistance = speedInMetersPerSecond;
@@ -44,17 +44,17 @@ namespace PokemonGo.RocketAPI.Logic
{
if (speedInMetersPerSecond > speedDownTo)
{
- Logger.Normal("We are within 40 meters of the target. Speeding down to 10 km/h to not pass the target.");
+ Logger.Normal("(NAVIGATION) We are within 40 meters of the target. Speeding down to 10 km/h to not pass the target.");
speedInMetersPerSecond = speedDownTo;
}
else
{
- Logger.Normal("We are within 40 meters of the target, attempting to interact.");
+ Logger.Normal("(NAVIGATION) We are within 40 meters of the target, attempting to interact.");
}
}
else
{
- Logger.Normal($"Distance to target location: {LocationUtils.CalculateDistanceInMeters(sourceLocation, targetLocation):0.##} meters.");
+ Logger.Normal($"(NAVIGATION) Distance to target location: {LocationUtils.CalculateDistanceInMeters(sourceLocation, targetLocation):0.##} meters.");
}
nextWaypointDistance = Math.Min(currentDistanceToTarget, millisecondsUntilGetUpdatePlayerLocationResponse / 1000 * speedInMetersPerSecond);
diff --git a/PokemonGo.RocketAPI.Logic/PokemonGo.RocketAPI.Logic.csproj b/PokemonGo.RocketAPI.Logic/PokemonGo.RocketAPI.Logic.csproj
index 9f081bd..5602b0d 100644
--- a/PokemonGo.RocketAPI.Logic/PokemonGo.RocketAPI.Logic.csproj
+++ b/PokemonGo.RocketAPI.Logic/PokemonGo.RocketAPI.Logic.csproj
@@ -11,6 +11,12 @@
<AssemblyName>PokemonGo.RocketAPI.Logic</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
+ <PrimaryVersionType>AssemblyVersionAttribute</PrimaryVersionType>
+ <AssemblyInfoFilePath>..\PokemonGo.RocketAPI\Properties\AssemblyInfo.cs</AssemblyInfoFilePath>
+ <UpdateAssemblyVersion>True</UpdateAssemblyVersion>
+ <UpdateAssemblyFileVersion>False</UpdateAssemblyFileVersion>
+ <UpdateAssemblyInfoVersion>False</UpdateAssemblyInfoVersion>
+ <AssemblyVersionSettings>YearStamp.MonthStamp.DayStamp.Increment</AssemblyVersionSettings>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
diff --git a/PokemonGo.RocketAPI.Logic/Properties/AssemblyInfo.cs b/PokemonGo.RocketAPI.Logic/Properties/AssemblyInfo.cs
index 408550a..34c8f85 100644
--- a/PokemonGo.RocketAPI.Logic/Properties/AssemblyInfo.cs
+++ b/PokemonGo.RocketAPI.Logic/Properties/AssemblyInfo.cs
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyVersion("2016.7.22.2")]
[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/PokemonGo.RocketAPI.Logic/Utils/Git.cs b/PokemonGo.RocketAPI.Logic/Utils/Git.cs
index c80863e..fe6eb04 100644
--- a/PokemonGo.RocketAPI.Logic/Utils/Git.cs
+++ b/PokemonGo.RocketAPI.Logic/Utils/Git.cs
@@ -43,6 +43,7 @@ namespace PokemonGo.RocketAPI.Helpers
private static string DownloadServerVersion()
{
+ //test
using (var wC = new WebClient())
return
wC.DownloadString(
diff --git a/PokemonGo.RocketAPI/Client.cs b/PokemonGo.RocketAPI/Client.cs
index 416d6b6..d998d53 100644
--- a/PokemonGo.RocketAPI/Client.cs
+++ b/PokemonGo.RocketAPI/Client.cs
@@ -18,7 +18,6 @@ namespace PokemonGo.RocketAPI
{
public class Client
{
- //private readonly ISettings _settings;
public ISettings Settings { get; }
private readonly HttpClient _httpClient;
private AuthType _authType = AuthType.Google;
diff --git a/PokemonGo.RocketAPI/PokemonGo.RocketAPI.csproj b/PokemonGo.RocketAPI/PokemonGo.RocketAPI.csproj
index 67a05ea..1ea881d 100644
--- a/PokemonGo.RocketAPI/PokemonGo.RocketAPI.csproj
+++ b/PokemonGo.RocketAPI/PokemonGo.RocketAPI.csproj
@@ -11,6 +11,13 @@
<AssemblyName>Pokemon Go Rocket API</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
+ <AssemblyInfoFilePath>Properties\AssemblyInfo.cs</AssemblyInfoFilePath>
+ <UpdateAssemblyVersion>True</UpdateAssemblyVersion>
+ <UpdateAssemblyFileVersion>False</UpdateAssemblyFileVersion>
+ <UpdateAssemblyInfoVersion>False</UpdateAssemblyInfoVersion>
+ <AssemblyVersionSettings>YearStamp.MonthStamp.DayStamp.Increment</AssemblyVersionSettings>
+ <PrimaryVersionType>AssemblyVersionAttribute</PrimaryVersionType>
+ <AssemblyVersion>2016.7.22.3</AssemblyVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
diff --git a/PokemonGo.RocketAPI/Properties/AssemblyInfo.cs b/PokemonGo.RocketAPI/Properties/AssemblyInfo.cs
index c8f05f2..af5dcde 100644
--- a/PokemonGo.RocketAPI/Properties/AssemblyInfo.cs
+++ b/PokemonGo.RocketAPI/Properties/AssemblyInfo.cs
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyVersion("2016.7.22.3")]
[assembly: AssemblyFileVersion("1.0.0.0")]
You may download the files in Public Git.