Jump to content

drdobsg

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by drdobsg

  1. drdobsg

    µTorrent WebUI

    Ultima, that certainly makes sense about moving it to fdDataToRow. I have to admit I don't know enough about what you are doing to fully understand it, I was just kind of hacking my way through it.
  2. drdobsg

    µTorrent WebUI

    The linux client has dates, not sure about the latest windows client. Position 23 and 24 seem to be epoch dates. I am assuming they represent date added and date completed. I edited the javascript and was able to add the columns and the data seems to be lining up with Added and Completed dates.
  3. drdobsg

    µTorrent WebUI

    Thanks so much for the RSS support. I can now use the linux version without hacking the rss settings. I noticed the date is in epoch time, so i think you need to multiply by 1000 first. I made this change in webui.js and it seems to show a correct date in the rss list. fdFormatRow: function (h, d) { .... case "date": h[c] = new Date(h[c] * 1000).toISOString(); break; ....
×
×
  • Create New...