Skip to content

Commit f6e025a

Browse files
Update OpenRGB submodule, update default port, and update client string
1 parent d282267 commit f6e025a

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

KeyboardVisualizer.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
1616
#-----------------------------------------------------------------------#
1717
# Application Configuration #
1818
#-----------------------------------------------------------------------#
19-
VERSION = 4.00
19+
VERSION = 4.01
2020
TARGET = KeyboardVisualizer
2121
TEMPLATE = app
2222

KeyboardVisualizerCommon/Visualizer.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1366,8 +1366,11 @@ NetworkClient * Visualizer::OpenRGBConnect(const char * ip, unsigned short port)
13661366
{
13671367
NetworkClient * rgb_client = new NetworkClient(rgb_controllers);
13681368

1369+
std::string titleString = "Keyboard Visualizer ";
1370+
titleString.append(VERSION_STRING);
1371+
13691372
rgb_client->SetIP(ip);
1370-
rgb_client->SetName("Keyboard Visualizer OpenRGB SDK Dev Build");
1373+
rgb_client->SetName(titleString.c_str());
13711374
rgb_client->SetPort(port);
13721375

13731376
rgb_client->StartClient();

KeyboardVisualizerQT/KeyboardVisDlg.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ KeyboardVisDlg::KeyboardVisDlg(QWidget *parent) : QMainWindow(parent), ui(new Ke
4646
trayIcon->show();
4747

4848
ui->lineEdit_IP->setText("127.0.0.1");
49-
ui->lineEdit_Port->setText("1337");
49+
ui->lineEdit_Port->setText(QString::number(OPENRGB_SDK_PORT));
5050
}
5151

5252
void KeyboardVisDlg::show()

OpenRGB

Submodule OpenRGB updated from cbb13b0 to 0464fbc

0 commit comments

Comments
 (0)