Skip to content

Commit

Permalink
Renaming to RacingDSX
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmii02 committed Feb 24, 2024
1 parent 1c1c591 commit f506436
Show file tree
Hide file tree
Showing 37 changed files with 157 additions and 157 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dotnetYML
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
- name: Package
run: dotnet dotnet publish -r win-x64 -p:PublishSingleFile=true --self-contained false -c Release --output ./forza/devrel
- name: Compress Artifact
run: Compress-Archive -Path ./forza/devrel -DestinationPath ./forza/devrel/ForzaDSX-RC.zip
run: Compress-Archive -Path ./forza/devrel -DestinationPath ./forza/devrel/RacingDSX-RC.zip
- name: Upload Release
uses: ncipollo/release-action@v1
with:
name: ForzaDSX-RC
artifacts: ./forza/devrel/ForzaDSX-RC.zip
name: RacingDSX-RC
artifacts: ./forza/devrel/RacingDSX-RC.zip
tag: latest-candidate
prerelease: true
allowUpdates: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/dotnetlinux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: dotnet publish -r win-x64 -p:PublishSingleFile=true --self-contained true -c Release --output ./forza/devrel

- name: Compress Artifact
run: zip -r ./forza/devrel/ForzaDSX-RC.zip ./forza/devrel
run: zip -r ./forza/devrel/RacingDSX-RC.zip ./forza/devrel

- name: Generate Date
id: get-date
Expand All @@ -40,8 +40,8 @@ jobs:
- name: Upload Release
uses: ncipollo/release-action@v1
with:
name: ForzaDSX-RC-${{ env.CURRENT_DATE }}
artifacts: ./forza/devrel/ForzaDSX-RC.zip
name: RacingDSX-RC-${{ env.CURRENT_DATE }}
artifacts: ./forza/devrel/RacingDSX-RC.zip
tag: latest-candidate-${{ env.CURRENT_DATE }}
prerelease: true
allowUpdates: true
Expand Down
6 changes: 3 additions & 3 deletions App.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="ForzaDSX.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
<section name="RacingDSX.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
<userSettings>
<ForzaDSX.Properties.Settings>
<RacingDSX.Properties.Settings>
<setting name="_grip_Loss_Val" serializeAs="String">
<value>0.5</value>
</setting>
Expand Down Expand Up @@ -109,6 +109,6 @@
<setting name="BrakeTriggerMode" serializeAs="String">
<value>2</value>
</setting>
</ForzaDSX.Properties.Settings>
</RacingDSX.Properties.Settings>
</userSettings>
</configuration>
6 changes: 3 additions & 3 deletions AppCheckThread.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Diagnostics;
using System.Linq;

namespace ForzaDSX
namespace RacingDSX
{
public struct AppCheckReportStruct
{
Expand Down Expand Up @@ -42,14 +42,14 @@ public AppCheckReportStruct(AppType type)

internal class AppCheckThread
{
readonly ForzaDSX.Config.Config settings;
readonly RacingDSX.Config.Config settings;
private Dictionary<String, String> processProfilePairs = new Dictionary<string, string>();

readonly IProgress<AppCheckReportStruct> progressReporter;

protected bool bRunning = false;

public AppCheckThread(ref ForzaDSX.Config.Config currentSettings, IProgress<AppCheckReportStruct> progressReporter)
public AppCheckThread(ref RacingDSX.Config.Config currentSettings, IProgress<AppCheckReportStruct> progressReporter)
{

settings = currentSettings;
Expand Down
2 changes: 1 addition & 1 deletion Config/BrakeSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Text;
using System.Threading.Tasks;

namespace ForzaDSX.Config
namespace RacingDSX.Config
{
public class BrakeSettings
{
Expand Down
2 changes: 1 addition & 1 deletion Config/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Text.Json.Serialization;
using System.Threading.Tasks;

namespace ForzaDSX.Config
namespace RacingDSX.Config
{
public class Config
{
Expand Down
4 changes: 2 additions & 2 deletions Config/ConfigHandler.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using ForzaDSX.GameParsers;
using RacingDSX.GameParsers;
using System;
using System.Collections.Generic;
using System.IO;
Expand All @@ -8,7 +8,7 @@
using System.Threading.Tasks;
using System.Windows.Forms;

namespace ForzaDSX.Config
namespace RacingDSX.Config
{
public class ConfigHandler
{
Expand Down
4 changes: 2 additions & 2 deletions Config/Profile.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using ForzaDSX.GameParsers;
using RacingDSX.GameParsers;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ForzaDSX.Config
namespace RacingDSX.Config
{
public class Profile
{
Expand Down
2 changes: 1 addition & 1 deletion Config/ThrottleSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Text;
using System.Threading.Tasks;

namespace ForzaDSX.Config
namespace RacingDSX.Config
{
public class ThrottleSettings
{
Expand Down
2 changes: 1 addition & 1 deletion Config/TriggerMode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Text;
using System.Threading.Tasks;

namespace ForzaDSX.Config
namespace RacingDSX.Config
{
public enum TriggerMode : sbyte
{
Expand Down
2 changes: 1 addition & 1 deletion Config/VerboseLevel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Text;
using System.Threading.Tasks;

namespace ForzaDSX.Config
namespace RacingDSX.Config
{
public enum VerboseLevel
{
Expand Down
2 changes: 1 addition & 1 deletion CsvData.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace ForzaDSX
namespace RacingDSX
{
public class CsvData
{
Expand Down
2 changes: 1 addition & 1 deletion DataPacket.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace ForzaDSX
namespace RacingDSX
{
public class DataPacket
{
Expand Down
4 changes: 2 additions & 2 deletions FMData.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using static ForzaDSX.PacketParse;
using static RacingDSX.PacketParse;

namespace ForzaDSX
namespace RacingDSX
{
public static class FMData
{
Expand Down
4 changes: 2 additions & 2 deletions ForzaDSX.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<Platforms>AnyCPU</Platforms>
<PackageReadmeFile>Readme.md</PackageReadmeFile>
<UseWindowsForms>True</UseWindowsForms>
<StartupObject>ForzaDSX.Program</StartupObject>
<StartupObject>RacingDSX.Program</StartupObject>
<IsPublishable>True</IsPublishable>
<Title>ForzaDSX</Title>
<Title>RacingDSX</Title>
<IncludeSymbols>True</IncludeSymbols>
<UseWPF>False</UseWPF>
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
Expand Down
4 changes: 2 additions & 2 deletions ForzaDSX.csproj.user
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<DebuggerFlavor>ProjectDebugger</DebuggerFlavor>
</PropertyGroup>
<PropertyGroup>
<ActiveDebugProfile>ForzaDSX</ActiveDebugProfile>
<_LastSelectedProfileId>E:\Development\Projects\ForzaDSX\Properties\PublishProfiles\FolderProfile.pubxml</_LastSelectedProfileId>
<ActiveDebugProfile>RacingDSX</ActiveDebugProfile>
<_LastSelectedProfileId>E:\Development\Projects\RacingDSX\Properties\PublishProfiles\FolderProfile.pubxml</_LastSelectedProfileId>
</PropertyGroup>
<ItemGroup>
<Compile Update="NameForm.cs">
Expand Down
2 changes: 1 addition & 1 deletion ForzaDSX.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.1.32328.378
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ForzaDSX", "ForzaDSX.csproj", "{1D4607E3-378B-4AC9-A223-B2EEB518DC3D}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RacingDSX", "RacingDSX.csproj", "{1D4607E3-378B-4AC9-A223-B2EEB518DC3D}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
Loading

0 comments on commit f506436

Please sign in to comment.