--- a/ChangeLog.txt Mon Sep 30 15:15:28 2019 +0200
+++ b/ChangeLog.txt Mon Sep 30 16:02:39 2019 +0200
@@ -170,6 +170,7 @@
* Fix force-locked schemes getting unlocked when changing map types
* Fix possible to select background-only or hidden themes indirectly by changing map type
* Disallow slash, backslash and colon characters in team and scheme names
+ * Increase user name length from 20 to 40
Sounds and voicepacks:
+ sndYoohoo has been split to sndYoohoo and sndKiss
--- a/QTfrontend/ui/page/pageoptions.cpp Mon Sep 30 15:15:28 2019 +0200
+++ b/QTfrontend/ui/page/pageoptions.cpp Mon Sep 30 16:02:39 2019 +0200
@@ -573,7 +573,7 @@
groupAccount->layout()->addWidget(labelNN, 0, 0);
editNetNick = new QLineEdit(groupAccount);
- editNetNick->setMaxLength(20);
+ editNetNick->setMaxLength(40);
editNetNick->setText(QLineEdit::tr("anonymous"));
groupAccount->layout()->addWidget(editNetNick, 0, 1);