You are not logged in.
- Topics: Active | Unanswered
#101 2008-05-01 03:20:13
- Greg Hazel
- BitTorrent Developer

Re: µTorrent Sidebar Gadget Beta
patrickbrains (and other webUI devs) please contact me - there are going to be some small changes to the webui interface uTorrent provides that applications need to support.
Offline
#102 2008-05-25 10:19:53
- RNDM
- Member
Re: µTorrent Sidebar Gadget Beta
Just a suggestion that I know I would like....
To have the ratio beside each torrent on the flyout instead of having to click the info button beside each one.
Just for quick checks.
Offline
#103 2008-07-19 07:49:32
- rdnetto
- Member
Re: µTorrent Sidebar Gadget Beta
Just thought I'd let you know about a few minor bugs:
1) Clicking the uTorrent header in the flyout panel doesn't open the main webui (I was trying to implement this when I discovered that it was already implemented. Couldn't fix it though
)
2) Usability: the setting WebUI URL should probably be renamed to Hostname - URL implies you need to enter the entire URL [http://mypc:8080/gui/], not just the hostname.
3) For those who tried to copy it to C:\Program Files\Windows Sidebar\Gadgets, if you put it there then you can't change any settings since the rights for Program Files are read-only for non-elevated programs. The solution is to give everyone Full Control over C:\Program Files\Windows Sidebar\Gadgets\uTorrent.dat (you'll need to copy it from C:\Users\<USER>\AppData\Local\Microsoft\Windows Sidebar\Gadgets\uTorrent.dat).
Other than that, this an awesome program! Keep up the great work! ![]()
Last edited by rdnetto (2008-07-19 07:51:05)
Offline
#104 2008-08-05 16:08:49
- cykotek
- Member

