It is currently April 19th, 2024, 4:22 pm

LuaTorrent3

RSS, ATOM and other feeds, GMail, Stocks, any information retrieved from the internet
User avatar
tru
Posts: 169
Joined: January 12th, 2010, 4:24 am
Location: A Salty Piece of Land...

Re: LuaTorrent3

Post by tru »

jsmorley wrote:I'm guessing that blizzard of [stuff] in Label: is getting it. Do you by chance have a link to that torrent so I can investigate?

Sorry its from a private tracker... but I removed the labels from my torrents and it started working :)
User avatar
jsmorley
Developer
Posts: 22629
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: LuaTorrent3

Post by jsmorley »

What are those labels? Are they a local thing? Or something you get from the tracker?
User avatar
jsmorley
Developer
Posts: 22629
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: LuaTorrent3

Post by jsmorley »

By the way, I think I have it fixed...

Find this line in the .lua

sAllText = msMain:GetStringValue()

Add this line below it...

sAllText = string.match(sAllText, ".-\034torrents\034%:(.-)$")

Save and refresh. Try putting back the labels.
User avatar
tru
Posts: 169
Joined: January 12th, 2010, 4:24 am
Location: A Salty Piece of Land...

Re: LuaTorrent3

Post by tru »

jsmorley wrote:By the way, I think I have it fixed...

Find this line in the .lua

sAllText = msMain:GetStringValue()

Add this line below it...

sAllText = string.match(sAllText, ".-\034torrents\034%:(.-)$")

Save and refresh. Try putting back the labels.

That seems to of fixed it, Thanks

Labels allow you to assign a catagory or name to your torrents. Just something that helps me keep track
of which tracker I am using.
User avatar
jsmorley
Developer
Posts: 22629
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: LuaTorrent3

Post by jsmorley »

Sounds good. Get the version I just put in the first post in this thread. Fixes that problem, and adds a new "power on / off" function for uTorrent.exe.

P.S. Thanks for finding this. I don't use those labels in the UI, so I would never have tumbled to the problem.
User avatar
tru
Posts: 169
Joined: January 12th, 2010, 4:24 am
Location: A Salty Piece of Land...

Re: LuaTorrent3

Post by tru »

jsmorley wrote:Sounds good. Get the version I just put in the first post in this thread. Fixes that problem, and adds a new "power on / off" function for uTorrent.exe.

P.S. Thanks for finding this. I don't use those labels in the UI, so I would never have tumbled to the problem.

Grabbed it and working great !! Thanks for helping me out :D :great:
poopiepants
Posts: 2
Joined: August 27th, 2011, 11:07 pm

Re: LuaTorrent3

Post by poopiepants »

Thank you for the plugin.

I am having an issue where the black background stretches from the very top all the way to the bottom of my screen.
It lists the five torrents, but then it has all this extra blank space.

Another question I have is in regards to the 5 top torrents it lists.
Is it supposed to list the top 5 alphabetically?

It is listing my top 5 alphabetically and I think these torrents are so bad nobody ever bothers to snatch them.
So I never see any transfer speeds and it is completely idle.

Is there anyway to change to 5 torrents that are active?

Thank You,

Poop
User avatar
jsmorley
Developer
Posts: 22629
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: LuaTorrent3

Post by jsmorley »

The first bit, with the height of the background image, you can fix by:

Edit LuaTorrent3.lua and find this line:

SKIN:Bang("!SetVariable BackgroundHeight "..tostring(iItemCount * 31))

Add a line ABOVE it, and put this:

if iItemCount > 5 then iItemCount = 5 end

Save and refresh, that should take care of the height.

On the second question, about the "order" of what is displayed, that is just the order it is in uTorrent. Let me play a bit with that in the next day or two and see what I can come up with.
zakazak
Posts: 20
Joined: July 13th, 2010, 10:02 am

Re: LuaTorrent3

Post by zakazak »

would be awesome if you could make it work with uTorrent 1.6.1.. most private trackers won't support newer uTorrent clients so i have to use that old version :/
User avatar
jsmorley
Developer
Posts: 22629
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: LuaTorrent3

Post by jsmorley »

zakazak wrote:would be awesome if you could make it work with uTorrent 1.6.1.. most private trackers won't support newer uTorrent clients so i have to use that old version :/
That I am not going to do, sorry.