Skip to content

Commit

Permalink
v1.09a, fix double line spacing issue introduced in v1.09
Browse files Browse the repository at this point in the history
  • Loading branch information
thedjnK committed Aug 25, 2017
1 parent 50aff31 commit 7747a6e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion LrdScrollEdit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ LrdScrollEdit::AddDatInText(
{
//Adds data to the DatIn buffer
bool bIsEmpty = mstrDatIn.isEmpty();
mstrDatIn += QString(baDat->replace("\r", "\n"));
mstrDatIn += QString(baDat->replace("\r\n", "\n").replace("\r", "\n"));
if (bIsEmpty == true && (baDat[0] == "\r" || baDat[0] == "\n"))
{
//Remove first newline
Expand Down
2 changes: 1 addition & 1 deletion UwxMainWindow.h
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ const qint8 MODE_UPDATE_ERROR_CODE = 16;
const qint8 MODE_CHECK_FIRMWARE_VERSIONS = 17;
const qint8 MODE_CHECK_FIRMWARE_SUPPORT = 18;
//Constants for version and functions
const QString UwVersion = "1.09"; //Version string
const QString UwVersion = "1.09a"; //Version string
//Constants for timeouts and streaming
const qint16 FileReadBlock = 512; //Number of bytes to read per block when streaming files
const qint16 StreamProgress = 10000; //Number of bytes between streaming progress updates
Expand Down
8 changes: 4 additions & 4 deletions version.rc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include <windows.h>

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1, 8, 23, 0
PRODUCTVERSION 1, 8, 23, 0
FILEVERSION 1, 9, 0, 0
PRODUCTVERSION 1, 9, 0, 0
FILEFLAGSMASK 0x3fL
FILEFLAGS 0
FILEOS VOS_NT_WINDOWS32
Expand All @@ -19,12 +19,12 @@
BEGIN
VALUE "CompanyName", "Laird\0"
VALUE "FileDescription", "UwTerminalX\0"
VALUE "FileVersion", "1.8.23.0\0"
VALUE "FileVersion", "1.9.0.0\0"
VALUE "InternalName", "UwTerminalX\0"
VALUE "LegalCopyright", "Copyright 2015-2017 Laird\0"
VALUE "OriginalFilename", "UwTerminalX.exe\0"
VALUE "ProductName", "UwTerminalX\0"
VALUE "ProductVersion", "1.8.23.0\0"
VALUE "ProductVersion", "1.9.0.0\0"
END
END
END
Expand Down

0 comments on commit 7747a6e

Please sign in to comment.