open up putty to [git|svn].[wowace|curseforge].com on the default ssh port. you'll get a prompt to accept the server into your known host file. Once that is done you shouldn't have a problem.
Least that was my problem when i started to use ssh on my Win7 install, after that it worked w/o issues.
your missing the | at the start from the look of it. Also you don't need the widget.name or button in your SetItemRef call as really they don't matter in this context
Jello and Good Morning all. Currently Posted on wowace is a new Alpha version. Please All feedback to the ticket tracker :)
Sadly some things have been removed from the addon, namely the currency tracking aspects.
When i first started this addon, all those things where quests, and worked nicely. However now they are completely messed up inside the addon & it's just not easy to shove it all into one addon anymore.
HOWEVER! SavedInstances does do the whole LFG / BG sutff nicely from what i've been told :)
Gossip Options have changed to also be inside the Dialog window, so look for them, you'll need to enable them manually once. Be careful, it is for all click though conversation options not just quest ones.
Yes, it is. The get function in an AceOptions table receives the options node as the first parameter. It's usually referred to as info rather than item, but the name assigned to the variable does not affect its contents.
Right, my bad... sorry didn't see that variable name change. As you said, i was expecting info not item :)
* Tracking of Justice points and Valor points for all your toons - including current balance, weekly limits and total limits
* Optional tracking of Honor Points and Conquest Points
That's great news for me... i just gutted the LFG and BG tracking in my own addon SickOfClickingDailies because these things have turned into a beast now & no longer have ANYTHING to do with quests ( like they once did ). This saves me the time of writing another addon that tracks this stuff :)
I'll be sure to refer all the requests for this stuff in SickOfClickingDailies onto your addon :)
oopse... yeah, info.option.name is the localized display name used in the options window. It would be info[#info] instead for the key name that the specific option table is sitting on.
info = {
[1] = "AppName?"
[2] = "FirstGroupNodeName"
[N] = "NGroupKey"
[B][U][#-1] = "general" --ParentLeafName[/U][/B]
[B][U][#] = "rolespecific" --LeafNodeName[/U][/B]
option = {} -- the table that the info table is being called for
options = {} --parent options table, the WHOLE thing
arg = -- what ever the arg option was set to in the option table
uiType = "" --AceConfigRegistry var
uiName = "" --AceConfigRegistry var
handler = {} -- the addon table iirc
type = "" -- kind of option ie: description, toggle, input
}
You could technically use the same Get/Set Functions for everything in a given option table.. but that would be bad form as it could be quite ugly...
function dbGetValue(info)
return oUF_Tabi.db.profile[info.option.name]
end
function dbSetValue(info, value)
oUF_Tabi.db.profile[info.option.name] = value
end
local options = {
type = 'group',
childGroups = 'tab',
args = {
general = {
type = 'group',
name = L['General'],
desc = L['General Options'],
order = 1,
args = {
ShowPortraits = {
type = 'toggle',
name = L['Show Portraits'],
desc = L['Indicates whether to show or hide portraits'],
get = dbGetValue, set = dbSetValue, order = 1,
},
rolespecific = {
type = 'group',
name = L['Role Specific:'],
order = 2,
args = {
ShowVengeance = {
type = 'toggle',
name = L['Show Vengeance'],
desc = L['Indicates whether to show or hide the Vengeance AP buff'],
get = dbGetValue, set = dbSetValue, order = 1, width = "full",
},
HealerMode = {
type = 'toggle',
name = L['Healer Mode'],
desc = L['Changes the layout for party and raid frames to account for healing duty'],
get = dbGetValue, set = dbSetValue, order = 2, width = "full",
},
},
},
classspecific = {
type = 'group',
name = L['Class Specific:'],
order = 3,
args = {
ShowComboPoints = {
type = 'toggle',
name = L['Show Rogues/Druids Combo Points'],
desc = L['Indicates whether to show or hide Combo Points as a Rogue or a Druid'],
get = dbGetValue, set = dbSetValue, order = 1, width = "full",
},
ShowTotems = {
type = 'toggle',
name = L['Show Shamans Totems'],
desc = L['Indicates whether to show or hide Totems as a Shaman'],
get = dbGetValue, set = dbSetValue, order = 2, width = "full",
},
ShowHolyPower = {
type = 'toggle',
name = L['Show Paladins Holy Power'],
desc = L['Indicates whether to show or hide Holy Power as a Paladin'],
get = dbGetValue, set = dbSetValue, order = 3, width = "full",
},
ShowSoulShards = {
type = 'toggle',
name = L['Show Warlocks Soul Shards'],
desc = L['Indicates whether to show or hide Soul Shards as a Warlock'],
get = dbGetValue, set = dbSetValue, order = 4, width = "full",
},
ShowRunes = {
type = 'toggle',
name = L['Show Death Knights Runes'],
desc = L['Indicates whether to show or hide Runes as a Death Knight'],
get = dbGetValue, set = dbSetValue, order = 5, width = "full",
},
ShowEclipseBar = {
type = 'toggle',
name = L['Show Druids Eclipse bar'],
desc = L['Indicates whether to show or hide Eclipse bar as a Druid'],
get = dbGetValue, set = dbSetValue, order = 6, width = "full",
},
},
},
},
},
},
}
the option your looking for is [[ width = "full" ]] that will make them look like your wanting it to ; & Seerah beats me to it :)
considering it's limitations, it'll prolly be come a file stub that get's copy and pasted into each addon in use, don't think you can make it into a lib.
0
0
Least that was my problem when i started to use ssh on my Win7 install, after that it worked w/o issues.
0
also don't use the mob name, strip out the MobID from it's GUID
0
0
0
0
Sadly some things have been removed from the addon, namely the currency tracking aspects.
When i first started this addon, all those things where quests, and worked nicely. However now they are completely messed up inside the addon & it's just not easy to shove it all into one addon anymore.
HOWEVER! SavedInstances does do the whole LFG / BG sutff nicely from what i've been told :)
Gossip Options have changed to also be inside the Dialog window, so look for them, you'll need to enable them manually once. Be careful, it is for all click though conversation options not just quest ones.
0
but from the looks of it the hook could be modified instead to use the GameTooltip's OnShow script instead of the hook to GameTooltip_AddNewbieTip
0
Right, my bad... sorry didn't see that variable name change. As you said, i was expecting info not item :)
0
http://forums.wowace.com/showpost.php?p=290216&postcount=23
0
That's great news for me... i just gutted the LFG and BG tracking in my own addon SickOfClickingDailies because these things have turned into a beast now & no longer have ANYTHING to do with quests ( like they once did ). This saves me the time of writing another addon that tracks this stuff :)
I'll be sure to refer all the requests for this stuff in SickOfClickingDailies onto your addon :)
0
info[#info] = "rolespecific"
info.option.name = L["Role Specific"]
RE :: http://www.wowace.com/addons/ace3/pages/ace-config-3-0-options-tables/#w-callback-arguments
the info table kinda looks like this :
You could technically use the same Get/Set Functions for everything in a given option table.. but that would be bad form as it could be quite ugly...
0
0
the option your looking for is [[ width = "full" ]] that will make them look like your wanting it to ; & Seerah beats me to it :)
0