Compare commits

..

No commits in common. "master" and "v1.1" have entirely different histories.
master ... v1.1

2 changed files with 4 additions and 2 deletions

View File

@ -190,9 +190,10 @@ Public Class main
End Try End Try
Case "text" Case "text"
Dim text As String = req.QueryString("text") Dim encodedtext As String = req.QueryString("text")
Dim decodedtext As String = Uri.UnescapeDataString(encodedtext)
Try Try
SendKeysEscaped(text) SendKeysEscaped(decodedtext)
Catch ex As Exception Catch ex As Exception
log(ex.ToString) log(ex.ToString)
End Try End Try

View File

@ -51,6 +51,7 @@ input{
</head> </head>
<body> <body>
<div style="flex:2"> <div style="flex:2">
<button style="flex:1">menu</button>
<button onclick="fetch('/key?code=46')" style="flex:1">del</button> <button onclick="fetch('/key?code=46')" style="flex:1">del</button>
<button onclick="fetch('/key?code=8')" style="flex:1">bksp</button> <button onclick="fetch('/key?code=8')" style="flex:1">bksp</button>
<button onclick="fetch('/key?code=13')" style="flex:1">enter</button> <button onclick="fetch('/key?code=13')" style="flex:1">enter</button>