aMule Forum

English => en_Bugs => Topic started by: DexterF on August 24, 2005, 06:28:11 PM

Title: remote gui still unable to tell me which part file is which download
Post by: DexterF on August 24, 2005, 06:28:11 PM
In the remote gui it is not possible to determine the part file number of a specific download.
The temp dir is shared over NFS so I could preview files, but I can't because I don't know which.

And by the way, the first time I noticed this was on 2.0.0rc8 and I first reported that with 2.0.0.
Has remote code dev stalled?
Title: RE: remote gui still unable to tell me which part file is which download
Post by: thedude0001 on August 25, 2005, 11:44:26 AM
Quote
Originally posted by DexterF
And by the way, the first time I noticed this was on 2.0.0rc8 and I first reported that with 2.0.0.
Has remote code dev stalled?

Wow, that's really a long outstanding "bug" (although it's more a problem of "not implemented yet" and not something that got broken), especially regarding the fact that the remote gui didn't even compile on rc8 ;)

Looking at some dates it was announced "alive" even after 2.0.0 release...

I guess the devs working in these areas are a little busy in other areas (like sorting out bugs / implementing last features on Kademlia or hunting down bugs that lead to nasty crashes) which they think are a little more important. But you are always free to code it yourself and send us a patch ;)
Title: Re: remote gui still unable to tell me which part file is which download
Post by: lfroen on August 25, 2005, 01:34:29 PM
Quote
Has remote code dev stalled?

I don't know what you mean by "dev" - developMENT or developER :) But, anyway - I'm working
on php enabled webserver, which makes remote gui second priority. Which makes things longer to fix, especially when it comes to adding "not-yet-supported" things.

I'll be back to remote gui development after php server becomes operational (quite soon).
Title: Re: remote gui still unable to tell me which part file is which download
Post by: darklegion on August 29, 2005, 05:37:07 AM
A temporary workaround that you can use is to grep for the filename in the .met files inside your temp directory.e.g
Code: [Select]
grep -i genericfile ~/.aMule/temp/*.met the -i is for case insensitivity, which I find handy for any grepping :)
Title: Re: remote gui still unable to tell me which part file is which download
Post by: Kry on August 29, 2005, 02:26:23 PM
strings is a nice one too

Code: [Select]
strings *.part.met | grep -i whatever
Title: Re: remote gui still unable to tell me which part file is which download
Post by: GonoszTopi on August 30, 2005, 11:03:36 PM
Fixed.
Title: Re: remote gui still unable to tell me which part file is which download
Post by: DexterF on September 02, 2005, 03:16:48 PM
Thanks a lot.