SpareSimian

Results 81 comments of SpareSimian

I'm doing this for Shadowlands boxes with my plugin, using the data.containerInfo.hasLoot property. See near the end here: https://github.com/SpareSimian/BetterBagsShadowlands/blob/main/Main.lua I could easily factor this into a separate plugin.

Good guess. Based on your hint, I changed the name of the custom ItemList control to BBItemList and AdiBags started displaying item lists against. Here's a patch: ``` diff --git...

Some info on forcing IPv4/IPv6 in requests: https://github.com/psf/requests/issues/1691 https://stackoverflow.com/questions/33046733/force-requests-to-use-ipv4-ipv6 Given how complicated that is, it does seem easier to find one's own address first using a website that only responds...

With the above clues I was able to produce this. I suggest adding it to the examples. https://github.com/SpareSimian/LinodeDDNS

I'm pretty happy with this library. It got me to learn about ASIO coroutines in C++. The tutorials here would make a great introduction for a general C++ coroutine class....

I came across this library that does compile-type SQL syntax checking but it relies on its own connector library for connecting to various databases: https://github.com/rbock/sqlpp11 There's been a request to...

Confirmed. Errant object is Tidespray Linen Bandage which results in an empty ("", not nil) section name in category Equipment. https://www.wowhead.com/item=158381/tidespray-linen-bandage

Two more are Fire Bomb and Winter Veil Cookie.

These items have an equipSlot value of "INVTYPE_NON_EQUIP_IGNORE". This seems to let the bags open properly: ``` diff --git a/AdiBags/core/DefaultFilters.lua b/AdiBags/core/DefaultFilters.lua index 7e8a608..d579e7b 100644 --- a/AdiBags/core/DefaultFilters.lua +++ b/AdiBags/core/DefaultFilters.lua @@ -254,7...

It seems like a lot of items that were consumables (food, potions, bombs) are now treated as equipment, putting them all in the Miscellaneous section. Smells like a Blizzard bug.