Page 5 of 6

Re: FTP client

Posted: Tue Mar 27, 2018 7:50 pm
by nisargshah95
Yes! It worked. Now the question is, why does 70.3 create the file? It should return eax=5 (file not found).

Re: FTP client

Posted: Sat Oct 13, 2018 8:37 pm
by Leency
Could anyone help please: how to download selected file?

Re: FTP client

Posted: Sat Oct 13, 2018 8:51 pm
by Leency
1) bug: user could select the non-exist file after the last one http://prntscr.com/l5p71k -> boxlib issue
2) bug: connect to ftp://kolibrios.org, user: anonymous; press Cancel http://prntscr.com/l5p7sv => app freezes
3) usability issue: http://prntscr.com/l5p80r tab doesn't work
also would be nice to have Enter work
4) would be nice to try to connect as "anonymous" automatically -> ?not sure we need it?
5) is "Search" button works http://prntscr.com/l5p8s9 ?
6) usability bug: not possible to open folder http://prntscr.com/l5p96t using mouse (second click on already selected item or double click) -> boxlib issue
7) there is no local folder refresh after file download; normally it has to be refreshed
8) Would you mind to make log font smaller? -> done partially, need to decrease letter spacing

Re: FTP client

Posted: Sun Oct 14, 2018 5:38 am
by nisargshah95
Leency wrote:Could anyone help please: how to download selected file?
Pressing 'Enter' will enter into directories/download files. I think it is a feature of box lib itself rather than ftpc.

Re: FTP client

Posted: Sun Oct 14, 2018 5:55 pm
by nisargshah95
Leency wrote:1) bug: user could select the non-exist file after the last one http://prntscr.com/l5p71k
2) bug: connect to ftp://kolibrios.org, user: anonymous; press Cancel http://prntscr.com/l5p7sv => app freezes
3) usability issue: http://prntscr.com/l5p80r tab doesn't work
also would be nice to have Enter work
4) would be nice to try to connect as "anonymous" automatically
5) is "Search" button works http://prntscr.com/l5p8s9 ?
6) usability bug: not possible to open folder http://prntscr.com/l5p96t using mouse (second click on already selected item or double click)
2 should be fixed in Rev 7463. For 1, 3 and 6, will need to dig into box lib.
Regarding 5, search only searches within the files/directories listed in right pane. If you search second time without refreshing the directory list using "LIST", it will search within the current search results. Possible solution is to do a "LIST" before search.

Re: FTP client

Posted: Sun Oct 14, 2018 8:01 pm
by Leency
2. Thanks

3. not a box lib task, this should be implemented in app
if (editbox1.active) then editbox1.disable and set editbox2.active
else if (editbox2.active) then editbox2.disable and set editbox3.active
else if ...

Re: FTP client

Posted: Sun Oct 14, 2018 8:08 pm
by nisargshah95
Correct, I meant I will need to check how to make an edit box active.

Re: FTP client

Posted: Sun Oct 14, 2018 9:31 pm
by Leency
3. fixed

Re: FTP client

Posted: Tue Oct 16, 2018 7:32 pm
by nisargshah95
Thanks.
test word [edit_pass.flags],ed_focus
Great! This is exactly what I was looking for :D

Re: FTP client

Posted: Tue Oct 16, 2018 8:57 pm
by Leency
7. there is no local folder refresh after file download; normally it has to be refreshed
Could you fix this please?

Re: FTP client

Posted: Fri Oct 19, 2018 12:45 pm
by nisargshah95
Leency wrote:
7. there is no local folder refresh after file download; normally it has to be refreshed
Could you fix this please?
Rev 7487 fixes this and log font size

Re: FTP client

Posted: Fri Oct 19, 2018 2:40 pm
by Leency
Great, I'll check with IgorA the rest points http://board.kolibrios.org/viewtopic.ph ... 989#p71989

Re: FTP client

Posted: Fri Oct 19, 2018 10:53 pm
by Leency
Use system colors for login UI, show error message in case of empty "Server" field.
Fixed too big letter spacing in log (edit0) at main window.

P.S. I will fix "adress" next time :)

Re: FTP client

Posted: Fri Oct 19, 2018 11:12 pm
by Leency
nisargshah95
6) usability bug: not possible to open folder http://prntscr.com/l5p96t using mouse (second click on already selected item or double click)
I have checked this point.
So the best way is to catch the moment of item click. If user clicks second time on the same element then we download file or open a folder.
Could you please implement it?

Re: FTP client

Posted: Tue Oct 30, 2018 6:11 pm
by Leency

Code: Select all

1) bug: user could select the non-exist file after the last one http://prntscr.com/l5p71k -> boxlib issue
This fixed. Rev 7509. Also thanks to IgorA for boxlib fixing.