<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
	<channel>
		<title>Gello's Mods - Bug Comments (wowinterface.com)</title>
		<link>http://www.wowinterface.com</link>
		<description>World of Warcraft Interfaces, Skins, Addons, Mods community.</description>
		<language>en</language>
		<generator>WoWInterface</generator>
		<ttl>30</ttl>
		<copyright>Copyright 2006, WoWInterface</copyright>
		<image>
			<url>http://s.wowinterface.com/images/style_mmoi_wowi2/misc/rss.jpg</url>
			<title>WoWInterface</title>
			<link>http://www.wowinterface.com</link>
		</image>
		<webMaster>no-reply@WoWInterface</webMaster>
				<item>
			<title>Pressing enter scrolls to bottom - This bug is still...</title>
			<link>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=432#cmnt_8506</link>
			<description><![CDATA[This bug is still present in TinyPad to this day, yet...  It is not present in other mods (MyRolePlay, for example) nor present in the World of Warcraft Macros editor.  Obviously, it CAN be fixed or worked around.

(Interface: TinyPad | Bug: Pressing enter scrolls to bottom)]]></description>
			<author>Doc Lithius</author>
			<guid>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=432#cmnt_8506</guid>
			<pubDate>Thu, 30 Jul 2009 17:44:19 +0000</pubDate>
		</item>		<item>
			<title>Titans Grip Bug + Patch - Same bug I reported on...</title>
			<link>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=5564#cmnt_8293</link>
			<description><![CDATA[Same bug I reported on 07 December 2008, in my post here: http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=5249

I'm not sure about all those extra changes you made.  When I found the bug, changing the talent index alone restored full functionality.  What the rest of that does I'm not even sure but it doesn't seem to be needed.

(Interface: ItemRack | Bug: Titans Grip Bug + Patch)]]></description>
			<author>Tiron</author>
			<guid>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=5564#cmnt_8293</guid>
			<pubDate>Thu, 21 May 2009 05:52:46 +0000</pubDate>
		</item>		<item>
			<title>Itemrack not properly recognizing Titan's grip. - Many thanks...</title>
			<link>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=5249#cmnt_8204</link>
			<description><![CDATA[Many thanks Tiron.

Effectively, the problem is corrected with your solution.
Good job mate :)

(Interface: ItemRack | Bug: Itemrack not properly recognizing Titan's grip.)]]></description>
			<author>Vhalar</author>
			<guid>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=5249#cmnt_8204</guid>
			<pubDate>Sat, 02 May 2009 20:02:48 +0000</pubDate>
		</item>		<item>
			<title>Weapon swap error (titan grip) - I just saw a post from...</title>
			<link>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=5791#cmnt_8203</link>
			<description><![CDATA[I just saw a post from Tiron who found the error as he says here:

http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=5249

The pb is easily corrected in following Tiron's post.

(Interface: ItemRack | Bug: Weapon swap error (titan grip))]]></description>
			<author>Vhalar</author>
			<guid>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=5791#cmnt_8203</guid>
			<pubDate>Sat, 02 May 2009 20:01:27 +0000</pubDate>
		</item>		<item>
			<title>Itemrack not properly recognizing Titan's grip. - Still present in 2.25</title>
			<link>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=5249#cmnt_8006</link>
			<description><![CDATA[Still present in 2.25

(Interface: ItemRack | Bug: Itemrack not properly recognizing Titan's grip.)]]></description>
			<author>Tiron</author>
			<guid>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=5249#cmnt_8006</guid>
			<pubDate>Fri, 17 Apr 2009 14:02:35 +0000</pubDate>
		</item>		<item>
			<title>Itemrack not properly recognizing Titan's grip. - I hacked at it, found a...</title>
			<link>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=5249#cmnt_7477</link>
			<description><![CDATA[I hacked at it, found a workaround, and from there figured out the problem and a REAL Fix. It's pretty simple.

The problem is the code checking to see if you have TG, the swap code works fine.

Here's the code:

	if class&quot;WARRIOR&quot; then
		if select(5,GetTalentInfo(2,26))&gt;0 then
			ItemRack.HasTitansGrip = 1
			ItemRack.SlotInfo.INVTYPE_2HWEAPON = 1
		else
			ItemRack.HasTitansGrip = nil
			ItemRack.SlotInfo.INVTYPE_2HWEAPON = nil
		end
	end

Okay, where's the problem? GetTalentInfo(2,26).  Index 26 in fury is Unending Fury, the one above TG.  TG is index 27.  Granted anyone that gets that far is gonna want Unending fury (I only dropped it because I did a dumb thing and used the main site's talent builder, which has it doing something completely different than it does).

Corrected Code:

	if class&quot;WARRIOR&quot; then
		if select(5,GetTalentInfo(2,27))&gt;0 then
			ItemRack.HasTitansGrip = 1
			ItemRack.SlotInfo.INVTYPE_2HWEAPON = 1
		else
			ItemRack.HasTitansGrip = nil
			ItemRack.SlotInfo.INVTYPE_2HWEAPON = nil
		end
	end


(Interface: ItemRack | Bug: Itemrack not properly recognizing Titan's grip.)]]></description>
			<author>Tiron</author>
			<guid>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=5249#cmnt_7477</guid>
			<pubDate>Mon, 08 Dec 2008 01:14:43 +0000</pubDate>
		</item>		<item>
			<title>Avatar background &quot;transparent&quot; setting does not save session-to-session - I updated my original...</title>
			<link>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=5140#cmnt_7422</link>
			<description><![CDATA[I updated my original forum post with information that demonstrates the issue reported is due to a UI addon.  See here for more information.

http://www.wowinterface.com/downloads/fileinfo.php?id=4729#comments

(Interface: Adapt - Almost-Default Animated Portraits | Bug: Avatar background &amp;quot;transparent&amp;quot; setting does not save session-to-session)]]></description>
			<author>Aesir</author>
			<guid>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=5140#cmnt_7422</guid>
			<pubDate>Fri, 21 Nov 2008 01:00:12 +0000</pubDate>
		</item>		<item>
			<title>Can't dis/enable events, get LUA error - This problem persists in...</title>
			<link>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=4588#cmnt_6921</link>
			<description><![CDATA[This problem persists in 3.0.2
In keybindings it looks like the bindings file isn't properly started, ItemRack has no title before it's keybindings.

(Interface: ItemRack | Bug: Can't dis/enable events, get LUA error)]]></description>
			<author>Dusk</author>
			<guid>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=4588#cmnt_6921</guid>
			<pubDate>Sat, 18 Oct 2008 14:40:47 +0000</pubDate>
		</item>		<item>
			<title>Item menus in the PaperDoll frame show under other parts - Appears that this issue...</title>
			<link>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=3930#cmnt_5912</link>
			<description><![CDATA[Appears that this issue does happen on patch 0.2.0, but not immediately.  I don't have a good explanation for why though.  Perhaps some &quot;top level&quot; code being over zealous?

(Interface: ItemRack 2.16 (Old version don't download) | Bug: Item menus in the PaperDoll frame show under other parts)]]></description>
			<author>Brodrick</author>
			<guid>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=3930#cmnt_5912</guid>
			<pubDate>Sun, 23 Sep 2007 11:26:21 +0000</pubDate>
		</item>		<item>
			<title>Off Hand has no &amp;quot;empty&amp;quot; button option - http://cyberartist.shacks...</title>
			<link>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=3927#cmnt_5911</link>
			<description><![CDATA[http://cyberartist.shackspace.com/wow/missingEmpty.jpg

Shows both the issue with the missing &quot;Empty&quot; button, and the ability to equip the two hander in the Off Hand slot, and equiping an Off Hand with a two hander in the Main Hand slot.

(Interface: ItemRack 2.16 (Old version don't download) | Bug: Off Hand has no &amp;amp;quot;empty&amp;amp;quot; button option)]]></description>
			<author>Brodrick</author>
			<guid>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=3927#cmnt_5911</guid>
			<pubDate>Sun, 23 Sep 2007 11:08:10 +0000</pubDate>
		</item>		<item>
			<title>Item menus in the PaperDoll frame show under other parts - Only in 2.1, not an...</title>
			<link>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=3930#cmnt_5910</link>
			<description><![CDATA[Only in 2.1, not an issue in 2.2

(Interface: ItemRack 2.16 (Old version don't download) | Bug: Item menus in the PaperDoll frame show under other parts)]]></description>
			<author>Brodrick</author>
			<guid>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=3930#cmnt_5910</guid>
			<pubDate>Sun, 23 Sep 2007 11:02:58 +0000</pubDate>
		</item>		<item>
			<title>Off Hand has no &amp;quot;empty&amp;quot; button option - Seems to be related to...</title>
			<link>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=3927#cmnt_5909</link>
			<description><![CDATA[Seems to be related to issues with two handed weapons.  If I don't have any two handed weapons, the &quot;empty&quot; button shows.

(Interface: ItemRack 2.16 (Old version don't download) | Bug: Off Hand has no &amp;amp;quot;empty&amp;amp;quot; button option)]]></description>
			<author>Brodrick</author>
			<guid>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=3927#cmnt_5909</guid>
			<pubDate>Sun, 23 Sep 2007 10:49:20 +0000</pubDate>
		</item>		<item>
			<title>Item swaps while dead with AutoRack 1.3 - I'm sorry, I did not...</title>
			<link>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=3725#cmnt_5759</link>
			<description><![CDATA[I'm sorry, I did not look far enough into the bug notes before submitting this. This has already been reported a couple times. Apologies.

(Interface:  | Bug: Item swaps while dead with AutoRack 1.3)]]></description>
			<author>brotherhobbes</author>
			<guid>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=3725#cmnt_5759</guid>
			<pubDate>Mon, 11 Jun 2007 21:46:47 +0000</pubDate>
		</item>		<item>
			<title>Misinteraction with Omni Cooldown Count - On dock to fix.  Thanks!</title>
			<link>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=3205#cmnt_5194</link>
			<description><![CDATA[On dock to fix.  Thanks!

(Interface: Trinket Menu | Bug: Misinteraction with Omni Cooldown Count)]]></description>
			<author>Gello</author>
			<guid>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=3205#cmnt_5194</guid>
			<pubDate>Sun, 28 Jan 2007 00:46:19 +0000</pubDate>
		</item>		<item>
			<title>ITEMRACK_ITEMUSED and ITEMRACK_NOTIFY not firing when using /use &amp;lt;item&amp;gt; in a macro - Sweet, let the new...</title>
			<link>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=3006#cmnt_5068</link>
			<description><![CDATA[Sweet, let the new version be coming ;-)

(Interface: ItemRack | Bug: ITEMRACK_ITEMUSED and ITEMRACK_NOTIFY not firing when using /use &amp;amp;lt;item&amp;amp;gt; in a macro)]]></description>
			<author>Satsh</author>
			<guid>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=3006#cmnt_5068</guid>
			<pubDate>Sat, 13 Jan 2007 20:31:25 +0000</pubDate>
		</item>		<item>
			<title>Items not moving from new bank bag slots - Actually, I take the...</title>
			<link>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=3037#cmnt_5015</link>
			<description><![CDATA[Actually, I take the last part back.  Just tried to put my NR gear back into the bank, only half of it went back in (the rest needed to go in the new bag).

(Interface: ItemRack | Bug: Items not moving from new bank bag slots)]]></description>
			<author>Aileen</author>
			<guid>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=3037#cmnt_5015</guid>
			<pubDate>Fri, 12 Jan 2007 03:35:38 +0000</pubDate>
		</item>		<item>
			<title>Stutter on equipment-change - Can you both ensure you...</title>
			<link>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=3041#cmnt_4975</link>
			<description><![CDATA[Can you both ensure you have 1.991?  Go to the ? tab in the options screen and it should say the version at the top.

(Interface: ItemRack | Bug: Stutter on equipment-change)]]></description>
			<author>Gello</author>
			<guid>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=3041#cmnt_4975</guid>
			<pubDate>Thu, 11 Jan 2007 09:59:23 +0000</pubDate>
		</item>		<item>
			<title>Stutter on equipment-change - I experience this too. I...</title>
			<link>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=3041#cmnt_4970</link>
			<description><![CDATA[I experience this too. I have BugSack and it shows a 500 errors generated during weapon change in fight (when I'm out of combat - 0 errors are generated).

(Interface: ItemRack | Bug: Stutter on equipment-change)]]></description>
			<author>Inflyer</author>
			<guid>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=3041#cmnt_4970</guid>
			<pubDate>Thu, 11 Jan 2007 07:56:16 +0000</pubDate>
		</item>		<item>
			<title>ITEMRACK_ITEMUSED and ITEMRACK_NOTIFY not firing when using /use &amp;lt;item&amp;gt; in a macro - Corrected in next...</title>
			<link>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=3006#cmnt_4919</link>
			<description><![CDATA[Corrected in next version. Thanks!

(Interface: ItemRack | Bug: ITEMRACK_ITEMUSED and ITEMRACK_NOTIFY not firing when using /use &amp;amp;lt;item&amp;amp;gt; in a macro)]]></description>
			<author>Gello</author>
			<guid>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=3006#cmnt_4919</guid>
			<pubDate>Mon, 08 Jan 2007 05:52:06 +0000</pubDate>
		</item>		<item>
			<title>ADDON_ACTION_BLOCKED  ERROR - You are seeing the...</title>
			<link>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=2635#cmnt_4543</link>
			<description><![CDATA[You are seeing the effects of running a debug tool that registers for ADDON_ACTION_BLOCKED that prints them.  ItemRack is not printing that error.

For now, disable whatever mod is printing that if you want the messages to go away.

Its causes are known and being addressed, thanks.

(Interface: ItemRack | Bug: ADDON_ACTION_BLOCKED  ERROR)]]></description>
			<author>Gello</author>
			<guid>http://www.wowinterface.com/portal.php?id=27&amp;a=viewbug&amp;bugid=2635#cmnt_4543</guid>
			<pubDate>Mon, 11 Dec 2006 10:09:19 +0000</pubDate>
		</item>
	</channel>
</rss>