Skip to content

Commit

Permalink
Modified version to 3.2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
icaros7 committed Nov 4, 2018
1 parent 12de4f5 commit 95cfea4
Show file tree
Hide file tree
Showing 6 changed files with 140 additions and 127 deletions.
Binary file modified server/Ets2Telemetry.exe
Binary file not shown.
130 changes: 68 additions & 62 deletions server/Ets2Telemetry.exe.config
Original file line number Diff line number Diff line change
@@ -1,62 +1,68 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
</configSections>

<appSettings>

<!-- ============================================================================== -->
<!-- Warning: don't forget to restart the server to reload updated configuration! -->
<!-- ============================================================================== -->

<!-- When set to "true" the server will output test telemetry data -->
<!-- which is read from the Ets2TestTelemetry.json file. -->
<!-- This is very helpful when you create/debug custom skins, -->
<!-- because any changes to this json files will be immediately reflected on the dashboard. -->
<add key="UseEts2TestTelemetryData" value="false" />

<!-- HTTP ETS2/ATS Telemetry broadcasting URL (empty if not used) -->
<!-- This URL should accept POST requests containing JSON body. -->
<add key="BroadcastUrl" value="" />
<!-- HTTP broadcasting rate -->
<!-- Defines number of seconds to wait before sending next JSON telemetry object (1 minimum, 86400 maximum). -->
<add key="BroadcastRate" value="10" />
<!-- HTTP broadcasting user ID and password (to be able to identify users on the remote server) -->
<!-- These values will be sent as HTTP headers: X-UserId and X-UserPassword as Base64 encoded UTF-8 string values -->
<add key="BroadcastUserId" value="User" />
<add key="BroadcastUserPassword" value="Password" />

<!-- WebApi binding port (it is highly recommended not to change it!) -->
<!-- (if you change the port here make sure that you change it inside config.js as well) -->
<add key="Port" value="25555" />

</appSettings>

<log4net>
<appender name="FileAppender" type="log4net.Appender.FileAppender">
<file value="Ets2Telemetry.log" />
<appendToFile value="true" />
<encoding value="utf-8" />
<staticLogFileName value="true" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date [%-4thread] [%-5level] %message%newline" />
</layout>
</appender>
<root>
<level value="INFO" />
<appender-ref ref="FileAppender" />
</root>
</log4net>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
</configSections>
<appSettings>
<!-- ============================================================================== -->
<!-- Warning: don't forget to restart the server to reload updated configuration! -->
<!-- ============================================================================== -->
<!-- When set to "true" the server will output test telemetry data -->
<!-- which is read from the Ets2TestTelemetry.json file. -->
<!-- This is very helpful when you create/debug custom skins, -->
<!-- because any changes to this json files will be immediately reflected on the dashboard. -->
<add key="UseEts2TestTelemetryData" value="false" />
<!-- HTTP ETS2/ATS Telemetry broadcasting URL (empty if not used) -->
<!-- This URL should accept POST requests containing JSON body. -->
<add key="BroadcastUrl" value="" />
<!-- HTTP broadcasting rate -->
<!-- Defines number of seconds to wait before sending next JSON telemetry object (1 minimum, 86400 maximum). -->
<add key="BroadcastRate" value="10" />
<!-- HTTP broadcasting user ID and password (to be able to identify users on the remote server) -->
<!-- These values will be sent as HTTP headers: X-UserId and X-UserPassword as Base64 encoded UTF-8 string values -->
<add key="BroadcastUserId" value="User" />
<add key="BroadcastUserPassword" value="Password" />
<!-- WebApi binding port (it is highly recommended not to change it!) -->
<!-- (if you change the port here make sure that you change it inside config.js as well) -->
<add key="Port" value="25555" />
<add key="ClientSettingsProvider.ServiceUri" value="" />
</appSettings>
<log4net>
<appender name="FileAppender" type="log4net.Appender.FileAppender">
<file value="Ets2Telemetry.log" />
<appendToFile value="true" />
<encoding value="utf-8" />
<staticLogFileName value="true" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date [%-4thread] [%-5level] %message%newline" />
</layout>
</appender>
<root>
<level value="INFO" />
<appender-ref ref="FileAppender" />
</root>
</log4net>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<system.web>
<membership defaultProvider="ClientAuthenticationMembershipProvider">
<providers>
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" />
</providers>
</membership>
<roleManager defaultProvider="ClientRoleProvider" enabled="true">
<providers>
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" />
</providers>
</roleManager>
</system.web>
</configuration>
Binary file modified server/Ets2Telemetry.pdb
Binary file not shown.
130 changes: 68 additions & 62 deletions source/Funbit.Ets.Telemetry.Server/App.config
Original file line number Diff line number Diff line change
@@ -1,62 +1,68 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
</configSections>

<appSettings>

<!-- ============================================================================== -->
<!-- Warning: don't forget to restart the server to reload updated configuration! -->
<!-- ============================================================================== -->

