# Changelog All notable changes to this AddOn will be documented here. Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). Versioning follows [Semantic Versioning](https://semver.org/). --- ## [Unreleased] - Phase 4 implementation in progress. --- ## [0.1.1] — 2026-08-08 — 5 張 `2mpl_*` 表補齊 schema 期望值 ### Added - 為全部 5 張 `2mpl_*` 表補上 `expected_columns` 與 `indexes`: `2mpl_singer_settings`、`2mpl_songs`、`2mpl_queue`、`2mpl_rate_limits`、 `2mpl_sessions`。欄位與索引逐項轉錄自 2meet-playlist activator 的 `CREATE TABLE`。先前只註冊表名,`wp wpdo doctor` 只知道表存在,無從判斷欄位或 索引是否漂移——`2mpl_queue` / `2mpl_rate_limits` 這類高頻讀寫表尤其吃索引, 漏建索引卻沒有警訊是實際風險。 ### Fixed - `TMDO_Custom_Table_Registry::register()` 的索引期望值 config key 由 `expected_indexes` 更正為 `indexes`。該 API 以 `wp_parse_args()` 併入預設值, 未知 key 會被**靜默丟棄**——先前索引期望值等同從未送達 registry, `wp wpdo doctor` 的 schema drift 只驗欄位、不驗索引。此問題橫跨全部 8 個 AddOn, 已一併更正。 - `TMDO_Playlist::register()` 的 partner 偵測符號對齊實際存在的常數。舊版偵測的 `TMPL_Main` 類別在 2meet-playlist 中**根本不存在**。補上 `TMPL_VERSION` / `TMPL_PLUGIN_DIR`(兩者在主檔檔案解析當下即 define,早於 `plugins_loaded`), 並保留確實存在的 `TMPL_Plugin`。 實測(mu-plugin 於 `plugins_loaded:6` 量測):`TMPL_VERSION` = AVAILABLE。 `file_exists()` 後備保留不動,行為不變;但偵測不再含死符號。 --- ## [0.1.0] — TBD ### Added (initial release, scaffold) - Plugin scaffold from `wp-data-optimizer v2.16.0` extraction plan. - Plugin Header + bootstrap stub + 7 MD + composer.json. - Requires Plugins: `2meet-data-optimizer`, `2meet-playlist`.