Category: Miscellaneous
Addon Information
Works with 3.3
Download Latest Version.
To add favorites please register for a free account. If you already have one you need to login. How do I install this? (FAQ)
Author:
Version:
1.4
Date:
12-10-2009 04:00 AM
Size:
184.81 Kb
Downloads:
339
Favorites:
6
MD5:
Pictures
Click to enlarge
Infoclock
A3Fu Infoclock
Broker/FuBar AddOn to display clock, framerate and latency.

OUTDATED Reminder:
Since FuBar seems a deadend A3Fu-AddOns are no longer supported.
You will find the same AddOns with FuBar-support removed soonish.
They will share "zz"-prefix.

zz_Infoclock
  Change Log - A3Fu Infoclock
1.4 Dec/10/09

- Updated Ace and toc

1.3 Oct/27/09

- added switch for 12-hours display

1.2 Oct/26/09

- fixed ldb type (was launcher when it should be data source)

1.1 Sep/11/09

- fixed a bug when used with Titan Panel
  Optional Files - A3Fu Infoclock
Sorry, there are currently no optional files available.
  Archived Versions - A3Fu Infoclock
File Name
Version
Size
Author
Date
1.3
176kB
Rilgamon
10-27-2009 10:44 AM
1.2
176kB
Rilgamon
10-25-2009 06:35 PM
1.1
176kB
Rilgamon
09-11-2009 01:59 PM
1.0
176kB
Rilgamon
09-10-2009 07:19 PM
  Comments - A3Fu Infoclock
Post A Reply Comment Options
Old 12-09-2009, 06:00 PM  
Rilgamon
A Cliff Giant
Interface Author - Click to view interfaces

Forum posts: 70
File comments: 47
Uploads: 16
Re: attempt to call method 'error'

Yes, its caused by my addon(s) ... but I've not yet found why
and where it is caused. It seems its related to the Ace-Config-GUI.

Edit: Ace-Team fixed the bug. I'll update the addons tomorrow.

Last edited by Rilgamon : 12-09-2009 at 06:14 PM.
Rilgamon is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 12-09-2009, 04:47 PM  
Forage
A Murloc Raider

Forum posts: 6
File comments: 10
Uploads: 0
attempt to call method 'error'

Not sure where this error is coming from but figured since I only get it when I have this addon enabled I would post the log.

[2009/12/09 15:41:18-5128-x1]: AceTab-3.0-3 (A3Fu_Infoclock):131: attempt to call method 'error' (a nil value)
AceConfigTab-3.0-1:105: in main chunk

Upon using Forced Garbage Collection

[2009/12/09 15:47:56-5128-x90]: AceConfigDialog-3.0-42:1630: attempt to call method 'IsVisible' (a nil value)

Last edited by Forage : 12-09-2009 at 04:50 PM.
Forage is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-03-2009, 05:24 PM  
Rilgamon
A Cliff Giant
Interface Author - Click to view interfaces

Forum posts: 70
File comments: 47
Uploads: 16
This would add overhead and just use less diskspace.
Diskspace is rarely a limiting factor where additional
processtime is ... thats why I think the way it is now is
the better way.
Rilgamon is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-03-2009, 02:28 PM  
Zidomo
A Cyclonian
 
Zidomo's Avatar

Forum posts: 44
File comments: 696
Uploads: 0
In the post below, I forgot about an Ace3 mod have been using forever that loads before Ace3 does...and has no problems. Accomplishment. Log on with Ace3 disembedded (along with its default TOC) and it doesn't complain about being unable to find it.

Then again, it actually loads post-logon via AddonLoader. Which allows time for Ace3 to load as well as reducing time for user logons. An option worth considering.
Zidomo is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-03-2009, 12:12 PM  
Rilgamon
A Cliff Giant
Interface Author - Click to view interfaces

Forum posts: 70
File comments: 47
Uploads: 16
Yes. The reason why it does not work is simply the load order.
All addons are loaded alphabetically. So to make sure that my
addon is loaded after all depending libs you need to change
the toc from depmod to dep so that my addon is delayed
until they are loaded.
Rilgamon is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-03-2009, 10:44 AM  
Zidomo
A Cyclonian
 
Zidomo's Avatar

Forum posts: 44
File comments: 696
Uploads: 0
Yes, disembedded means they are deleted (by me) from the mod folder. Have the Ace3 libraries loading from their own "\Ace3" folder with its own TOC (the version from the WowAce page).

Editing the TOC file of this mod really should not be necessary. I test hundreds of mods regularly (as well as running many); have only a couple of times total seen a problem with mods not finding the libraries they need, whether or not I have some/all of the libraries disembedded.

It might have to do with your embeds.xml file not being formatted as a proper XML file; it can't be rendered in most web browsers. Instead of line 1 being
Code:
<Ui xsi:schemaLocation="http://www.blizzard.com/wow/ui/ ..\FrameXML\UI.xsd">
it should really be similar to this:
Code:
<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/
..\FrameXML\UI.xsd">
.

Or it might have to do with load order. The folder of this is \A3Fu_Infoclock, whereas there is also an \Ace3 folder here further down the alphabetical list. The first Ace2/3 mod I've tested in a long while that is higher up the load order than those libraries...heh. The problem of which can be likely "solved" by your suggestion of changing the dependency type.

Anyway, good luck.
Zidomo is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-02-2009, 11:15 AM  
Rilgamon
A Cliff Giant
Interface Author - Click to view interfaces

Forum posts: 70
File comments: 47
Uploads: 16
Not sure what you mean with disembedded.
Do you mean you've deleted them from addon dir ?

