<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
	<channel>
		<title>phyber's Addons - Feature 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> - I also like to see the...</title>
			<link>http://www.wowinterface.com/portal.php?id=118&amp;a=viewfeature&amp;featureid=2781#cmnt_2809</link>
			<description><![CDATA[I also like to see the exp shown as real values instead of %. Also, Titanbar had a plugin called restxp+ that calculated the estimated amount of mobs needed to reach the end of the exp bar. It would be awesome if you could embed that in this addon. Not nescessary ofcourse, but it would be great.

Thanks in advance and ofcourse keep up the good work ;)

(Interface: FuBar - RestFu | Feature: )]]></description>
			<author>bluefear</author>
			<guid>http://www.wowinterface.com/portal.php?id=118&amp;a=viewfeature&amp;featureid=2781#cmnt_2809</guid>
			<pubDate>Sat, 06 Dec 2008 16:43:30 +0000</pubDate>
		</item>		<item>
			<title> - Remove the extra...</title>
			<link>http://www.wowinterface.com/portal.php?id=118&amp;a=viewfeature&amp;featureid=3125#cmnt_2766</link>
			<description><![CDATA[Remove the extra 'http://' in front of the link &gt;.&lt;

(Interface: FuBar - Top ScoreFu | Feature: )]]></description>
			<author>Fonjask</author>
			<guid>http://www.wowinterface.com/portal.php?id=118&amp;a=viewfeature&amp;featureid=3125#cmnt_2766</guid>
			<pubDate>Tue, 18 Nov 2008 15:30:36 +0000</pubDate>
		</item>		<item>
			<title> - I'd like to say it works...</title>
			<link>http://www.wowinterface.com/portal.php?id=118&amp;a=viewfeature&amp;featureid=2829#cmnt_2420</link>
			<description><![CDATA[I'd like to say it works perfectly, but it doesnt.  Its supposed to say &quot;In Play&quot; for the currently played toon, since no time has passed for it.. its currently being played.  But it seems to be displaying the &quot;-&quot; instead, which is supposed to be used if there is no lastPlayed value for the character, or if time() - lastPlayed should be less that zero, which should be never.

(Interface: FuBar - RestFu | Feature: )]]></description>
			<author>reubenhelms</author>
			<guid>http://www.wowinterface.com/portal.php?id=118&amp;a=viewfeature&amp;featureid=2829#cmnt_2420</guid>
			<pubDate>Wed, 30 Jul 2008 13:31:12 +0000</pubDate>
		</item>		<item>
			<title> - translations for...</title>
			<link>http://www.wowinterface.com/portal.php?id=118&amp;a=viewfeature&amp;featureid=2829#cmnt_2419</link>
			<description><![CDATA[translations for deDE.lua and enUS.lua

	 = &quot;Zeit spielte zuletzt&quot;,
	 = &quot;Im Spiel&quot;,

	 = true,
	 = true,


(Interface: FuBar - RestFu | Feature: )]]></description>
			<author>reubenhelms</author>
			<guid>http://www.wowinterface.com/portal.php?id=118&amp;a=viewfeature&amp;featureid=2829#cmnt_2419</guid>
			<pubDate>Wed, 30 Jul 2008 13:28:01 +0000</pubDate>
		</item>		<item>
			<title> - .. cont

