Merge remote-tracking branch 'origin/master' into feature/socks-support
This commit is contained in:
commit
df5befb60e
@ -8,6 +8,8 @@
|
|||||||
{active: active},
|
{active: active},
|
||||||
{'parted-channel': channel.type === 'channel' && channel.state === 0},
|
{'parted-channel': channel.type === 'channel' && channel.state === 0},
|
||||||
{'has-draft': channel.pendingMessage},
|
{'has-draft': channel.pendingMessage},
|
||||||
|
{'has-unread': channel.unread},
|
||||||
|
{'has-highlight': channel.highlight},
|
||||||
{
|
{
|
||||||
'not-secure':
|
'not-secure':
|
||||||
channel.type === 'lobby' && network.status.connected && !network.status.secure,
|
channel.type === 'lobby' && network.status.connected && !network.status.secure,
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
<template v-if="userSearchInput.length > 0">
|
<template v-if="userSearchInput.length > 0">
|
||||||
<Username
|
<Username
|
||||||
v-for="user in users"
|
v-for="user in users"
|
||||||
:key="user.original.nick"
|
:key="user.original.nick + '-search'"
|
||||||
:on-hover="hoverUser"
|
:on-hover="hoverUser"
|
||||||
:active="user.original === activeUser"
|
:active="user.original === activeUser"
|
||||||
:user="user.original"
|
:user="user.original"
|
||||||
|
@ -26,31 +26,36 @@ class Uploader {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dragOver(event) {
|
dragOver(event) {
|
||||||
// Prevent dragover event completely and do nothing with it
|
if (event.dataTransfer.types.includes("Files")) {
|
||||||
// This stops the browser from trying to guess which cursor to show
|
// Prevent dragover event completely and do nothing with it
|
||||||
event.preventDefault();
|
// This stops the browser from trying to guess which cursor to show
|
||||||
|
event.preventDefault();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dragEnter(event) {
|
dragEnter(event) {
|
||||||
event.preventDefault();
|
|
||||||
|
|
||||||
// relatedTarget is the target where we entered the drag from
|
// relatedTarget is the target where we entered the drag from
|
||||||
// when dragging from another window, the target is null, otherwise its a DOM element
|
// when dragging from another window, the target is null, otherwise its a DOM element
|
||||||
if (!event.relatedTarget && event.dataTransfer.types.includes("Files")) {
|
if (!event.relatedTarget && event.dataTransfer.types.includes("Files")) {
|
||||||
|
event.preventDefault();
|
||||||
|
|
||||||
this.overlay.classList.add("is-dragover");
|
this.overlay.classList.add("is-dragover");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dragLeave(event) {
|
dragLeave(event) {
|
||||||
event.preventDefault();
|
|
||||||
|
|
||||||
// If relatedTarget is null, that means we are no longer dragging over the page
|
// If relatedTarget is null, that means we are no longer dragging over the page
|
||||||
if (!event.relatedTarget) {
|
if (!event.relatedTarget) {
|
||||||
|
event.preventDefault();
|
||||||
this.overlay.classList.remove("is-dragover");
|
this.overlay.classList.remove("is-dragover");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
drop(event) {
|
drop(event) {
|
||||||
|
if (!event.dataTransfer.types.includes("Files")) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
this.overlay.classList.remove("is-dragover");
|
this.overlay.classList.remove("is-dragover");
|
||||||
|
|
||||||
|
@ -64,7 +64,7 @@
|
|||||||
"sharp": "0.28.0",
|
"sharp": "0.28.0",
|
||||||
"socket.io": "3.1.2",
|
"socket.io": "3.1.2",
|
||||||
"tlds": "1.216.0",
|
"tlds": "1.216.0",
|
||||||
"ua-parser-js": "0.7.23",
|
"ua-parser-js": "0.7.24",
|
||||||
"uuid": "8.3.2",
|
"uuid": "8.3.2",
|
||||||
"web-push": "3.4.4",
|
"web-push": "3.4.4",
|
||||||
"yarn": "1.22.10"
|
"yarn": "1.22.10"
|
||||||
@ -97,7 +97,7 @@
|
|||||||
"normalize.css": "8.0.1",
|
"normalize.css": "8.0.1",
|
||||||
"npm-run-all": "4.1.5",
|
"npm-run-all": "4.1.5",
|
||||||
"nyc": "15.1.0",
|
"nyc": "15.1.0",
|
||||||
"postcss": "8.2.5",
|
"postcss": "8.2.10",
|
||||||
"postcss-import": "14.0.0",
|
"postcss-import": "14.0.0",
|
||||||
"postcss-loader": "5.0.0",
|
"postcss-loader": "5.0.0",
|
||||||
"postcss-preset-env": "6.7.0",
|
"postcss-preset-env": "6.7.0",
|
||||||
|
@ -249,6 +249,8 @@ function parse(msg, chan, preview, res, client) {
|
|||||||
case "audio/x-midi":
|
case "audio/x-midi":
|
||||||
case "audio/x-mpeg":
|
case "audio/x-mpeg":
|
||||||
case "audio/x-mpeg-3":
|
case "audio/x-mpeg-3":
|
||||||
|
case "audio/flac":
|
||||||
|
case "audio/x-m4a":
|
||||||
if (!preview.link.startsWith("https://")) {
|
if (!preview.link.startsWith("https://")) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -21,7 +21,8 @@ const inlineContentDispositionTypes = {
|
|||||||
"audio/mpeg": "audio.mp3",
|
"audio/mpeg": "audio.mp3",
|
||||||
"audio/ogg": "audio.ogg",
|
"audio/ogg": "audio.ogg",
|
||||||
"audio/vnd.wave": "audio.wav",
|
"audio/vnd.wave": "audio.wav",
|
||||||
"audio/flac": "audio.flac",
|
"audio/x-flac": "audio.flac",
|
||||||
|
"audio/x-m4a": "audio.m4a",
|
||||||
"image/bmp": "image.bmp",
|
"image/bmp": "image.bmp",
|
||||||
"image/gif": "image.gif",
|
"image/gif": "image.gif",
|
||||||
"image/jpeg": "image.jpg",
|
"image/jpeg": "image.jpg",
|
||||||
@ -110,10 +111,12 @@ class Uploader {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Send a more common mime type for audio files
|
||||||
|
// so that browsers can play them correctly
|
||||||
if (detectedMimeType === "audio/vnd.wave") {
|
if (detectedMimeType === "audio/vnd.wave") {
|
||||||
// Send a more common mime type for wave audio files
|
|
||||||
// so that browsers can play them correctly
|
|
||||||
detectedMimeType = "audio/wav";
|
detectedMimeType = "audio/wav";
|
||||||
|
} else if (detectedMimeType === "audio/x-flac") {
|
||||||
|
detectedMimeType = "audio/flac";
|
||||||
}
|
}
|
||||||
|
|
||||||
res.setHeader("Content-Disposition", disposition);
|
res.setHeader("Content-Disposition", disposition);
|
||||||
|
25
yarn.lock
25
yarn.lock
@ -5465,6 +5465,11 @@ nanoid@^3.1.20:
|
|||||||
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.20.tgz#badc263c6b1dcf14b71efaa85f6ab4c1d6cfc788"
|
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.20.tgz#badc263c6b1dcf14b71efaa85f6ab4c1d6cfc788"
|
||||||
integrity sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==
|
integrity sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==
|
||||||
|
|
||||||
|
nanoid@^3.1.22:
|
||||||
|
version "3.1.23"
|
||||||
|
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.23.tgz#f744086ce7c2bc47ee0a8472574d5c78e4183a81"
|
||||||
|
integrity sha512-FiB0kzdP0FFVGDKlRLEQ1BgDzU87dy5NnzjeW9YZNt+/c3+q82EQDUwniSAUxp/F0gFNI1ZhKU1FqYsMuqZVnw==
|
||||||
|
|
||||||
napi-build-utils@^1.0.1:
|
napi-build-utils@^1.0.1:
|
||||||
version "1.0.2"
|
version "1.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806"
|
resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806"
|
||||||
@ -6792,13 +6797,13 @@ postcss-values-parser@^2.0.0, postcss-values-parser@^2.0.1:
|
|||||||
indexes-of "^1.0.1"
|
indexes-of "^1.0.1"
|
||||||
uniq "^1.0.1"
|
uniq "^1.0.1"
|
||||||
|
|
||||||
postcss@8.2.5:
|
postcss@8.2.10:
|
||||||
version "8.2.5"
|
version "8.2.10"
|
||||||
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.2.5.tgz#3c75149ada4e93db9521913654c0144517f77c9a"
|
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.2.10.tgz#ca7a042aa8aff494b334d0ff3e9e77079f6f702b"
|
||||||
integrity sha512-wMcb7BpDcm3gxQOQx46NDNT36Kk0Ao6PJLLI2ed5vehbbbxCEuslSQzbQ2sfSKy+gkYxhWcGWSeaK+gwm4KIZg==
|
integrity sha512-b/h7CPV7QEdrqIxtAf2j31U5ef05uBDuvoXv6L51Q4rcS1jdlXAVKJv+atCFdUXYl9dyTHGyoMzIepwowRJjFw==
|
||||||
dependencies:
|
dependencies:
|
||||||
colorette "^1.2.1"
|
colorette "^1.2.2"
|
||||||
nanoid "^3.1.20"
|
nanoid "^3.1.22"
|
||||||
source-map "^0.6.1"
|
source-map "^0.6.1"
|
||||||
|
|
||||||
postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.21, postcss@^7.0.26, postcss@^7.0.27, postcss@^7.0.32, postcss@^7.0.35, postcss@^7.0.5, postcss@^7.0.6:
|
postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.21, postcss@^7.0.26, postcss@^7.0.27, postcss@^7.0.32, postcss@^7.0.35, postcss@^7.0.5, postcss@^7.0.6:
|
||||||
@ -8295,10 +8300,10 @@ typedarray-to-buffer@^3.1.5:
|
|||||||
dependencies:
|
dependencies:
|
||||||
is-typedarray "^1.0.0"
|
is-typedarray "^1.0.0"
|
||||||
|
|
||||||
ua-parser-js@0.7.23:
|
ua-parser-js@0.7.24:
|
||||||
version "0.7.23"
|
version "0.7.24"
|
||||||
resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.23.tgz#704d67f951e13195fbcd3d78818577f5bc1d547b"
|
resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.24.tgz#8d3ecea46ed4f1f1d63ec25f17d8568105dc027c"
|
||||||
integrity sha512-m4hvMLxgGHXG3O3fQVAyyAQpZzDOvwnhOTjYz5Xmr7r/+LpkNy3vJXdVRWgd1TkAb7NGROZuSy96CrlNVjA7KA==
|
integrity sha512-yo+miGzQx5gakzVK3QFfN0/L9uVhosXBBO7qmnk7c2iw1IhL212wfA3zbnI54B0obGwC/5NWub/iT9sReMx+Fw==
|
||||||
|
|
||||||
uc.micro@^1.0.1:
|
uc.micro@^1.0.1:
|
||||||
version "1.0.6"
|
version "1.0.6"
|
||||||
|
Loading…
Reference in New Issue
Block a user