Edit:

If you want to remove the libs from addon dir
you need to change the .toc file.

## OptDeps: Ace3, FuBar, LibFuBarPlugin-3.0

into (skip FuBar if you dont need it) + all other Libs you want loaded

## Deps: Ace3, FuBar, LibFuBarPlugin-3.0

This is not done by default to provide a package that works on
all systems. If you're professional enough to know what to delete
you're professional enough to edit the toc-file

Last edited by Rilgamon : 11-02-2009 at 01:11 PM.
Rilgamon is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-02-2009, 11:04 AM  
Zidomo
A Cyclonian
 
Zidomo's Avatar

Forum posts: 44
File comments: 696
Uploads: 0
You are not handling your embeds properly. If Ace3 is disembedded (standalone), piles of errors are thrown up on logon.

v1.3, USEnglish client/server, WoW 3.2.2.10505 live, all Ace3 libraries disembedded/standalone, LibStub, CallbackHandler-1.0, LibDataBroker-1.1, LibFuBarPlugin-3.0, LibCombatLog & "A3Fu.xml" embedded. 6 errors at logon, starting with:

Code:
[2009/11/02 11:44:39-108-x1]: A3Fu_Infoclock-1.3\Libs\A3Fu\a3fu_locales.lua:1: Cannot find a library instance of "AceLocale-3.0".
A3Fu_Infoclock-1.3\Libs\LibStub\LibStub.lua:23: in function `LibStub'
A3Fu_Infoclock-1.3\Libs\A3Fu\a3fu_locales.lua:1: in main chunk

Locals:
self = <table> {
 NewLibrary = <function> @ A3Fu_Infoclock\Libs\LibStub\LibStub.lua:11:
 minors = <table> {}
 minor = 2
 IterateLibraries = <function> @ A3Fu_Infoclock\Libs\LibStub\LibStub.lua:28:
 GetLibrary = <function> @ A3Fu_Infoclock\Libs\LibStub\LibStub.lua:21:
 libs = <table> {}
}
major = "AceLocale-3.0"
silent = nil
Zidomo is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-27-2009, 10:45 AM  
Rilgamon
A Cliff Giant
Interface Author - Click to view interfaces

Forum posts: 70
File comments: 47
Uploads: 16
Re: Infoclock & Carousel

Quote:
Originally posted by Opaque
Awesome! I'll be checking for it!!!
Check now
Rilgamon is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-26-2009, 08:18 PM  
Opaque
A Deviate Faerie Dragon
 
Opaque's Avatar

Forum posts: 16
File comments: 75
Uploads: 0
Re: Re: Re: Re: Infoclock & Carousel

Quote:
Originally posted by Rilgamon
I'm too tired now, will add it tomorrow
Awesome! I'll be checking for it!!!
__________________
Opaque is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-26-2009, 07:04 PM  
Rilgamon
A Cliff Giant
Interface Author - Click to view interfaces

Forum posts: 70
File comments: 47
Uploads: 16
Re: Re: Re: Infoclock & Carousel

Quote:
Originally posted by Opaque
Working good now! Thanks!!

Is there any way to make it 12hr instead of military time?
I'm too tired now, will add it tomorrow
Rilgamon is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-26-2009, 04:58 PM  
Opaque
A Deviate Faerie Dragon
 
Opaque's Avatar

Forum posts: 16
File comments: 75
Uploads: 0
Re: Re: Infoclock & Carousel

Quote:
Originally posted by Rilgamon
1.2 should fix that. Had the wrong type for ldb (launcher instead of data source).

Thank you for the bug report
Working good now! Thanks!!

Is there any way to make it 12hr instead of military time?
__________________
Opaque is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-25-2009, 06:37 PM  
Rilgamon
A Cliff Giant
Interface Author - Click to view interfaces

Forum posts: 70
File comments: 47
Uploads: 16
Re: Infoclock & Carousel

Quote:
Originally posted by Opaque
Would love to use this mod, but it's not working right with Carousel. All I can get it to show is the text saying "Infoclock". Hope you can fix it... sooooon!
1.2 should fix that. Had the wrong type for ldb (launcher instead of data source).

Thank you for the bug report
Rilgamon is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-25-2009, 03:56 AM  
Opaque
A Deviate Faerie Dragon
 
Opaque's Avatar

Forum posts: 16
File comments: 75
Uploads: 0
Infoclock & Carousel

Would love to use this mod, but it's not working right with Carousel. All I can get it to show is the text saying "Infoclock". Hope you can fix it... sooooon!
__________________
Opaque is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 09-11-2009, 01:07 PM  
Rilgamon
A Cliff Giant
Interface Author - Click to view interfaces

Forum posts: 70
File comments: 47
Uploads: 16
Quote:
Originally posted by Jexx
How about an option to show memory usage, and even perhaps clicking on the frame would force a garbage collection?
Garbage collection is a good idea. And is implemented in a minute.
For memory usage I'm a little bit "unsure" how to implement this.
I've already looked at other tools like performancefu and tried to understand
what they're doing. I need a little more time to understand it and rebuild
this on my own.

Edit: Try 1.1 .. Added garbage collection and display mem usage for all addons
in tooltip. Memory usage for single addons will take longer.

Last edited by Rilgamon : 09-11-2009 at 02:01 PM.
Rilgamon is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Post A Reply



Category Jump:




The Network:
EQInterface | EQ2Interface | LoTROInterface | MMOInterface | War.MMOUI | WoWInterface | VGInterface | Allakhazam | Thottbot | Wowhead | Zam


©2009 MMOUI / ZAM Network
vBulletin - Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.