Skip to content

Commit 33bbe03

Browse files
committed
errors should be written to stderr
1 parent 2c268a7 commit 33bbe03

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

FlashpointSecurePlayer/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
// You can specify all the values or you can default the Build and Revision Numbers
3434
// by using the '*' as shown below:
3535
// [assembly: AssemblyVersion("1.0.*")]
36-
[assembly: AssemblyVersion("1.1.2.0")]
37-
[assembly: AssemblyFileVersion("1.1.2.0")]
36+
[assembly: AssemblyVersion("1.1.3.0")]
37+
[assembly: AssemblyFileVersion("1.1.3.0")]
3838
[assembly: NeutralResourcesLanguage("en")]
3939

FlashpointSecurePlayer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Flashpoint Secure Player 1.1.2
1+
# Flashpoint Secure Player 1.1.3
22
This player attempts to solve common compatibility or portability issues posed by browser plugins on Windows for the purpose of playback in BlueMaxima's Flashpoint.
33

44
It is compatible with Windows 7, Windows 8, Windows 8.1 and Windows 10, and requires .NET Framework 4.5. If you are on Windows 8.1 or Windows 10, or if you are on Windows 7/8 and have updates enabled, you already have .NET Framework 4.5. Otherwise, you may [download .NET Framework 4.5.](http://www.microsoft.com/en-us/download/details.aspx?id=30653)

FlashpointSecurePlayer/Shared.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public RegistryBackupFailedException(string message, Exception inner) : base(mes
106106

107107
public static void LogExceptionToLauncher(Exception ex) {
108108
try {
109-
Console.WriteLine(ex.Message);
109+
Console.Error.WriteLine(ex.Message);
110110
} catch {
111111
// Fail silently.
112112
}

0 commit comments

Comments
 (0)