Skip to content

Commit 7747a6e

Browse files
committed
v1.09a, fix double line spacing issue introduced in v1.09
1 parent 50aff31 commit 7747a6e

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

LrdScrollEdit.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ LrdScrollEdit::AddDatInText(
340340
{
341341
//Adds data to the DatIn buffer
342342
bool bIsEmpty = mstrDatIn.isEmpty();
343-
mstrDatIn += QString(baDat->replace("\r", "\n"));
343+
mstrDatIn += QString(baDat->replace("\r\n", "\n").replace("\r", "\n"));
344344
if (bIsEmpty == true && (baDat[0] == "\r" || baDat[0] == "\n"))
345345
{
346346
//Remove first newline

UwxMainWindow.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ const qint8 MODE_UPDATE_ERROR_CODE = 16;
103103
const qint8 MODE_CHECK_FIRMWARE_VERSIONS = 17;
104104
const qint8 MODE_CHECK_FIRMWARE_SUPPORT = 18;
105105
//Constants for version and functions
106-
const QString UwVersion = "1.09"; //Version string
106+
const QString UwVersion = "1.09a"; //Version string
107107
//Constants for timeouts and streaming
108108
const qint16 FileReadBlock = 512; //Number of bytes to read per block when streaming files
109109
const qint16 StreamProgress = 10000; //Number of bytes between streaming progress updates

version.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#include <windows.h>
22

33
VS_VERSION_INFO VERSIONINFO
4-
FILEVERSION 1, 8, 23, 0
5-
PRODUCTVERSION 1, 8, 23, 0
4+
FILEVERSION 1, 9, 0, 0
5+
PRODUCTVERSION 1, 9, 0, 0
66
FILEFLAGSMASK 0x3fL
77
FILEFLAGS 0
88
FILEOS VOS_NT_WINDOWS32
@@ -19,12 +19,12 @@
1919
BEGIN
2020
VALUE "CompanyName", "Laird\0"
2121
VALUE "FileDescription", "UwTerminalX\0"
22-
VALUE "FileVersion", "1.8.23.0\0"
22+
VALUE "FileVersion", "1.9.0.0\0"
2323
VALUE "InternalName", "UwTerminalX\0"
2424
VALUE "LegalCopyright", "Copyright 2015-2017 Laird\0"
2525
VALUE "OriginalFilename", "UwTerminalX.exe\0"
2626
VALUE "ProductName", "UwTerminalX\0"
27-
VALUE "ProductVersion", "1.8.23.0\0"
27+
VALUE "ProductVersion", "1.9.0.0\0"
2828
END
2929
END
3030
END

0 commit comments

Comments
 (0)