commit 22b0a264fb788c0d9b54c8617c45731dd7c41a82
Author: Leszek Koltunski <leszek@koltunski.pl>
Date:   Wed Apr 15 23:01:59 2020 +0100

    Do not allow more than 15 characters in the NAME.

diff --git a/src/main/res/layout/dialog_set_name.xml b/src/main/res/layout/dialog_set_name.xml
index cf2986eb..a2c38fce 100644
--- a/src/main/res/layout/dialog_set_name.xml
+++ b/src/main/res/layout/dialog_set_name.xml
@@ -30,6 +30,7 @@
             android:id="@+id/set_name"
             android:singleLine="true"
             android:digits="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"
+            android:maxLength="15"
             android:layout_width="match_parent"
             android:layout_height="wrap_content"
             android:layout_marginLeft="50dp"
