klaudio 0.12.6 → 0.12.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/extractor.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "klaudio",
3
- "version": "0.12.6",
3
+ "version": "0.12.7",
4
4
  "description": "Add sound effects to your coding sessions — play sounds when tasks complete, notifications arrive, and more",
5
5
  "type": "module",
6
6
  "bin": {
package/src/extractor.js CHANGED
@@ -140,7 +140,7 @@ export async function findPackedAudioFiles(gamePath, maxFiles = 50) {
140
140
  const ext = extname(entry.name).toLowerCase();
141
141
  // Formats vgmstream-cli can convert directly
142
142
  // (.bnk needs bnkextr preprocessing — skip for now)
143
- if (ext === ".wem" || ext === ".fsb" || ext === ".bank" || ext === ".bun") {
143
+ if (ext === ".wem" || ext === ".fsb" || ext === ".bank" || ext === ".bun" || ext === ".pck") {
144
144
  results.push({ path: fullPath, name: entry.name, dir });
145
145
  }
146
146
  }