Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to StatPanel are recorded here.
This project follows [Semantic Versioning](https://semver.org/) and the format
of [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## [Unreleased]

### Changed

- **Interface version bumped to `120100` for patch 12.1.0.** No code changes
were needed; this is the flag that stops the client and the listing sites
marking the addon out of date.

## [2.5.0] - 2026-08-06

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# StatPanel

![License](https://img.shields.io/badge/license-MIT-blue.svg)
![Interface](https://img.shields.io/badge/WoW-12.0%20Midnight-orange.svg)
![Interface](https://img.shields.io/badge/WoW-12.1%20Midnight-orange.svg)
![Lua](https://img.shields.io/badge/Lua-5.1-000080.svg)

A movable panel for World of Warcraft showing your secondary stats in your
Expand Down
2 changes: 1 addition & 1 deletion StatPanel.toc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Interface: 120007
## Interface: 120100

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Cut a new addon release for the interface bump

When this commit is merged without a new addon version and tag, the updated TOC will never reach existing CurseForge/Wago users: the inspected release workflow only publishes for v* tags (.github/workflows/release.yml:15-18) and rejects any tag whose version differs from the still-released ## Version: 2.5.0 (release.yml:49-60). Since the changelog also leaves this under Unreleased, bump the addon version and create the corresponding tag so this compatibility fix is actually packaged and uploaded.

Useful? React with 👍 / 👎.

## Title: StatPanel
## Notes: Fully customizable secondary stat, speed and FPS display
## Author: Fennell
Expand Down
2 changes: 1 addition & 1 deletion tests/wow_stub.lua
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ function M.install(env)
-- Character and stats
----------------------------------------------------------------------------
def("GetLocale", function() return "enUS" end)
def("GetBuildInfo", function() return "12.0.7", "62000", "Jul 27 2026", 120007 end)
def("GetBuildInfo", function() return "12.1.0", "62000", "Jul 27 2026", 120100 end)
def("UnitName", function() return "Teststrider" end)
def("GetRealmName", function() return "Test Realm" end)
def("UnitClass", function() return "Hunter", "HUNTER", 3 end)
Expand Down
Loading