Thread Tools Display Modes
06-27-05, 11:59 AM   #1
Quu
An Aku'mai Servant
 
Quu's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2005
Posts: 36
Decursive

Now hosting Decursive here
http://www.wowinterface.com/download...fo.php?id=4039
As well as here
http://www.curse-gaming.com/mod.php?addid=643

Up coming features include a "Priority List". Basically a set of names that will be scanned before the party. You can add to the end of the list, clear the list, or remove an element from the list.

Names = { "Quarte", "Grabew", "Scoo"}

it will then (at the press of the decursive button) scan and clean in the following order
Target, Player, Names, Party 1-4, Raid 1-40, Pet, Party Pet 1-4, Raid Pet 1-40
  Reply With Quote
06-28-05, 02:30 PM   #2
Quu
An Aku'mai Servant
 
Quu's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2005
Posts: 36
Quick Question

I have more than a few mods, alot of them use similar functions.

If I created a QuuLibrary mod... but bundled it with the .zip file , would that be a detriment?

also... what if I used Sea and Chronos instead of coding all that internally... would using those two external addon libraries be a detriment?
  Reply With Quote
06-28-05, 04:10 PM   #3
Kaelten
Jack's raging bile duct
 
Kaelten's Avatar
Featured
Join Date: May 2005
Posts: 782
I consider creating a external library of functions yourself to be just fine, or even a preferred methods.

Now personally I don't like sea and chronos due to the fact that if I use those then I have to carry ALOT of other things that I don't nessecarly want to use.

One thing that may be of intreset toy ou is the Ace project. it takes care of alot of default functionality while being very lightweight. Also I wrote a scheduling app for use with ace thats extremely lightweight as well.

Just my 2 cents and maybe not worth the time it took me to write them but who knows you might find it useful.

btw, ace is availble in the beta section
__________________
WowAce.com & CurseForge.com Adminstrator
Developer of Ace3, OneBag3, and many other addons and libraries
Project lead and Mac developer for the Curse Client

Anyone that needs what they want
And doesn't want what they need
I want nothing to do with
  Reply With Quote
06-28-05, 04:27 PM   #4
Quu
An Aku'mai Servant
 
Quu's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2005
Posts: 36
Sea is an endpoint library... it relies on nothing else
basically it handles the println functionality... and some basic data functionality

Chronos requires Sea ... and does not require anything else
  Reply With Quote
06-28-05, 06:14 PM   #5
Kaelten
Jack's raging bile duct
 
Kaelten's Avatar
Featured
Join Date: May 2005
Posts: 782
this is true but with sea you also have alot of functionality in there that most addons don't need. print functionality is fairly easy to accomplish, if thats all you need than writing a simple MyAddon_Print() should be fairly easy.

the big thing that I see is that if you only use one or two functions from a library like sea then port those over to your addon, if you use the majority of a library like sea then just depend on it. But having an extra 100kb of code so you can use 2kb is a little extreme for my taste.
__________________
WowAce.com & CurseForge.com Adminstrator
Developer of Ace3, OneBag3, and many other addons and libraries
Project lead and Mac developer for the Curse Client

Anyone that needs what they want
And doesn't want what they need
I want nothing to do with

Last edited by Kaelten : 06-28-05 at 06:16 PM.
  Reply With Quote
06-28-05, 07:26 PM   #6
Quu
An Aku'mai Servant
 
Quu's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2005
Posts: 36
that is what I had done... just ported over the printing portion (and the timing from chronos)

now that I am reaching 10 mods... it does not seam like such great savings ^_^
  Reply With Quote
06-28-05, 08:10 PM   #7
Kaelten
Jack's raging bile duct
 
Kaelten's Avatar
Featured
Join Date: May 2005
Posts: 782
if you find yourself using the same 10 functions in every mod you write then I'd suggest moving those 10 functions into a common library, this gives smaller overall code for you different mods, plus it makes it easier on you as you only have 1 set of code to update and keep current.
__________________
WowAce.com & CurseForge.com Adminstrator
Developer of Ace3, OneBag3, and many other addons and libraries
Project lead and Mac developer for the Curse Client

Anyone that needs what they want
And doesn't want what they need
I want nothing to do with
  Reply With Quote
06-29-05, 07:26 AM   #8
Quu
An Aku'mai Servant
 
Quu's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2005
Posts: 36
I know I know... =^_^=

I will see how I feel about things with the 1.6 versions of my mods.
  Reply With Quote
07-06-05, 11:47 AM   #9
Quu
An Aku'mai Servant
 
Quu's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2005
Posts: 36
ok... 1.2.0 was released... (very late last night)... and I was going to post it to wowinterface early this morning... they found a couple bugs...

plus... i need help with the german translation (seams it does not work with shamans????)
  Reply With Quote
