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/server.js
CHANGED
|
@@ -24776,7 +24776,7 @@ function voicesRouter() {
|
|
|
24776
24776
|
init_paths();
|
|
24777
24777
|
|
|
24778
24778
|
// src/version.ts
|
|
24779
|
-
var VERSION = "0.1.
|
|
24779
|
+
var VERSION = "0.1.32";
|
|
24780
24780
|
|
|
24781
24781
|
// src/utils/render-picker-catalog.ts
|
|
24782
24782
|
function renderPickerCatalog() {
|
|
@@ -24859,6 +24859,10 @@ async function startServer(opts) {
|
|
|
24859
24859
|
url: `http://${host}:${opts.port}`,
|
|
24860
24860
|
close: () => new Promise((resolve2, reject) => {
|
|
24861
24861
|
server.close((err2) => err2 ? reject(err2) : resolve2());
|
|
24862
|
+
const maybeForceClose = server.closeAllConnections;
|
|
24863
|
+
if (typeof maybeForceClose === "function") {
|
|
24864
|
+
maybeForceClose.call(server);
|
|
24865
|
+
}
|
|
24862
24866
|
})
|
|
24863
24867
|
};
|
|
24864
24868
|
}
|