Re: µTorrent Sidebar Gadget Beta
I have some sort of display glitch with this gadget.
http://xs230.xs.to/xs230/08322/utorrent … tch849.jpg
I'm using the Japanese version of Vista Home Premium on an Acer Aspire 5520. Any ideas what could be causing it to cut off the bottom of the image like that? There are three torrents there, but I can only see and access two - makes life rather difficult.
Offline
#105 2008-08-17 00:58:29
- gcarter
- Member
Re: µTorrent Sidebar Gadget Beta
After upgrading to the final release of utorrent 1.8 (previous version was 1.7.7) the drag-n-drop feature of this gadget no longer works..
ie, you drag a *.torrent file, you see the green tick appear in the gadget however the torrent never gets added to utorrent!
Reverting back to the previous version fixes the problem.
Anyone else seen this?
Guess we will have to wait for the author to provide a fix ![]()
Offline
#106 2008-09-23 10:46:07
- Annon
- Member
Re: µTorrent Sidebar Gadget Beta
I somehow managed to set up all that painfull settings. It was pleasure to watch it working for whole ONE day. After one day gadget stopped working. No matter how many times I reinstal it, instead of gadget I get this:
Can someone figure tis out and help me, please?
Last edited by Annon (2008-09-23 10:56:54)
Offline
#107 2008-11-16 09:27:50
- Jeketem
- Member
Re: µTorrent Sidebar Gadget Beta
@Annon
I seem to get that everytime i install the gadget, to sort it i had to close the gadget and then re-open.
I hope that works for you
Offline
#108 2008-11-18 23:31:02
- Waxinator
- Member
Re: µTorrent Sidebar Gadget Beta
Annon: I get this error when the file uTorrent.dat is missing.
C:\Users\<...your user name...>\AppData\Local\Microsoft\Windows Sidebar\Gadgets\uTorrent.dat
Open the gadgets settings and press OK. Close and restart the gadget, the file is created and now working...
Last edited by Waxinator (2008-11-19 00:19:15)
Offline
#109 2009-01-10 17:18:25
- dream_falcon
- Member
Re: µTorrent Sidebar Gadget Beta
Hi,
To resolve the problem with windows 7:
1- close gadget
2- edit the file %userprofile%\appdata\local\microsoft\windows sidebar\gadgets\utorrent.gadget\skins\black\css\gadget.css
3- change all "overflow: hidden;" to "overflow: show;" and save
4- open gadget
Have fun.
Last edited by dream_falcon (2009-01-10 17:24:33)
Offline
#110 2009-01-29 20:39:16
- redman99
- Member
Re: µTorrent Sidebar Gadget Beta
I am also having trouble getting the drag and drop to add torrents.
I have initially tried latest build, but reverted back to older webui and 1.7.7 utorrent in case.
But still no luck.
anyone else having this issue?
Offline
#111 2009-01-29 20:42:16
- Yochanan
- Member
Re: µTorrent Sidebar Gadget Beta
To resolve the problem with windows 7:
1- close gadget
2- edit the file %userprofile%\appdata\local\microsoft\windows sidebar\gadgets\utorrent.gadget\skins\black\css\gadget.css
3- change all "overflow: hidden;" to "overflow: show;" and save
4- open gadgetHave fun.
I'm not sure what problem you're talking about, but it worked just fine for me.
Offline
#112 2009-04-26 18:30:38
- doone
- Member
Re: µTorrent Sidebar Gadget Beta
First, Note that the below only applies to the beta version of the uTorrent gadget (the link to this is in the original post). The stable release does not seem to have this problem.
I've been seeing a problem for a while, where sometimes when I first open the torrents list flyout (by clicking on the 'uTorrent' titlebar on the gadget) the list of torrents appears to be stacked all weird. My understanding is that this only happens when there exists a torrent with a longer-than-average name. What the limit is I'm not sure (but my guess is something over 250 characters?). Here's a SS to demonstrate my problem:
So I decided to try and do something about it, based on the knowledge that the above posters gave me... It turns out that the magic of the gadget is all HTML, CSS and JavaSript - which I happen to know.
I added the following to the CSS file at:
%userprofile%\appdata\local\microsoft\windows sidebar\gadgets\utorrentV1.gadget\skins\black\css\flyout.cssto include (anywhere in the file you want, but I put mine at line 85):
div#flyoutTorrents span {white-space: nowrap; margin-left: 5px; width: 250px; overflow: hidden;}Note: I happen to use the black theme, you'll need to edit the CSS file for the white theme instead if you use that. So change "black" to "white" in the path mentioned above.
Second, and this part is somewhat optional, but keeps things consistent, I removed the call to shorten the length of the torrent names from flyout.js. The CSS, added above, takes care of this truncation by CSS so the JS command to do it is no longer needed. So just edit the file at:
%userprofile%\appdata\local\microsoft\windows sidebar\gadgets\utorrentV1.gadget\js\flyout.jsChange line 162 (at the time of this post) from:
document.getElementById("flyoutTorrents"+int+"Name").innerHTML = "<span title=\""+System.Gadget.document.parentWindow.torrentsArray[int][2]+"\">"+shorten(System.Gadget.document.parentWindow.torrentsArray[int][2], 250)+"</span>";to:
document.getElementById("flyoutTorrents"+int+"Name").innerHTML = "<span title=\""+System.Gadget.document.parentWindow.torrentsArray[int][2]+"\">"+System.Gadget.document.parentWindow.torrentsArray[int][2]+"</span>";I hope this helps.
And thanks a lot to Patrick Bran for the awesome gadget ![]()
Offline
#113 2009-06-16 07:45:46
- mlauzon
- Member