and calculate a...</title>
			<link>http://www.wowinterface.com/portal.php?id=118&amp;a=viewfeature&amp;featureid=2829#cmnt_2418</link>
			<description><![CDATA[.. cont

and calculate a lastPlayed value

					local playedTime										
					local lastPlayed
					if realm  self.REALM and char  self.NAME and self.timePlayed then
						playedTime = self.timePlayed + time() - self.timePlayedMsgTime
						lastPlayed = format(&quot;|cff00ff00%s|r&quot;, L)
					else
						playedTime = data.timePlayed or 0
						if (data.lastPlayed  nil) then 
						    lastPlayed = format(&quot;|cff00ff00%s|r&quot;, &quot;-&quot;) 
						else
						    lastPlayed = now - data.lastPlayed
						    if (lastPlayed &gt; 0) then
						    	lastPlayed = abacus:FormatDurationCondensed(lastPlayed, true, true)
						    else
						        lastPlayed = format(&quot;|cff00ff00%s|r&quot;, &quot;-&quot;) 
						    end
						end
					end
					
					local text = (&quot;|cff%s%s|r &quot;):format(classColor, char, data.level or 0)
					if hasHorde and hasAlly then
						if data.faction  &quot;Horde&quot; then
							text = text .. &quot; |cffcf0000(H)|r&quot;
						elseif data.faction  &quot;Alliance&quot; then
							text = text .. &quot; |cffff3f3f(A)|r&quot;
						end
					end
					cat:AddLine(
						'text', text,
						'text2', abacus:FormatDurationCondensed(playedTime, true, true),
						'text3', lastPlayed,
						'text4', timeToMax &gt; 0 and abacus:FormatDurationCondensed(timeToMax, true, true) or format(&quot;|cff00ff00%s|r&quot;, L),
						'text5', (&quot;%.0f%%&quot;):format(data.currXP / data.nextXP * 100),
						'text6', (&quot;(%+.0f%%)&quot;):format(data.restXP / data.nextXP * 100),
						'text7', data.zone or L,
						'text6R', r,
						'text6G', g,
						'text6B', b,
						'func', &quot;RemoveChar&quot;,
						'arg1', self,
						'arg2', realm,
						'arg3', char
					)
				else
					local playedTime
					local lastPlayed
					if realm  self.REALM and char  self.NAME and self.timePlayed then
						playedTime = self.timePlayed + time() - self.timePlayedMsgTime
						lastPlayed = format(&quot;|cff00ff00%s|r&quot;, L)
					else
						playedTime = data.timePlayed or 0
						if (data.lastPlayed  nil) then 
						    lastPlayed = format(&quot;|cff00ff00%s|r&quot;, &quot;-&quot;) 
						else
						    lastPlayed = now - data.lastPlayed
						    if (lastPlayed &gt; 0) then
						    	lastPlayed = abacus:FormatDurationCondensed(lastPlayed, true, true)
						    else
						        lastPlayed = format(&quot;|cff00ff00%s|r&quot;, &quot;-&quot;) 
						    end
						end

					end					
					cat:AddLine(
						'text', (&quot;|cff%s%s|r &quot;):format(classColor, char, data.level),
						'text2', abacus:FormatDurationCondensed(playedTime, true, true),
						'text3', lastPlayed,
						'text7', (&quot;|cffffffff%s|r&quot;):format(data.zone or L)
					)


(Interface: FuBar - RestFu | Feature: )]]></description>
			<author>reubenhelms</author>
			<guid>http://www.wowinterface.com/portal.php?id=118&amp;a=viewfeature&amp;featureid=2829#cmnt_2418</guid>
			<pubDate>Wed, 30 Jul 2008 13:27:06 +0000</pubDate>
		</item>		<item>
			<title> - Hi

