Results: 17Comments by: mightyjo
File: LibCustomMenu05/14/22
Thanks I figure it out during the n...
Posted By: mightyjo
Thanks I figure it out during the night but there is an other addon less buggy to have a furniture preview of linked furniture ? :x I like Custom Item Preview. It won't do links from chat, though. ARK Undaunted is outdated it was very praticle to get undaunted of the day showed on the quest journal... didn't find an other a...
File: LibCustomMenu05/13/22
Got those errors mainly due to Cust...
Posted By: mightyjo
Got those errors mainly due to CustomMenu got menu over an other one on right clic.... Addon Selector is completely bugged, can't change profile.... Can you help me ? Most of those errors are coming from the Furniture Preview add-on. It embeds an old version of LibCustomMenu that's incompatible with your other add-ons. If t...
File: Advanced Filters - Updated03/13/22
Uncomment debug at files/util.lua:1640
Posted By: mightyjo
My SO found an uncommented debug statement ">>>>banked: passes false" filling up her chat log when she went crafting. (She's not running any debug loggers or we'd have never noticed.) I found the source at AdvancedFilters/files/util.lua:1640. Looks like you normally comment these out, but sed missed one! Not critical. Always fu...
File: Crafting Build Alert12/03/21
Thanks for the feedback! I'll add a...
Posted By: mightyjo
Thanks for the feedback! I'll add a description of the use case to the front page. Prior to the Armory in 7.2.5 I kept separate toons for crafting, DPS, tanking, etc. Mostly because I don't have enough CP on any of mine to do it all yet. The Armory made is feasible for my CP800 crafter magcro to DPS a dungeon, then swap champion p...
File: LibCustomMenu09/05/21
@Dr.Barich and @mlq88 I notice y...
Posted By: mightyjo
@Dr.Barich and @mlq88 I notice you're both using Shissu's guild tools. Looks like that hasn't updated on a long while. As a test, will you disable it and see if your other context menu functionality comes back? You can turn it right back on afterwards. Thanks!
File: Take One05/26/21
v1.1.1
Posted By: mightyjo
Everything is fine. Nothing is ruined. Hope nobody saw that embarrassing display.
File: Take One05/25/21
Broke something in v1.1.0
Posted By: mightyjo
Just broke something. I'll have it fixed in a jiffy.
File: Take One05/22/21
Could be that the action slot funct...
Posted By: mightyjo
Could be that the action slot function was causing the problems with the context menu. I had asked Votan already a few weeks ago about this, as another addon "CustomItemNote" got the same problem using the action slot example from LibCustomMenu with LibCustomMenu.CATEGORY_LATE. Maybe he found the problm and knows a fix then. If y...
File: Take One05/21/21
Thanks Baetram! You cleared up a bu...
Posted By: mightyjo
Thanks Baetram! You cleared up a bunch of questions I'd been trying to feel my way through. If you use LibCustomMenu "properly" to register an inventory context menu this shouldn't be any problem. You shouldn't palce your entries behind special other entries but just use the lib's constants (e.g. LibCustomMenu.CATEGORY_PRIMARY li...
File: Take One05/20/21
Inventory Insight Personal Assista...
Posted By: mightyjo
Inventory Insight Personal Assistant FCO Item Saver that's just off the top of my head. shouldn't everyone be using libCustomMenu by now ? Thanks! I was able to reproduce it with FCOIS and PA installed. Looks like we're all trying to put our menus in the same spot. Moving Take One to just under "Withdraw" fixed it. Upda...
File: LibCustomMenu05/20/21
Potentially silly question. Whe...
Posted By: mightyjo
Potentially silly question. When I use LibCustomMenu:RegisterContextMenu() and/or slotActions:AddCustomSlotAction() do I need to ClearMenu() and ShowMenu()? I haven't been and things look great to me. But I got this screenshot from a user in which my menu items are overlapping the built-ins and some other add-ons' menus. Not s...
File: Take One05/20/21
I love the idea, though my context...
Posted By: mightyjo
I love the idea, though my context menu gets messy.. https://i.imgur.com/zrgU8Kq.png Thoughts? Thanks! I have a hunch it's an interaction between LibCustomMenu and an older way of inserting context menu items. Thought I'd guarded against it correctly. Would you mind posting a list of the add-ons that are augmenting your...
File: Daily Provisioning04/02/21
Re: Thanks @mightyjo!
Posted By: mightyjo
Version: 1.4.20 has been updated. Thanks @mightyjo! :) This bug couldn't occur in my environment...:( My pleasure! If it still occurs, Would you please share the save file? (Google Drive, email, etc.) Certainly! Thank you for pointing me to the log files! I didn't think to look in the SavedVariables for eac...
File: Daily Provisioning04/01/21
Just noticed in 1.4.19: Turning off...
Posted By: mightyjo
Just noticed in 1.4.19: Turning off Bulk Creation also gets me past the recipe lookup. Trying to catch the log messages...
File: Daily Provisioning03/31/21
Still having problems in 1.4.19. Up...
Posted By: mightyjo
Still having problems in 1.4.19. Updated my patch. Here it is as a unified diff. --- a\DailyProvisioning.lua +++ b\DailyProvisioning.lua @@ -921,6 +921,11 @@ self:Debug("    > conditionText is nil") return nil end + + if not string.match(conditionText, "%") then +...
File: Daily Provisioning03/31/21
Thanks, hey quick question for you...
Posted By: mightyjo
Thanks, hey quick question for you or anyone. Are y'all using Notepad++ because my lines never match with everyone else's. Yeah, I use Notepad++. I've been carting my settings around for close to a decade, so no idea if I'm doing something funny. I really should have saved a copy of the source file so I could post a unified diff.
File: Daily Provisioning03/30/21
Figured it out. I'm on version 1.4....
Posted By: mightyjo
Figured it out. I'm on version 1.4.18. ExistUnknownRecipes is trying to look up a hint about buying recipes from chefs and brewers in the recipe list. That doesn't work. I added the string.match check from CreateParameter to isValidConditions to fix it. Starting at line 910 in DailyProvisioning.lua function DailyProvisionin...