aMule Forum

Please login or register.

Login with username, password and session length
Advanced search  

News:

We're back! (IN POG FORM)

Author Topic: remote gui still unable to tell me which part file is which download  (Read 3074 times)

DexterF

  • Jr. Member
  • **
  • Karma: 0
  • Offline Offline
  • Posts: 54

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?
Logged

thedude0001

  • evil bugfinder ;)
  • Hero Member
  • *****
  • Karma: 6
  • Offline Offline
  • Posts: 827
RE: remote gui still unable to tell me which part file is which download
« Reply #1 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 ;)
Logged
Das Schlimme auf dieser Welt ist
daß die Dummen so selbstsicher sind
und die Gescheiten so voller Zweifel.

lfroen

  • Guest
Re: remote gui still unable to tell me which part file is which download
« Reply #2 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).
Logged

darklegion

  • Approved Newbie
  • *
  • Karma: 0
  • Offline Offline
  • Posts: 41
Re: remote gui still unable to tell me which part file is which download
« Reply #3 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 :)
Logged

Kry

  • Ex-developer
  • Retired admin
  • Hero Member
  • *****
  • Karma: -665
  • Offline Offline
  • Posts: 5795
Re: remote gui still unable to tell me which part file is which download
« Reply #4 on: August 29, 2005, 02:26:23 PM »

strings is a nice one too

Code: [Select]
strings *.part.met | grep -i whatever
Logged

GonoszTopi

  • The current man in charge of most things.
  • Administrator
  • Hero Member
  • *****
  • Karma: 169
  • Offline Offline
  • Posts: 2685
Re: remote gui still unable to tell me which part file is which download
« Reply #5 on: August 30, 2005, 11:03:36 PM »

Fixed.
Logged
concordia cum veritate

DexterF

  • Jr. Member
  • **
  • Karma: 0
  • Offline Offline
  • Posts: 54
Re: remote gui still unable to tell me which part file is which download
« Reply #6 on: September 02, 2005, 03:16:48 PM »

Thanks a lot.
Logged