I had a crack at...</title>
			<link>http://www.wowinterface.com/portal.php?id=118&amp;a=viewfeature&amp;featureid=2829#cmnt_2417</link>
			<description><![CDATA[Hi

I had a crack at adding the changes to do this.  It &quot;almost&quot; works.

In RestFu:Save(), add 't.lastPlayed = time()' under the t.time assignment.  This is because the existing t.time is constantly updated for all toons on the same realm in RestFu:OnUpdate()

In RestFu:OnTooltipUpdate():
Add the extra column for Time last played:

	local supercat = tablet:AddCategory(
		'columns', 7
	)
	for _,realm in ipairs(self.realmList) do
		local cat = supercat:AddCategory(
			'columns', 7,
			'text', oneRealm and L or realm,
			'text2', L,
			'text3', L,
			'text4', L,
			'text5', L,
			'text6', L,
			'text7', L,
			'child_text1R', 1,
			'child_text1G', 1,
			'child_text1B', 0,
			'child_text2R', 1,
			'child_text2G', 1,
			'child_text2B', 0,
			'child_text3R', 1,
			'child_text3G', 1,
			'child_text3B', 0,
			'child_text4R', 1,
			'child_text4G', 0,
			'child_text4B', 1,
			'child_text6R', 1,
			'child_text6G', 1,
			'child_text6B', 1,
			'child_text7R', 1,
			'child_text7G', 1,
			'child_text7B', 1,			
			'func', &quot;RemoveRealm&quot;,
			'arg1', self,
			'arg2', realm
		)
local now = time()



(Interface: FuBar - RestFu | Feature: )]]></description>
			<author>reubenhelms</author>
			<guid>http://www.wowinterface.com/portal.php?id=118&amp;a=viewfeature&amp;featureid=2829#cmnt_2417</guid>
			<pubDate>Wed, 30 Jul 2008 13:26:00 +0000</pubDate>
		</item>		<item>
			<title>Adding more input validation - Slight Update, I notice...</title>
			<link>http://www.wowinterface.com/portal.php?id=118&amp;a=viewfeature&amp;featureid=2573#cmnt_2188</link>
			<description><![CDATA[Slight Update, I notice that currently if you don't have profession and ammo bags checked off you cannot use Bagfu to open them. So as an addendum to the previous request, how about a Shift+Click opens all bags including keyring profession, and ammo, etc thus covering all the bases...

(Interface: FuBar - BagFu | Feature: Adding more input validation)]]></description>
			<author>caffiend86</author>
			<guid>http://www.wowinterface.com/portal.php?id=118&amp;a=viewfeature&amp;featureid=2573#cmnt_2188</guid>
			<pubDate>Thu, 31 Jan 2008 18:24:49 +0000</pubDate>
		</item>		<item>
			<title>Error on first bank usage - I second this feature, i...</title>
			<link>http://www.wowinterface.com/portal.php?id=118&amp;a=viewfeature&amp;featureid=2051#cmnt_2054</link>
			<description><![CDATA[I second this feature, i would love it

(Interface: FuBar - Top ScoreFu | Feature: Error on first bank usage)]]></description>
			<author>Justgiz</author>
			<guid>http://www.wowinterface.com/portal.php?id=118&amp;a=viewfeature&amp;featureid=2051#cmnt_2054</guid>
			<pubDate>Sat, 11 Aug 2007 21:25:18 +0000</pubDate>
		</item>		<item>
			<title>Compost-2.0 tables recived from :Acquire not sortable. - also, while the option...</title>
			<link>http://www.wowinterface.com/portal.php?id=118&amp;a=viewfeature&amp;featureid=2034#cmnt_1838</link>
			<description><![CDATA[also, while the option isn't there, you can easily move the bar over it ;)

(Interface: XPBarNone | Feature: Compost-2.0 tables recived from :Acquire not sortable.)]]></description>
			<author>phyber</author>
			<guid>http://www.wowinterface.com/portal.php?id=118&amp;a=viewfeature&amp;featureid=2034#cmnt_1838</guid>
			<pubDate>Fri, 02 Feb 2007 17:40:26 +0000</pubDate>
		</item>		<item>
			<title>Compost-2.0 tables recived from :Acquire not sortable. - There used to be a dock...</title>
			<link>http://www.wowinterface.com/portal.php?id=118&amp;a=viewfeature&amp;featureid=2034#cmnt_1837</link>
			<description><![CDATA[There used to be a dock option, but I removed it some time ago, I forget why.
I'll look at adding it again :)

(Interface: XPBarNone | Feature: Compost-2.0 tables recived from :Acquire not sortable.)]]></description>
			<author>phyber</author>
			<guid>http://www.wowinterface.com/portal.php?id=118&amp;a=viewfeature&amp;featureid=2034#cmnt_1837</guid>
			<pubDate>Fri, 02 Feb 2007 17:40:09 +0000</pubDate>
		</item>
	</channel>
</rss>