aMule Forum
English => en_Bugs => Topic started 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?
-
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 ;)
-
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).
-
A temporary workaround that you can use is to grep for the filename in the .met files inside your temp directory.e.g
grep -i genericfile ~/.aMule/temp/*.met
the -i is for case insensitivity, which I find handy for any grepping :)
-
strings is a nice one too
strings *.part.met | grep -i whatever
-
Fixed.
-
Thanks a lot.