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/cli.js
CHANGED
|
@@ -25543,7 +25543,7 @@ function voicesRouter() {
|
|
|
25543
25543
|
init_paths();
|
|
25544
25544
|
|
|
25545
25545
|
// src/version.ts
|
|
25546
|
-
var VERSION = "0.1.
|
|
25546
|
+
var VERSION = "0.1.32";
|
|
25547
25547
|
|
|
25548
25548
|
// src/utils/render-picker-catalog.ts
|
|
25549
25549
|
function renderPickerCatalog() {
|
|
@@ -25626,6 +25626,10 @@ async function startServer(opts) {
|
|
|
25626
25626
|
url: `http://${host}:${opts.port}`,
|
|
25627
25627
|
close: () => new Promise((resolve2, reject) => {
|
|
25628
25628
|
server.close((err2) => err2 ? reject(err2) : resolve2());
|
|
25629
|
+
const maybeForceClose = server.closeAllConnections;
|
|
25630
|
+
if (typeof maybeForceClose === "function") {
|
|
25631
|
+
maybeForceClose.call(server);
|
|
25632
|
+
}
|
|
25629
25633
|
})
|
|
25630
25634
|
};
|
|
25631
25635
|
}
|