<!-- When set to "true" the server will output test telemetry data -->
<!-- which is read from the Ets2TestTelemetry.json file. -->
<!-- This is very helpful when you create/debug custom skins, -->
<!-- because any changes to this json files will be immediately reflected on the dashboard. -->
<add key="UseEts2TestTelemetryData" value="false" />

<!-- HTTP ETS2/ATS Telemetry broadcasting URL (empty if not used) -->
<!-- This URL should accept POST requests containing JSON body. -->
<add key="BroadcastUrl" value="" />
<!-- HTTP broadcasting rate -->
<!-- Defines number of seconds to wait before sending next JSON telemetry object (1 minimum, 86400 maximum). -->
<add key="BroadcastRate" value="10" />
<!-- HTTP broadcasting user ID and password (to be able to identify users on the remote server) -->
<!-- These values will be sent as HTTP headers: X-UserId and X-UserPassword as Base64 encoded UTF-8 string values -->
<add key="BroadcastUserId" value="User" />
<add key="BroadcastUserPassword" value="Password" />

<!-- WebApi binding port (it is highly recommended not to change it!) -->
<!-- (if you change the port here make sure that you change it inside config.js as well) -->
<add key="Port" value="25555" />

</appSettings>

<log4net>
<appender name="FileAppender" type="log4net.Appender.FileAppender">
<file value="Ets2Telemetry.log" />
<appendToFile value="true" />
<encoding value="utf-8" />
<staticLogFileName value="true" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date [%-4thread] [%-5level] %message%newline" />
</layout>
</appender>
<root>
<level value="INFO" />
<appender-ref ref="FileAppender" />
</root>
</log4net>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
</configSections>
<appSettings>
<!-- ============================================================================== -->
<!-- Warning: don't forget to restart the server to reload updated configuration! -->
<!-- ============================================================================== -->
<!-- When set to "true" the server will output test telemetry data -->
<!-- which is read from the Ets2TestTelemetry.json file. -->
<!-- This is very helpful when you create/debug custom skins, -->
<!-- because any changes to this json files will be immediately reflected on the dashboard. -->
<add key="UseEts2TestTelemetryData" value="false" />
<!-- HTTP ETS2/ATS Telemetry broadcasting URL (empty if not used) -->
<!-- This URL should accept POST requests containing JSON body. -->
<add key="BroadcastUrl" value="" />
<!-- HTTP broadcasting rate -->
<!-- Defines number of seconds to wait before sending next JSON telemetry object (1 minimum, 86400 maximum). -->
<add key="BroadcastRate" value="10" />
<!-- HTTP broadcasting user ID and password (to be able to identify users on the remote server) -->
<!-- These values will be sent as HTTP headers: X-UserId and X-UserPassword as Base64 encoded UTF-8 string values -->
<add key="BroadcastUserId" value="User" />
<add key="BroadcastUserPassword" value="Password" />
<!-- WebApi binding port (it is highly recommended not to change it!) -->
<!-- (if you change the port here make sure that you change it inside config.js as well) -->
<add key="Port" value="25555" />
<add key="ClientSettingsProvider.ServiceUri" value="" />
</appSettings>
<log4net>
<appender name="FileAppender" type="log4net.Appender.FileAppender">
<file value="Ets2Telemetry.log" />
<appendToFile value="true" />
<encoding value="utf-8" />
<staticLogFileName value="true" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date [%-4thread] [%-5level] %message%newline" />
</layout>
</appender>
<root>
<level value="INFO" />
<appender-ref ref="FileAppender" />
</root>
</log4net>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<system.web>
<membership defaultProvider="ClientAuthenticationMembershipProvider">
<providers>
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" />
</providers>
</membership>
<roleManager defaultProvider="ClientRoleProvider" enabled="true">
<providers>
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" />
</providers>
</roleManager>
</system.web>
</configuration>
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@
<Reference Include="System.Web.Cors">
<HintPath>..\packages\Microsoft.AspNet.Cors.5.0.0\lib\net45\System.Web.Cors.dll</HintPath>
</Reference>
<Reference Include="System.Web.Extensions" />
<Reference Include="System.Web.Http, Version=5.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Microsoft.AspNet.WebApi.Core.5.2.2\lib\net45\System.Web.Http.dll</HintPath>
Expand Down
6 changes: 3 additions & 3 deletions source/Funbit.Ets.Telemetry.Server/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Funbit.Ets.Telemetry.Server")]
[assembly: AssemblyTitle("Funbit.Ets.kor.Telemetry.Server")]
[assembly: AssemblyDescription("ETS2/ATS Telemetry Server + Mobile Dashboard")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
Expand All @@ -32,5 +32,5 @@
// 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("3.2.5.0")]
[assembly: AssemblyFileVersion("3.2.5.0")]
[assembly: AssemblyVersion("3.2.5.1")]
[assembly: AssemblyFileVersion("3.2.5.1")]

0 comments on commit 95cfea4

Please sign in to comment.