Skip to content

Commit

Permalink
Merge pull request #1 from dotcomboom/clientid-custom
Browse files Browse the repository at this point in the history
Add option to use custom application ID
  • Loading branch information
dotcomboom authored Apr 4, 2023
2 parents b5c6aae + 4b9c254 commit 602bf6a
Show file tree
Hide file tree
Showing 12 changed files with 389 additions and 61 deletions.
6 changes: 6 additions & 0 deletions Mario Kart Wii Rich Presence Redux/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@
<setting name="addText" serializeAs="String">
<value>0000-0000-0000</value>
</setting>
<setting name="useOwnApp" serializeAs="String">
<value>False</value>
</setting>
<setting name="userAppId" serializeAs="String">
<value />
</setting>
</Mario_Kart_Wii_Rich_Presence_Redux.My.MySettings>
</userSettings>
</configuration>
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,17 @@
<DependentUpon>frmMain.vb</DependentUpon>
<SubType>Form</SubType>
</Compile>
<Compile Include="frmOwnRPC.Designer.vb">
<DependentUpon>frmOwnRPC.vb</DependentUpon>
</Compile>
<Compile Include="frmOwnRPC.vb">
<SubType>Form</SubType>
</Compile>
<Compile Include="My Project\AssemblyInfo.vb" />
<Compile Include="My Project\Application.Designer.vb">
<AutoGen>True</AutoGen>
<DependentUpon>Application.myapp</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<Compile Include="My Project\Resources.Designer.vb">
<AutoGen>True</AutoGen>
Expand All @@ -117,6 +124,9 @@
<EmbeddedResource Include="frmMain.resx">
<DependentUpon>frmMain.vb</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="frmOwnRPC.resx">
<DependentUpon>frmOwnRPC.vb</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="My Project\Resources.resx">
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<MyApplicationData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<MySubMain>true</MySubMain>
<MainForm>Form1</MainForm>
<MainForm>frmMain</MainForm>
<SingleInstance>false</SingleInstance>
<ShutdownMode>0</ShutdownMode>
<EnableVisualStyles>true</EnableVisualStyles>
<AuthenticationMode>0</AuthenticationMode>
<ApplicationType>0</ApplicationType>
<SaveMySettingsOnExit>true</SaveMySettingsOnExit>
</MyApplicationData>
</MyApplicationData>
8 changes: 4 additions & 4 deletions Mario Kart Wii Rich Presence Redux/My Project/AssemblyInfo.vb
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ Imports System.Runtime.InteropServices
' Review the values of the assembly attributes

<Assembly: AssemblyTitle("Mario Kart Wii Rich Presence Redux")>
<Assembly: AssemblyDescription("")>
<Assembly: AssemblyDescription("MKWii-RPRedux; Discord rich presence for Wiimmfi's Mario Kart Wii online play.")>
<Assembly: AssemblyCompany("")>
<Assembly: AssemblyProduct("Mario Kart Wii Rich Presence Redux")>
<Assembly: AssemblyCopyright("Copyright © 2022")>
<Assembly: AssemblyCopyright("Copyright © dotcomboom 2023")>
<Assembly: AssemblyTrademark("")>

<Assembly: ComVisible(False)>
Expand All @@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")>

<Assembly: AssemblyVersion("1.0.0.0")>
<Assembly: AssemblyFileVersion("1.0.0.0")>
<Assembly: AssemblyVersion("1.1.0.0")>
<Assembly: AssemblyFileVersion("1.1.0.0")>
24 changes: 24 additions & 0 deletions Mario Kart Wii Rich Presence Redux/My Project/Settings.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,11 @@
<Setting Name="addText" Type="System.String" Scope="User">
<Value Profile="(Default)">0000-0000-0000</Value>
</Setting>
<Setting Name="useOwnApp" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
<Setting Name="userAppId" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
</Settings>
</SettingsFile>
87 changes: 50 additions & 37 deletions Mario Kart Wii Rich Presence Redux/frmMain.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 602bf6a

Please sign in to comment.