Skip to content

Commit 190481c

Browse files
committed
chore: update Interface to 120100 for Midnight patch 12.1.0
Bump the TOC Interface version from 120001 to 120100 so the addon is flagged as up to date for Midnight patch 12.1.0 ("Curse of Ula'tek"). Audited the addon's API surface against the 12.0.5 and 12.1.0 change lists: none of the removed globals are called, and C_Container, C_Item, C_EquipmentSet, C_TransmogCollection and the buyback/money APIs are unchanged. Expansion ID 12 (Midnight) is still current, so the expansion filters need no change. Also drop GetInventorySlotInfo from .luacheckrc read_globals — Blizzard removed it in 12.1.0 in favour of C_PaperDollInfo.GetInventorySlotInfo, and the addon never called it. Claude-Session: https://claude.ai/code/session_01CHdbWur35SfiY9RNdC2BW6
1 parent 2f8038d commit 190481c

5 files changed

Lines changed: 11 additions & 6 deletions

File tree

.luacheckrc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,6 @@ read_globals = {
113113
"UIErrorsFrame",
114114
"MinimalSliderWithSteppersMixin",
115115

116-
-- WoW API: Inventory
117-
"GetInventorySlotInfo",
118-
119116
-- WoW API: Instance
120117
"GetInstanceInfo",
121118
"GetExpansionLevel",

AutoSellPlus/AutoSellPlus.toc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Interface: 120001
1+
## Interface: 120100
22
## Title: AutoSellPlus
33
## Notes: Shows a popup when visiting a merchant to review and sell junk and configurable item qualities.
44
## Author: Mikolaj Graf / Cloudsail Digital Solutions sp. z o.o.

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## v4.0.1 - 2026-08-26
4+
5+
Compatibility release for Midnight patch 12.1.0. No behaviour changes.
6+
7+
### Changed
8+
- **Patch 12.1.0 compatibility**`## Interface` bumped from `120001` to `120100` for Midnight patch 12.1.0 ("Curse of Ula'tek", live August 11 2026).
9+
- **Luacheck globals** — Removed `GetInventorySlotInfo` from `read_globals`. Blizzard removed it in 12.1.0 (replaced by `C_PaperDollInfo.GetInventorySlotInfo`); the addon never called it.
10+
311
## v4.0.0 - 2026-08-05
412

513
Major release. Consolidates all previously unreleased work (the destruction

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
44

55
## Project Overview
66

7-
AutoSellPlus is a World of Warcraft addon (Lua 5.1) that shows a popup when visiting a merchant to review and sell junk items. It targets the Midnight expansion (Interface 120001), has zero external dependencies, and is distributed via CurseForge.
7+
AutoSellPlus is a World of Warcraft addon (Lua 5.1) that shows a popup when visiting a merchant to review and sell junk items. It targets the Midnight expansion (Interface 120100, patch 12.1.0), has zero external dependencies, and is distributed via CurseForge.
88

99
## Commands
1010

FEATURES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# AutoSellPlus - Complete Feature Documentation
22

3-
AutoSellPlus is a World of Warcraft addon that shows a popup when visiting a merchant to review and sell junk items. It targets the Midnight expansion (Interface 120001), has zero external dependencies, and is distributed via CurseForge.
3+
AutoSellPlus is a World of Warcraft addon that shows a popup when visiting a merchant to review and sell junk items. It targets the Midnight expansion (Interface 120100, patch 12.1.0), has zero external dependencies, and is distributed via CurseForge.
44

55
---
66

0 commit comments

Comments
 (0)