Skip to content

Commit

Permalink
v5.2 Online
Browse files Browse the repository at this point in the history
Update Internal patcher Library to v4.0
  • Loading branch information
Paolo committed Sep 11, 2019
1 parent 5afd9be commit e42c432
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Navicat_Keygen_Patch_By_DFoX/NC.cs
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ private void generateactivation_DFoX()
MessageBox.Show("Error DI Value is null...", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
lic = String.Format("{{\"K\":\"{0}\", \"DI\":\"{1}\", \"N\":\"{2}\", \"O\":\"{3}\", \"T\":{4}}}"/*, \"P\":\"{2}\"*/, snKey != null ? snKey : tserial.Text.Trim().Replace("-", ""), DeviceIdentifier, tname.Text.Trim(), torganization.Text.Trim(), tval/*, Platform != null ? Platform : cMac.Checked ? "Mac 10.13" : "WIN 8"*/);
lic = String.Format("{{\"K\":\"{0}\", \"DI\":\"{1}\", \"N\":\"{2}\", \"O\":\"{3}\", \"T\":{4}}}", snKey != null ? snKey : tserial.Text.Trim().Replace("-", ""), DeviceIdentifier, tname.Text.Trim(), torganization.Text.Trim(), tval);
eng.Init(true, keys.Private);
bytelic = Encoding.ASCII.GetBytes(lic);
licenza = eng.ProcessBlock(bytelic, 0, bytelic.Length);
Expand All @@ -575,7 +575,7 @@ private void generateactivation_DFoX()
}
else
{
lic = String.Format("{{\"K\":\"{0}\", \"N\":\"{1}\", \"O\":\"{2}\", \"T\":{3}}}", snKey != null ? snKey : tserial.Text.Trim().Replace("-", ""), tname.Text.Trim(), torganization.Text.Trim(), tval/*, Platform != null ? Platform : cMac.Checked ? "Mac 10.13" : "WIN 8"*/);
lic = String.Format("{{\"K\":\"{0}\", \"N\":\"{1}\", \"O\":\"{2}\", \"T\":{3}}}", snKey != null ? snKey : tserial.Text.Trim().Replace("-", ""), tname.Text.Trim(), torganization.Text.Trim(), tval);
eng.Init(true, keys.Private);
bytelic = Encoding.ASCII.GetBytes(lic);
licenza = eng.ProcessBlock(bytelic, 0, bytelic.Length);
Expand Down Expand Up @@ -994,8 +994,8 @@ private void PatchewNV(string file)
p.Start();
using (var timer = new System.Threading.Timer(delegate { tp(); }, null, 60000, Timeout.Infinite))
{
string error = p.StandardOutput.ReadToEnd();
if (error.Contains("Patch has been done successfully"))
string error = p.StandardOutput.ReadToEnd().ToLower();
if (error.Contains("patch has been done successfully"))
{
if (clin.Checked)
{
Expand Down
4 changes: 2 additions & 2 deletions Navicat_Keygen_Patch_By_DFoX/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// È possibile specificare tutti i valori oppure impostare valori predefiniti per i numeri relativi alla revisione e alla build
// usando l'asterisco '*' come illustrato di seguito:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("5.1.0.0")]
[assembly: AssemblyFileVersion("5.1.0.0")]
[assembly: AssemblyVersion("5.2.0.0")]
[assembly: AssemblyFileVersion("5.2.0.0")]
Binary file modified Navicat_Keygen_Patch_By_DFoX/Resources/NP_x32.exe
Binary file not shown.
Binary file modified Navicat_Keygen_Patch_By_DFoX/Resources/NP_x64.exe
Binary file not shown.

0 comments on commit e42c432

Please sign in to comment.