fix: rename Cell_Deprecated.toc to Cell.toc for retail 12.1.0 - #506
Open
konovalov-nk wants to merge 1 commit into
Open
fix: rename Cell_Deprecated.toc to Cell.toc for retail 12.1.0#506konovalov-nk wants to merge 1 commit into
konovalov-nk wants to merge 1 commit into
Conversation
Cell_Deprecated.toc was not a recognised client TOC suffix, so the retail client ignored it and the addon did not appear in the addon list at all. - Rename Cell_Deprecated.toc to Cell.toc (TOC name must match addon folder) - Bump Interface to 120100 (WoW 12.1.0) - Uncomment X-Flavor: Mainline (double ##)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
On retail
12.1.0, Cellr278/r279-betado not appear in the addon list at all — not as incompatible, but completely absent. The cause: the retail TOC is namedCell_Deprecated.toc, which is not a flavour suffix the client recognises. TOC files whose name does not match the addon folder name (Cell) are ignored entirely.Changes
Cell_Deprecated.toc→Cell.toc— TOC filename now matches the addon folder, so the client picks it up again.## Interface: 120005→## Interface: 120100— current retail version12.1.0.# X-Flavor: Mainline→## X-Flavor: Mainline— single#made the directive a comment.Verification
After renaming, the addon loads and works normally on retail
12.1.0(verified manually).Reference
Closes #505