Skip to content
This repository was archived by the owner on Feb 5, 2025. It is now read-only.

Commit

Permalink
Fix DSX process name
Browse files Browse the repository at this point in the history
  • Loading branch information
josealissonbr committed Jun 29, 2022
1 parent c6242dc commit 7830bb9
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 14 deletions.
4 changes: 2 additions & 2 deletions Main2Window.cs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ private void StatusLedController()
if (!Functions.UIFunctions.isDSXRunning())
{
StatusLED.BackColor = Color.Red;
StatusLbl.Text = "DualSenseX is closed!";
StatusLbl.Text = "DSX is closed!";
return;
}

Expand All @@ -174,7 +174,7 @@ private void StatusLedController()
if (!Functions.NetworkServices.CheckAvailableServerPort(6969))
{
StatusLED.BackColor = Color.Red;
StatusLbl.Text = "UDP Server is not open!";
StatusLbl.Text = "UDP Server offline!";
return;
}

Expand Down
6 changes: 3 additions & 3 deletions Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ static void Main()
//Resolve steamID64
Functions.apiFunctions.loadSteamData();

MessageBox.Show(Session.SteamData.UserData.SteamID64);
//MessageBox.Show(Session.SteamData.UserData.SteamID64);

Application.Run(new MainWindowV3());
//Application.Run(new MainWindowV3());
//return for tests
return;
// return;

var Settings = new IniFile(Constants.TEMP_PATH + "\\DualSenseAT_settings.ini");
UserPreferences.LANG_CODE = Settings.Read("Lang");
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// É possível especificar todos os valores ou usar como padrão os Números de Build e da Revisão
// usando o "*" como mostrado abaixo:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.1.0.3")]
[assembly: AssemblyFileVersion("0.1.0.3")]
[assembly: AssemblyVersion("0.1.0.4")]
[assembly: AssemblyFileVersion("0.1.0.4")]
6 changes: 4 additions & 2 deletions SetupWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ public partial class SetupWindow : KryptonForm
public SetupWindow()
{
InitializeComponent();

this.Text = "DualSense AT v" + Application.ProductVersion + " Setup";
}

FileInfo[] langList = { };
Expand Down Expand Up @@ -53,9 +55,9 @@ private void atButton1_Click(object sender, EventArgs e)
}
}



MessageBox.Show("DualSenseAT will restart", "Setup Success!");

MessageBox.Show("DualSenseAT will restart", "Setup Success!",0, MessageBoxIcon.Information) ;

Application.Restart();

Expand Down
5 changes: 0 additions & 5 deletions SplashWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,13 @@ public SplashWindow()
private void LoadLangsList()
{
DirectoryInfo d = new DirectoryInfo(Constants.LANG_PATH);

Session.langList = d.GetFiles("*.json"); //Getting Json files
}
public void DownloadHome()
{
UpdateLbl.Text = "Fetching Home data...";
using (WebClient cliente = new WebClient())
{

var pathfinal = Constants.BASE_TEMP_PATH + "home.json";
var uri = new Uri(Constants.BASE_URL + "home/home.json");

Expand All @@ -43,7 +41,6 @@ public void DownloadHome()
cliente.DownloadFileAsync(uri, pathfinal);
}


}


Expand All @@ -63,9 +60,7 @@ private void Completed(object sender, AsyncCompletedEventArgs e)
this.Hide();
this.ShowInTaskbar = false;
Main2Window mainWindow = new Main2Window();

mainWindow.Location = this.Location;

mainWindow.Show();
}

Expand Down

0 comments on commit 7830bb9

Please sign in to comment.