small newline fixes, bump version

This commit is contained in:
Laura Hausmann 2019-12-18 12:05:46 +01:00
parent 7af8cffbef
commit 3f593517e1
Signed by: zotan
GPG key ID: 5EC1D38FFC321311

View file

@ -235,11 +235,15 @@ namespace telegram {
currentInputLine = currentInputLine.Substring(0, lastIndex);
if (lastIndex != 0)
currentInputLine += " ";
if (currentInputLine.EndsWith("⏎"))
currentInputLine = currentInputLine.Remove(currentInputLine.Length - 1);
ScreenUpdate();
return;
}
currentInputLine = currentInputLine.Substring(0, currentInputLine.Length - 1);
if (currentInputLine.EndsWith("⏎"))
currentInputLine = currentInputLine.Remove(currentInputLine.Length - 1);
ScreenUpdate();
break;
default: {
@ -297,7 +301,7 @@ namespace telegram {
SystemLanguageCode = "en_US",
DeviceModel = Environment.MachineName,
SystemVersion = ".NET Core CLR " + Environment.Version,
ApplicationVersion = "0.1a",
ApplicationVersion = "0.2a",
EnableStorageOptimizer = true,
UseSecretChats = true
}