FileZilla 3 development diary

Moderator: Project members

Message
Author
User avatar
botg
Site Admin
Posts: 35563
Joined: 2004-02-23 20:49
First name: Tim
Last name: Kosse

Re: FileZilla 3 development diary

#766 Post by botg » 2008-03-16 20:00

Sneak preview:
Attachments
statusbar.png
statusbar.png (12.17 KiB) Viewed 16006 times

lwc
550 File not found
Posts: 32
Joined: 2005-09-03 18:14

Re: FileZilla 3 development diary

#767 Post by lwc » 2008-03-23 17:03

* Please add v2's local "view/edit" and "open" commands.
Thanks for adding both to v3.0.5. Nevertheless, while the local "open" works fine, the local "view/edit" only works while the program is both connected to some server and idle. Since it's a local command it should work regardless of what's happening remotely (just like the local "open" command).

Also, the option "remote file editing" should now be changed to just "file editing". Speaking of which, what does the option "inherit system's filetype associations" do?

* The remote editing is impossible to work with because it keeps asking me if I want to keep/delete the local temp file.
Just a reminder.
Please please please don't ignore those things, because they don't exist in v2.

GoD
500 Syntax error
Posts: 14
Joined: 2007-04-09 21:26

Re: FileZilla 3 development diary

#768 Post by GoD » 2008-03-31 20:53

You were looking for an app which can load and save mac os x icons.
Here is a new release of IcoFx. It can do that.
http://icofx.ro/

User avatar
boco
Contributor
Posts: 26935
Joined: 2006-05-01 03:28
Location: Germany

Re: FileZilla 3 development diary

#769 Post by boco » 2008-04-01 02:35

But it doesn't run under Linux, does it?
No support requests over PM! You will NOT get any reply!!!
FTP connection problems? Please read Network Configuration.
FileZilla connection test: https://filezilla-project.org/conntest.php
FileZilla Pro support: https://customerforum.fileZilla-project.org

GoD
500 Syntax error
Posts: 14
Joined: 2007-04-09 21:26

Re: FileZilla 3 development diary

#770 Post by GoD » 2008-04-01 08:07

It works with wine.

User avatar
botg
Site Admin
Posts: 35563
Joined: 2004-02-23 20:49
First name: Tim
Last name: Kosse

Re: FileZilla 3 development diary

#771 Post by botg » 2008-04-01 08:46

GoD wrote:It works with wine.
If you don't care about speed it's also possible to put OS X into a virtual machine.

All I want is free, cross-platform open source software capable of creating OS X icons. From the commandline.

User avatar
botg
Site Admin
Posts: 35563
Joined: 2004-02-23 20:49
First name: Tim
Last name: Kosse

Re: FileZilla 3 development diary

#772 Post by botg » 2008-04-07 19:51

As many of you might have noticed already, FileZilla 3.0.9 is out which focuses on improving several aspects of the UI. Several new menu items have been added and the main statusbar got a facelift. In addition, many missing or duplicate keyboard mnemonics have been fixed in the settings dialog.
Under the hood, the resume behavior has changed, FileZilla will now automatically resume transfers after a non-critical transfer failure.


Since there's usually a one-week delay between release candidate and final release, I've spend the spare time on a small side-project. A while ago, a friend of mine asked me about the size of FileZilla, in particular how many lines of code. I had to disappoint him, since I didn't have any statistics. So for the past week I've been working on plotting code metrics.

While not yet finished, you can get a first glimpse of the things to come at http://code.filezilla-project.org/

A Python script generates the from the files in the SVN repository and writes it into a MySQL database. A second python script then fetches the data and with the help of RRDtool it plots some graphs.
The scripts are available in the SVN repository: https://filezilla.svn.sourceforge.net/s ... a/metrics/, but please don't use in a production environment yet, still very experimental.

Oh, and before anybody asks, the huge jump in the graphs is caused by the initial import of the PuTTY sources for SFTP support.

User avatar
botg
Site Admin
Posts: 35563
Joined: 2004-02-23 20:49
First name: Tim
Last name: Kosse

Re: FileZilla 3 development diary

#773 Post by botg » 2008-04-19 17:32

My plans for 3.0.10: Commandline option parsing.

So far I'll add the following options:
-s, --site-manager Start with opened Site Manager
-c, --site=<str> Connect to specified Site Manager site
--close Closes all instances of FileZilla
<FTP URL> Connect to server

For the --close option I need to figure out how to only close instances running under the same user as the caller to avoid denial of service problems on multi-user systems.

I won't implement any options to start transfers like I did in FileZilla 2. Adding those to 2.x was a big mistake, people were using FileZilla in a way it hasn't been designed for. For automated transfers, people should (wish: have) to use a commandline client.

Patte
450 Internal Error
Posts: 36
Joined: 2004-03-03 15:32

Re: FileZilla 3 development diary

#774 Post by Patte » 2008-04-29 21:53

you mean like wget for downloading?

User avatar
botg
Site Admin
Posts: 35563
Joined: 2004-02-23 20:49
First name: Tim
Last name: Kosse

Re: FileZilla 3 development diary

#775 Post by botg » 2008-04-29 23:11

Yes, and wput for uploading.

User avatar
boco
Contributor
Posts: 26935
Joined: 2006-05-01 03:28
Location: Germany

Re: FileZilla 3 development diary

#776 Post by boco » 2008-04-30 07:45

wget and wput are multi-protocol, AFAIK. A FTP-only commandline client example is NcFTP.
No support requests over PM! You will NOT get any reply!!!
FTP connection problems? Please read Network Configuration.
FileZilla connection test: https://filezilla-project.org/conntest.php
FileZilla Pro support: https://customerforum.fileZilla-project.org

User avatar
botg
Site Admin
Posts: 35563
Joined: 2004-02-23 20:49
First name: Tim
Last name: Kosse

Re: FileZilla 3 development diary

#777 Post by botg » 2008-04-30 08:49

That one has a really bad license.

Better use lftp.

User avatar
botg
Site Admin
Posts: 35563
Joined: 2004-02-23 20:49
First name: Tim
Last name: Kosse

Re: FileZilla 3 development diary

#778 Post by botg » 2008-05-04 10:12

Another new feature has been implemented. By right-clicking the list control header in the file lists, you can now change the column order and which columns should be visible. Only exception: Filename column cannot be hidden nor moved.

designchris
500 Command not understood
Posts: 1
Joined: 2008-05-08 09:58
First name: Chris

Re: FileZilla 3 development diary

#779 Post by designchris » 2008-05-08 10:22

I just wanted to suggest a commandline option for connecting to a site before i found your plans for that.
-c, --site=<str> Connect to specified Site Manager site
I'm really amazed to see this already being around the corner. :D

Just an idea: A function to create desktop icons/shortcuts that use the -c option to open filezilla already connected to a specific site. Maybe a 6th button in the site-manager called "Shortcut" could serve to create those desktop shortcuts.

Many thanks for this awesome program!!

Chris
Last edited by designchris on 2008-05-09 23:49, edited 1 time in total.

Laco
500 Command not understood
Posts: 2
Joined: 2008-05-02 10:16
First name: Dylan
Last name: Coakley

Re: FileZilla 3 development diary

#780 Post by Laco » 2008-05-09 18:28

In the next version can you please put in an option to choose a default download location in settings?

I have already posted in the forum about this: http://forum.filezilla-project.org/view ... f=3&t=6564

I think it is a really basic feature but I still could not believe it wasn't there.
Keep up the good work! :wink:

Post Reply