Skip to content

Commit

Permalink
feat : release v.2.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
PierroD committed Nov 17, 2023
1 parent a272424 commit ec734f6
Show file tree
Hide file tree
Showing 12 changed files with 60 additions and 29 deletions.
4 changes: 2 additions & 2 deletions LINDRA - Market/LINDRA - Market/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// Vous pouvez spécifier toutes les valeurs ou indiquer les numéros de build et de révision par défaut
// en utilisant '*', comme indiqué ci-dessous :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.3.6.0")]
[assembly: AssemblyFileVersion("2.3.6.0")]
[assembly: AssemblyVersion("2.3.7.0")]
[assembly: AssemblyFileVersion("2.3..0")]
4 changes: 2 additions & 2 deletions LINDRA - Market/LINDRA - Market/Utils/AppSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace LINDRA___Market.Utils
public static class AppSettings
{
public static bool isDarkMode { get; set; } = false;
public static string version { get; set; } = "2.3.6";
public static string latestVersion { get; set; } = "2.3.6";
public static string version { get; set; } = "2.3.7";
public static string latestVersion { get; set; } = "2.3.7";
}
}

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

35 changes: 17 additions & 18 deletions LINDRA - Market/LINDRA - Market/form/Console/FormConsole.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,24 +45,6 @@ private void FormConsole_Load(object sender, EventArgs e)

this.parent.Visible = false;
buttonConsole.PerformClick();
gameThread = new Thread(new ThreadStart(checkGameStatus));
}

private void checkGameStatus()
{
while (true)
{
if (COD.checkGame())
{
labelGameName.Text = COD.LongGameName();
labelGameName.ForeColor = AppColors.textColor;
}
else
{
labelGameName.Text = "No game found";
labelGameName.ForeColor = AppColors.secondaryColor;
}
}
}

private void buttons_SideBar_Click(object sender, EventArgs e)
Expand All @@ -81,6 +63,23 @@ private void FormConsole_FormClosing(object sender, FormClosingEventArgs e)
parent.Visible = true;
}

private void timerGame_Tick(object sender, EventArgs e)
{
if (COD.checkGame())
{

labelGameName.Text = COD.LongGameName();
labelGameName.ForeColor = AppColors.textColor;

}
else
{
labelGameName.Text = "No game found";
labelGameName.ForeColor = AppColors.secondaryColor;
}

}

private UserControl GetUserControlInstance(string buttonName)
{
switch (buttonName)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1873,6 +1873,9 @@
<value>113, 16</value>
</metadata>
<metadata name="formDragControl.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>534, 16</value>
<value>533, 16</value>
</metadata>
<metadata name="timerGame.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>421, 16</value>
</metadata>
</root>

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

13 changes: 11 additions & 2 deletions LINDRA - Market/LINDRA - Market/form/FpsUnlocker/fps_unlocker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,17 @@ private UserControl GetUserControlInstance(string buttonName)
}
}

private void timerGame_Tick(object sender, EventArgs e)
{
try
{
labelGameName.Text = COD.LongGameName();
labelGameName.ForeColor = AppColors.textColor;
}
catch (Exception ex) { }

}

private void fps_unlocker_FormClosing(object sender, FormClosingEventArgs e)
{
gameThread.Abort();
Expand All @@ -103,8 +114,6 @@ private void injectInGame()
{
if (COD.checkGame())
{
labelGameName.Text = COD.LongGameName();
labelGameName.ForeColor = AppColors.textColor;
dynamic cod = COD.Game();
t.Process_Handle(COD.GameName());
t.WriteFloat(t.ReadInteger((int)cod.GetType().GetProperty("cg_fov").GetValue(cod)) + (int)cod.GetType().GetProperty("dvar").GetValue(cod), FpsSettings.bar_fov);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1927,4 +1927,7 @@
<metadata name="formDragControl.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>250, 17</value>
</metadata>
<metadata name="timerGame.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>395, 17</value>
</metadata>
</root>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Call of Duty FPS unlocker Market, is the latest version of my FPS Unlocker, if y

# Installation guide

- [Download the lastest version](https://raw.githubusercontent.com/PierroD/Market/main/_updates/Market%20v2.3.6.zip) - (check if some updates are needed)
- [Download the lastest version](https://raw.githubusercontent.com/PierroD/Market/main/_updates/Market%20v2.3.7.zip) - (check if some updates are needed)
- Unzip the archive somehere on your computer
- Start `LINDRA - Market.exe`
- Enjoy :smiley:
Expand Down
2 changes: 1 addition & 1 deletion _readmes/lastestVersion.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.3.6
2.3.7
3 changes: 3 additions & 0 deletions _readmes/updateChanges.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### v2.3.7
- Fixed prevent game thread from crashing the game & Market

### v2.3.6
- Fixed cg_fovMin range change from (65/130) to (0/120)

Expand Down
Binary file added _updates/Market v2.3.7.zip
Binary file not shown.

0 comments on commit ec734f6

Please sign in to comment.