Skip to content

Commit

Permalink
Fixed spelling mistakes.
Browse files Browse the repository at this point in the history
Thanks CritLoren
  • Loading branch information
KrisIsBackAU committed Nov 19, 2022
1 parent 61fc5d9 commit f43d483
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Oculus VR Dash Manager/Dashes/Dash Manager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public static void GenerateDashes()
{
Software.Oculus.Check_Current_Dash();

Oculus_Dash = new OVR_Dash("Offical Oculus Dash", "OculusDash_Normal.exe", ProcessToStop: "vrmonitor");
Oculus_Dash = new OVR_Dash("Official Oculus Dash", "OculusDash_Normal.exe", ProcessToStop: "vrmonitor");
SteamVR_Dash = new OVR_Dash("ItsKaitlyn03 - Oculus Killer", "ItsKaitlyn03_Oculus_Killer.exe", "Oculus Killer", "ItsKaitlyn03", "OculusKiller", "OculusDash.exe");

Software.Oculus.Setup();
Expand Down Expand Up @@ -276,7 +276,7 @@ private static Boolean Running(ServiceControllerStatus Status)
}
}

public static bool Oculus_Offical_Dash_Installed()
public static bool Oculus_Official_Dash_Installed()
{
return Oculus_Dash.Installed;
}
Expand Down
4 changes: 2 additions & 2 deletions Oculus VR Dash Manager/Forms/frm_Diagnostics.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<Label Content="Steam" HorizontalAlignment="Left" Margin="10,172,0,0" VerticalAlignment="Top" Height="28" Width="46" />
<Label Content="Steam VR" HorizontalAlignment="Left" Margin="10,205,0,0" VerticalAlignment="Top" />
<Label Content="Current Dash" HorizontalAlignment="Left" Margin="10,238,0,0" VerticalAlignment="Top" />
<Label Content="Offical Dash" HorizontalAlignment="Left" Margin="10,271,0,0" VerticalAlignment="Top" />
<Label Content="Official Dash" HorizontalAlignment="Left" Margin="10,271,0,0" VerticalAlignment="Top" />
<Label Content="ItsKaitlyn03 / OculusKiller" HorizontalAlignment="Left" Margin="10,304,0,0" VerticalAlignment="Top" />
<Label x:Name="lbl_OculusSoftware" Content="Label" Margin="174,40,10,0" VerticalAlignment="Top" />
<Label x:Name="lbl_OculussClient" Content="Label" Margin="174,73,10,0" VerticalAlignment="Top" />
Expand All @@ -31,7 +31,7 @@
<Label x:Name="lbl_Steam" Content="Label" Margin="174,172,10,0" VerticalAlignment="Top" />
<Label x:Name="lbl_SteamVR" Content="Label" Margin="174,205,10,0" VerticalAlignment="Top" />
<Label x:Name="lbl_CurrentDash" Content="Label" Margin="174,238,10,0" VerticalAlignment="Top" />
<Label x:Name="lbl_OfficalDash" Content="Label" Margin="174,271,10,0" VerticalAlignment="Top" />
<Label x:Name="lbl_OfficialDash" Content="Label" Margin="174,271,10,0" VerticalAlignment="Top" />
<Label x:Name="lbl_OculusKiller" Content="Label" Margin="174,304,10,0" VerticalAlignment="Top" />
<Label Content="Last Check" HorizontalAlignment="Left" Margin="10,7,0,0" VerticalAlignment="Top" />
<Label x:Name="lbl_DiagnosticsCheckTime" Content="Label" Margin="174,7,10,0" VerticalAlignment="Top" />
Expand Down
2 changes: 1 addition & 1 deletion Oculus VR Dash Manager/Forms/frm_Diagnostics.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ private void DiagnosticsChecker()
else
lbl_OculussClient.Content = "Not Found";

lbl_OfficalDash.Content = Dashes.Dash_Manager.IsInstalled(Dashes.Dash_Type.Normal) ? "Installed" : "Not Found";
lbl_OfficialDash.Content = Dashes.Dash_Manager.IsInstalled(Dashes.Dash_Type.Normal) ? "Installed" : "Not Found";
lbl_OculusKiller.Content = Dashes.Dash_Manager.IsInstalled(Dashes.Dash_Type.Normal) ? "Installed" : "Not Found";

