Skip to content

Commit 24fbce5

Browse files
committed
Ensure the output is flushed immediately and fix version numbers
1 parent 9192c32 commit 24fbce5

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

SPECTR3/Program.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ private static int CreateISCSITarget(string drivename, List<Disk> m_disk, ISCSIS
6161

6262
private static void PrintHelp()
6363
{
64-
Console.WriteLine("SPECTR3 v0.7.5 - Remote acquisition and forensic tool by Alpine Security");
64+
Console.WriteLine("SPECTR3 v0.7.7 - Remote acquisition and forensic tool by Alpine Security");
6565
Console.WriteLine("Usage: SPECTR3.exe [options]");
6666
Console.WriteLine("Options:");
6767
Console.WriteLine(" -l, --list");
@@ -471,6 +471,8 @@ static int Main(string[] args)
471471
+ serverAddress + ":" + port);
472472
Console.WriteLine(" + Target IQN: " + txtTargetIQN);
473473
Console.WriteLine(" + Access Permited from: " + permitedAddress.ToString());
474+
Console.Out.Flush(); // Ensure the output is flushed immediately
475+
474476
return 0;
475477
}
476478

SPECTR3/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
[assembly: ComVisible(false)]
2121

2222
// The following GUID is for the ID of the typelib if this project is exposed to COM
23-
[assembly: Guid("d544d1db-af64-44cd-97f9-81c7648f0cea")]
23+
[assembly: Guid("42fe5581-1dec-492f-93de-0d281f824731")]
2424

2525
// Version information for an assembly consists of the following four values:
2626
//
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("0.7.6.0")]
36-
[assembly: AssemblyFileVersion("0.7.6.0")]
35+
[assembly: AssemblyVersion("0.7.7.0")]
36+
[assembly: AssemblyFileVersion("0.7.7.0")]

0 commit comments

Comments
 (0)