Your comments
Yes, you can tap the "wrench" icon to open the app's settings screen. There you can adjust the font and font size. You can also use a pinch-to-zoom gesture to zoom into the text view with two fingers if you want to temporarily magnify a portion of the text.
Thanks for the detailed description! I'll try to fix it in an update.
Is the behavior different when you try to do that in another app like Apple's Notes?
Can you tell me step for step what I have to do to reproduce the problem and how it differs from other apps?
I'll try to setup a Bitvise SSH server in a VM to see if I can reproduce the problem.
Hello,
thanks for the detailed report. Can you please try to set the "Connections" setting to "1". This limits the amount of concurrent connections to 1 - the default is three.
Please let me know if this changes anything.
Hello,
can you please enable the "Debug Log" setting in the connection's settings? You can edit those settings by tapping on the blue arrow on the right side of the connection. After that, please try to connect to the server and send me the resulting log file to support@textasticapp.com.
Can you reach the servers from other apps on your device like for example Safari? Maybe it is a network configuration issue on the device.
Customer support service by UserEcho
The problem will be fixed in the next update.
Here is some background information: I am using a zip library which is using the "fopen" function to open files and "fread" to read their contents when creating the zip file. Unfortunately, the code never called "fclose". So while creating the zip file, the app would run out of file handles and silently fail to add all files to the zip file. I added a call to "fclose" after each file was written to the zip file and now it works correctly.