ShowHiddenChannels.plugin.js (root) is not the real plugin, it is only an auto-updater stub that BetterDiscord loads to keep the plugin up to date. Do not edit it directly.
The actual plugin source lives in src/. After making changes, run the build to produce the distributable:
bun run build- Edit
src/config.json:- Increment
"version". - Add a new entry at the top of the
"changelog"array. - Remove the oldest (last) entry so the array always contains exactly 3 entries.
- Increment
Example structure:
"changelog": [
{ "title": "v1.2.0 - New stuff", "type": "added", "items": ["Added X."] },
{ "title": "v1.1.0 - Fixes", "type": "fixed", "items": ["Fixed Y."] },
{ "title": "v1.0.0 - Release", "type": "added", "items": ["Initial release."] }
]Valid values for type: "fixed", "added", "progress", "changed".