Skip to content
This repository was archived by the owner on Oct 2, 2024. It is now read-only.

Commit ad054d9

Browse files
committed
SignTool 1.3.4
1 parent e51baad commit ad054d9

24 files changed

+19
-25
lines changed

.vs/SignTool/v16/.suo

0 Bytes
Binary file not shown.

.vs/slnx.sqlite

0 Bytes
Binary file not shown.

SignTool/SignTool.Designer.cs

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

SignTool/SignTool.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ private void Form1_Load(object sender, EventArgs e)
2424
progressBar.Visible = false;
2525
FilesListBox.Items.Clear();
2626
logtxt.Clear();
27-
statusLabel.Text = "[INFO] Welcome to SignTool version 1.3.3";
27+
statusLabel.Text = "[INFO] Welcome to SignTool version 1.3.4";
2828
}
2929
#endregion
3030

@@ -124,10 +124,10 @@ private void StartJob_Click(object sender, EventArgs e)
124124
logtxt.AppendText("[" + (jobSigned + 1) + "] " + file + "... ");
125125
Application.DoEvents();
126126
SignTool.SignWithCert(file, "http://timestamp.verisign.com/scripts/timstamp.dll");
127+
logtxt.Text += "OK" + Environment.NewLine;
127128
jobSigned += 1;
128129
progressBar.Step = 1;
129130
progressBar.PerformStep();
130-
logtxt.Text += "OK" + Environment.NewLine;
131131
statusLabel.Text = "[JOB] Signed " + jobSigned + " of " + totalJob + " Files";
132132
}
133133

@@ -200,7 +200,7 @@ private void ButtonHelp_Click(object sender, EventArgs e)
200200
// menu selection for getting contributor credits
201201
private void ButtonAbout_Click(object sender, EventArgs e)
202202
{
203-
MessageBox.Show("About SignTool" + Environment.NewLine + Environment.NewLine + "Signer Written by eisbaer82 on XDA" + Environment.NewLine + "GUI Improved by TheBoyLeastLikelyTo on GitHub" + Environment.NewLine + "Can be used on arm32 Windows, such as RT", "About", MessageBoxButtons.OK, MessageBoxIcon.Information);
203+
MessageBox.Show("About SignTool v1.3.4" + Environment.NewLine + Environment.NewLine + "Signer Written by eisbaer82 on XDA" + Environment.NewLine + "GUI Improved by TheBoyLeastLikelyTo on GitHub" + Environment.NewLine + "Can be used on arm32 Windows, such as RT", "About", MessageBoxButtons.OK, MessageBoxIcon.Information);
204204
}
205205

206206
// menu selection for exiting the program

SignTool/SignTool.csproj

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,13 @@
6969
<AssemblyOriginatorKeyFile>Surface.pfx</AssemblyOriginatorKeyFile>
7070
</PropertyGroup>
7171
<PropertyGroup />
72+
<PropertyGroup>
73+
<TargetZone>LocalIntranet</TargetZone>
74+
</PropertyGroup>
75+
<PropertyGroup>
76+
<GenerateManifests>false</GenerateManifests>
77+
</PropertyGroup>
78+
<PropertyGroup />
7279
<ItemGroup>
7380
<Reference Include="System" />
7481
<Reference Include="System.Core" />

SignTool/Signer.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,10 @@ public static void SignWithCert(string appPath, string timestampUrl)
207207
string exception = e.Message;
208208

209209
// MessageBox displayed at each file signed:
210-
// System.Windows.Forms.MessageBox.Show(exception);
210+
if (exception.Contains("successful") == false)
211+
{
212+
System.Windows.Forms.MessageBox.Show(exception, "JOB ERROR", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Error);
213+
}
211214
}
212215
finally
213216
{

SignTool/bin/Debug/SignTool.exe

-29 KB
Binary file not shown.

SignTool/bin/Debug/SignTool.exe.config

Lines changed: 0 additions & 6 deletions
This file was deleted.

SignTool/bin/Debug/SignTool.pdb

-39.5 KB
Binary file not shown.

SignTool/bin/Release/SignTool.exe

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)