privateboard 0.1.31 → 0.1.32
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.
- package/dist/boot.js +5 -1
- package/dist/boot.js.map +1 -1
- package/dist/cli.js +5 -1
- package/dist/cli.js.map +1 -1
- package/dist/server.js +5 -1
- package/dist/server.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/dist/version.js.map +1 -1
- package/package.json +2 -1
- package/public/app.js +9 -108
- package/public/home.html +1 -1
- package/public/i18n.js +8 -8
- package/public/index.html +88 -168
- package/public/onboarding.css +8 -0
- package/public/themes.css +37 -6
- package/public/typing-sfx.js +32 -2
- package/public/vendor/mp4-muxer.min.js +1904 -0
- package/public/voice-3d-banner.js +21 -0
- package/public/voice-onboarding.css +7 -0
- package/public/voice-recorder.js +427 -81
package/dist/boot.js
CHANGED
|
@@ -25539,7 +25539,7 @@ function voicesRouter() {
|
|
|
25539
25539
|
init_paths();
|
|
25540
25540
|
|
|
25541
25541
|
// src/version.ts
|
|
25542
|
-
var VERSION = "0.1.
|
|
25542
|
+
var VERSION = "0.1.32";
|
|
25543
25543
|
|
|
25544
25544
|
// src/utils/render-picker-catalog.ts
|
|
25545
25545
|
function renderPickerCatalog() {
|
|
@@ -25622,6 +25622,10 @@ async function startServer(opts) {
|
|
|
25622
25622
|
url: `http://${host}:${opts.port}`,
|
|
25623
25623
|
close: () => new Promise((resolve2, reject) => {
|
|
25624
25624
|
server.close((err2) => err2 ? reject(err2) : resolve2());
|
|
25625
|
+
const maybeForceClose = server.closeAllConnections;
|
|
25626
|
+
if (typeof maybeForceClose === "function") {
|
|
25627
|
+
maybeForceClose.call(server);
|
|
25628
|
+
}
|
|
25625
25629
|
})
|
|
25626
25630
|
};
|
|
25627
25631
|
}
|