Re: µTorrent Sidebar Gadget Beta
Are there any plans to try and get this to work without the WebUI, or does someone know of another gadget that works with uTorrent that doesn't need the WebUI..?!
Last edited by mlauzon (2009-06-16 07:46:30)
Michael
Offline
#114 2009-06-17 16:22:49
- Ultima
- Administrator
Re: µTorrent Sidebar Gadget Beta
If not the WebUI backend, what would you have it use?
[size=0.85][ Tweaking Checklist | User Manual | BEE | MiniUI | µTA ][/size]
Offline
#115 2009-09-19 06:23:12
- Ultima
- Administrator
Re: µTorrent Sidebar Gadget Beta
http://sites.google.com/site/ultimasite … edirects=0
Edit (2010-02-20): Get the latest version here.
Decided to update this gadget to support token authentication (hope you don't mind, patrickbrans). With this, there is very little reason µTorrent should hold out on enabling webui.token_auth by default, as most of the major categories of WebUI projects now support token authentication (great!).
Last edited by Ultima (2010-02-20 09:33:54)
[size=0.85][ Tweaking Checklist | User Manual | BEE | MiniUI | µTA ][/size]
Offline
#116 2009-12-09 13:52:49
- Yochanan
- Member
Re: µTorrent Sidebar Gadget Beta
Nevermind...
Last edited by Yochanan (2009-12-09 14:20:46)
Offline
#117 2009-12-22 09:06:16
- Ultima
- Administrator
Re: µTorrent Sidebar Gadget Beta
Hah, I saw your post before the edit, but haven't had time to log in and reply. I'm guessing it was a configuration issue more than anything? I had trouble setting the gadget up too when I was first testing/implementing token auth support. Honestly, I didn't find it very obvious/intuitive how to fill the login details out.
[size=0.85][ Tweaking Checklist | User Manual | BEE | MiniUI | µTA ][/size]
Offline
#118 2010-02-06 18:55:49
- armitage787
- Member
Re: µTorrent Sidebar Gadget Beta
For those having issues with Error Check Settings try a simpler password or a guest account.
Offline
#119 2010-02-17 12:39:05
- SubGum
- Member
Re: µTorrent Sidebar Gadget Beta
Using a simpler password or a guest account doesn't get it working for me using the newest version of uTorrent (v2.0).
It worked perfectly fine before I updated. I'm using the gadget on the local machine that's running uTorrent.
Offline
#120 2010-02-17 12:52:30
#121 2010-02-17 17:46:37
- SubGum
- Member
Re: µTorrent Sidebar Gadget Beta
I sure did.
Offline
#122 2010-02-17 17:51:16
- Yochanan
- Member
Re: µTorrent Sidebar Gadget Beta
Ultima, I'm using the build you posted and I always have to open the options and hit OK for it to work. This is with the gadget already open and initially starting µTorrent. Otherwise it's blank or says, "Error Check Settings". I was going to mention that initially in the post above, but at first I thought it wasn't working at all. Since it was, I didn't bother. It's not that big of a deal, but it is a slight annoyance. My username and password are very basic under 5 characters and all lowercase.
µTorrent 2.0 (Build 18097)
Windows 7 Ultimate x86
Last edited by Yochanan (2010-02-17 17:52:55)
Offline
#123 2010-02-19 14:02:28
- Ultima
- Administrator
Re: µTorrent Sidebar Gadget Beta
If µTorrent isn't already started started by the time the gadget tries to connect, then naturally, the it is going to complain -- it can't find µTorrent, after all. There isn't any way for it to get around that automatically other than to continuously (read: wastefully) poll the IP:port until it finds µTorrent, and then do its thing. As far as I can tell, this isn't something that happens only with the changes made to support token authentication; it's simply how the gadget works (and logically so).
[size=0.85][ Tweaking Checklist | User Manual | BEE | MiniUI | µTA ][/size]
Offline
#124 2010-02-19 14:18:10
- Yochanan
- Member
Re: µTorrent Sidebar Gadget Beta
Ah, that makes sense. However, that never happened with the old gadget. It detected µTorrent had started and start working immediately. *shrug*
Offline
#125 2010-02-19 14:22:39
- Ultima
- Administrator
Re: µTorrent Sidebar Gadget Beta
Alrighty, I'll take another look at it then. Maybe I did break something (I can't be completely sure, since I only went in and added rudimentary token support, and got back out).
[size=0.85][ Tweaking Checklist | User Manual | BEE | MiniUI | µTA ][/size]
Offline
