Skip to content

Commit

Permalink
- Fixed Apply buttons ending the Thread
Browse files Browse the repository at this point in the history
- Added option to select Triggers mode between Off, Resistance and Vibration
- Lowered default intensity to 70%
- Removed old Settings file and now correctly using variables from the Properties.Settings
  • Loading branch information
Guilherme Maia committed Jul 2, 2023
1 parent 678eec0 commit 111283b
Show file tree
Hide file tree
Showing 21 changed files with 2,017 additions and 2,357 deletions.
Binary file modified .vs/ForzaDSX/DesignTimeBuild/.dtbcache.v2
Binary file not shown.
Binary file modified .vs/ForzaDSX/v17/.suo
Binary file not shown.
14 changes: 10 additions & 4 deletions App.config
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,21 @@
<setting name="_forza_PORT" serializeAs="String">
<value>5300</value>
</setting>
<setting name="_left_Trigger_Eeffect_Intensity" serializeAs="String">
<value>1</value>
<setting name="_left_Trigger_Effect_Intensity" serializeAs="String">
<value>0.7</value>
</setting>
<setting name="_right_Trigger_Eeffect_Intensity" serializeAs="String">
<value>1</value>
<setting name="_right_Trigger_Effect_Intensity" serializeAs="String">
<value>0.7</value>
</setting>
<setting name="_verbose" serializeAs="String">
<value>0</value>
</setting>
<setting name="ThrottleTriggerMode" serializeAs="String">
<value>2</value>
</setting>
<setting name="BrakeTriggerMode" serializeAs="String">
<value>2</value>
</setting>
</ForzaDSX.Properties.Settings>
</userSettings>
</configuration>
16 changes: 8 additions & 8 deletions ForzaDSX.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0-windows</TargetFramework>
<!--<PublishSingleFile Condition="'$(Configuration)' == 'Release'">true</PublishSingleFile>-->
<!--<SelfContained Condition="'$(Configuration)' == 'Release'">true</SelfContained>-->
<PublishSingleFile Condition="'$(Configuration)' == 'Release'">true</PublishSingleFile>
<SelfContained Condition="'$(Configuration)' == 'Release'">true</SelfContained>
<PublishReadyToRun Condition="'$(Configuration)' == 'Release'">true</PublishReadyToRun>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<!--<PublishReadyToRun Condition="'$(Configuration)' == 'Release'">true</PublishReadyToRun>-->
<PublishSingleFile>true</PublishSingleFile>
<!--<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<PublishReadyToRun>true</PublishReadyToRun>
<PublishReadyToRun>true</PublishReadyToRun>-->
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platforms>AnyCPU</Platforms>
<PackageReadmeFile>Readme.md</PackageReadmeFile>
<UseWindowsForms>True</UseWindowsForms>
<StartupObject>ForzaDSX.Program</StartupObject>
<IsPublishable>True</IsPublishable>
<Title>ForzaDSX</Title>
<IncludeSymbols>False</IncludeSymbols>
<UseWPF>True</UseWPF>
<IncludeSymbols>True</IncludeSymbols>
<UseWPF>False</UseWPF>
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
<Company>Paliverse Apps LLC</Company>
</PropertyGroup>
Expand All @@ -31,7 +31,7 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>none</DebugType>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
Expand Down
2 changes: 1 addition & 1 deletion ForzaDSX.csproj.user
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>
<PropertyGroup>
<ActiveDebugProfile>ForzaDSX</ActiveDebugProfile>
<_LastSelectedProfileId>D:\Development\Projects\ForzaDSX\Properties\PublishProfiles\FolderProfile.pubxml</_LastSelectedProfileId>
<_LastSelectedProfileId>E:\Development\Projects\ForzaDSX\Properties\PublishProfiles\FolderProfile.pubxml</_LastSelectedProfileId>
</PropertyGroup>
<ItemGroup>
<Compile Update="UI.cs">
Expand Down
199 changes: 0 additions & 199 deletions ForzaDSXSettings.cs

This file was deleted.

Loading

0 comments on commit 111283b

Please sign in to comment.