fix: bump version to 1.0.9.4, update changelog

This commit is contained in:
kitbyte
2026-07-22 00:03:38 +03:00
parent e7c7beb621
commit 643c8f8b62
38 changed files with 788 additions and 365 deletions
@@ -0,0 +1,17 @@
import { isRecord } from "../installed-apps-sync/runtime.js"
const WAND_QR_RENDERER_EXPORT = "mo"
export function resolveQrRenderer(webpackRequire) {
for (const record of Object.values(webpackRequire?.c || {})) {
const exports = record?.exports
if (
isRecord(exports) &&
typeof exports[WAND_QR_RENDERER_EXPORT] === "function"
) {
return exports[WAND_QR_RENDERER_EXPORT]
}
}
return null
}