FileVersionInfo Info = FileVersionInfo.GetVersionInfo(Software.Oculus.Oculus_Dash_File);
Expand Down
2 changes: 1 addition & 1 deletion Oculus VR Dash Manager/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<Label x:Name="lbl_CurrentSetting" Content="Unknown" Margin="10,254,10,0" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" FontSize="20" Height="45" VerticalAlignment="Top" />
<GroupBox Header="Dashes" Margin="10,42,10,0" Height="171" VerticalAlignment="Top">
<Grid x:Name="gd_DashButtons">
<Button x:Name="btn_Normal" Content="Offical Dash&#10;&#10;(SteamVR)&#10;Hover to activate" HorizontalAlignment="Left" Width="200" Margin="0,0,0,23" Click="btn_ActivateDash_Click" MouseEnter="btn_Normal_MouseEnter" MouseLeave="btn_Normal_MouseLeave" BorderBrush="#FF515151" />
<Button x:Name="btn_Normal" Content="Official Dash&#10;&#10;(SteamVR)&#10;Hover to activate" HorizontalAlignment="Left" Width="200" Margin="0,0,0,23" Click="btn_ActivateDash_Click" MouseEnter="btn_Normal_MouseEnter" MouseLeave="btn_Normal_MouseLeave" BorderBrush="#FF515151" />
<ProgressBar x:Name="pb_Normal" HorizontalAlignment="Left" Width="200" Maximum="5000" SmallChange="10" Height="23" VerticalAlignment="Bottom" />
<Label x:Name="lbl_ItsKaitlyn03" Content="Visit ItsKaitlyn03 (Github)" HorizontalAlignment="Left" Width="200" Height="32" VerticalAlignment="Bottom" FontSize="12" HorizontalContentAlignment="Right" Cursor="Hand" PreviewMouseDown="lbl_ItsKaitlyn03_PreviewMouseDown" VerticalContentAlignment="Bottom" Margin="225,0,0,0" />
<Button x:Name="btn_SteamVR" Content="ItsKaitlyn03 / OculusKiller&#10;&#10;(SteamVR Mode Only)" HorizontalAlignment="Left" Width="200" Click="btn_ActivateDash_Click" Margin="225,0,0,23" />
Expand Down
4 changes: 2 additions & 2 deletions Oculus VR Dash Manager/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ private void Startup()
return;
}

if (!Dashes.Dash_Manager.Oculus_Offical_Dash_Installed())
if (!Dashes.Dash_Manager.Oculus_Official_Dash_Installed())
{
Functions_Old.DoAction(this, new Action(delegate () { lbl_CurrentSetting.Content = "Offical Oculus Dash Not Found, Replace Original Oculus Dash"; }));
Functions_Old.DoAction(this, new Action(delegate () { lbl_CurrentSetting.Content = "Official Oculus Dash Not Found, Replace Original Oculus Dash"; }));
return;
}

Expand Down
2 changes: 1 addition & 1 deletion Oculus VR Dash Manager/Oculus VR Dash Manager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<PackageIconUrl />
<Version>1.0.3.0</Version>
<Authors>KrisIsBack (AU)</Authors>
<PackageReleaseNotes>Offical &amp; Oculus Killer - Supported with Updates
<PackageReleaseNotes>Official &amp; Oculus Killer - Supported with Updates
https://github.com/KrisIsBackAU/Oculus-VR-Dash-Manager</PackageReleaseNotes>
<NeutralLanguage>en-AU</NeutralLanguage>
<RepositoryUrl>https://github.com/KrisIsBackAU/Oculus-VR-Dash-Manager</RepositoryUrl>
Expand Down
4 changes: 2 additions & 2 deletions Oculus VR Dash Manager/Software/Oculus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ private static void WhichDash(String FilePath)
_Custom_Dash = true;
else
{
if (Check_Is_OfficalDash(FilePath))
if (Check_Is_OfficialDash(FilePath))
_Normal_Dash = true;
else
{
Expand All @@ -170,7 +170,7 @@ private static void WhichDash(String FilePath)
}
}

private static bool Check_Is_OfficalDash(String FilePath)
private static bool Check_Is_OfficialDash(String FilePath)
{
Boolean Legit = false;

Expand Down

0 comments on commit f43d483

Please sign in to comment.