07-06-05, 11:53 AM   #10
Cairenn
Credendo Vides
 
Cairenn's Avatar
Premium Member
WoWInterface Admin
Join Date: Mar 2004
Posts: 7,134
Originally Posted by Quu
and I was going to post it to wowinterface early this morning
I don't see it in the moderation queue at all, Quu.
  Reply With Quote
07-06-05, 12:26 PM   #11
Quu
An Aku'mai Servant
 
Quu's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2005
Posts: 36
since bugs were found i have not posted it yet...

I have corrected the bugs... but can't run WoW at work... so it has to wait for me to get home and try it there...

if i don't get any errors (stupid fat finger typos more like it) I will then post it here
  Reply With Quote
07-06-05, 12:33 PM   #12
Cairenn
Credendo Vides
 
Cairenn's Avatar
Premium Member
WoWInterface Admin
Join Date: Mar 2004
Posts: 7,134
Ahhh, okay, now I understand. Sorry bout that.
  Reply With Quote
07-06-05, 01:50 PM   #13
Beladona
A Molten Giant
 
Beladona's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2005
Posts: 539
someone should change Kaelten's title to Cheerleader of ACE

HEHE, its a decent library. Much of the stuff I was already coding into my own library is there. I will probably give it a go, or at worst use ACE as a base (no pun intended ) for my own library.

maybe I can say my library is a base of ace... HARHAR
  Reply With Quote
07-07-05, 07:45 AM   #14
Quu
An Aku'mai Servant
 
Quu's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2005
Posts: 36
this is wierd...

i tried uploading 1.2.1 of decursive... and i think it worked..

but when i try downloading the .zip file... it is still showing 1.1.6
  Reply With Quote
07-07-05, 12:10 PM   #15
Cairenn
Credendo Vides
 
Cairenn's Avatar
Premium Member
WoWInterface Admin
Join Date: Mar 2004
Posts: 7,134
1.2.1 is there now. It may have been that you snagged it between the time you uploaded the update and the time it got approved, so you got the old version?
__________________
“Do what you feel in your heart to be right — for you’ll be criticized anyway.” ~ Eleanor Roosevelt
~~~~~~~~~~~~~~~~~~~
Co-Founder & Admin: MMOUI
FaceBook Profile, Page, Group
Avatar Image by RaffaeleMarinetti
  Reply With Quote
07-07-05, 12:14 PM   #16
Quu
An Aku'mai Servant
 
Quu's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2005
Posts: 36
the version listed in the "archive" should be 1.1.6
the file is 1.1.6 but the version number says 1.2.1
  Reply With Quote
07-07-05, 12:18 PM   #17
Cairenn
Credendo Vides
 
Cairenn's Avatar
Premium Member
WoWInterface Admin
Join Date: Mar 2004
Posts: 7,134
Hrm, not sure what is going on there. Someone else approved the upload that is currently there, so I can't say for sure what happened. Try uploading your new version again ...
  Reply With Quote
07-07-05, 01:12 PM   #18
Quu
An Aku'mai Servant
 
Quu's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2005
Posts: 36
I "fixed" it

I removed the old archive... and fixed the label on the current one
  Reply With Quote
07-07-05, 01:19 PM   #19
Cairenn
Credendo Vides
 
Cairenn's Avatar
Premium Member
WoWInterface Admin
Join Date: Mar 2004
Posts: 7,134
Sorry.
__________________
“Do what you feel in your heart to be right — for you’ll be criticized anyway.” ~ Eleanor Roosevelt
~~~~~~~~~~~~~~~~~~~
Co-Founder & Admin: MMOUI
FaceBook Profile, Page, Group
Avatar Image by RaffaeleMarinetti
  Reply With Quote
07-07-05, 10:13 PM   #20
Kaelten
Jack's raging bile duct
 
Kaelten's Avatar
Featured
Join Date: May 2005
Posts: 782
Originally Posted by Beladona
someone should change Kaelten's title to Cheerleader of ACE

HEHE, its a decent library. Much of the stuff I was already coding into my own library is there. I will probably give it a go, or at worst use ACE as a base (no pun intended ) for my own library.

maybe I can say my library is a base of ace... HARHAR
hehe, I can't help it, the thing is awesome and personally I'd rather forc... em suggest turan to implement features rather than writing my own.

Ace is meant to be bare bones to avoid bloat and uneeded things its goal was to only have the things that every addon would need. I still see room for growth but we wanted to get it out to gather some feedback first.

__________________
WowAce.com & CurseForge.com Adminstrator
Developer of Ace3, OneBag3, and many other addons and libraries
Project lead and Mac developer for the Curse Client

Anyone that needs what they want
And doesn't want what they need
I want nothing to do with
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » Released AddOns » Decursive


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off