Compare commits

...

2 Commits

Author SHA1 Message Date
Malte Jürgens
d57155b25d bump version to 1.0.0-rc.2 2022-07-16 17:23:25 +02:00
Malte Jürgens
e462dc2990 fix 2022-07-14 14:43:52 +02:00
3 changed files with 9 additions and 4 deletions

View File

@@ -111,16 +111,21 @@ setInterval(() => {
}
}
// Add about text in settings
if (
document.getElementsByClassName("dirscordScreenaudioAboutText").length == 0
) {
for (const el of document.getElementsByClassName("info-3pQQBb")) {
const aboutEl = document.createElement("div");
aboutEl.innerText = "discord-screenaudio v1.0.0-rc.1";
aboutEl.innerText = "discord-screenaudio v1.0.0-rc.2";
aboutEl.style.fontSize = "12px";
aboutEl.style.color = "var(--text-muted)";
aboutEl.classList.add("dirscordScreenaudioAboutText");
el.appendChild(aboutEl);
}
}
// Remove stream settings if stream is active
document.getElementById("manage-streams-change-windows")?.remove();
document.querySelector(`[aria-label="Stream Settings"]`)?.remove();
}, 1000);

View File

@@ -84,7 +84,7 @@ void DiscordPage::stopVirtmic() {
}
void DiscordPage::startVirtmic(QString target) {
if (target != "") {
if (target != "None") {
qDebug() << "[virtmic] Starting Virtmic with target" << target;
m_virtmicProcess.start(QApplication::arguments()[0], {"--virtmic", target});
}
@@ -111,7 +111,7 @@ void DiscordPage::startStream(QString target, uint width, uint height,
stopVirtmic();
startVirtmic(target);
// Wait a bit for the virtmic to start
QTimer::singleShot(target == "" ? 0 : 200, [=]() {
QTimer::singleShot(target == "None" ? 0 : 200, [=]() {
runJavaScript(QString("window.discordScreenaudioStartStream(%1, %2, %3);")
.arg(width)
.arg(height)

View File

@@ -7,7 +7,7 @@
int main(int argc, char *argv[]) {
QApplication app(argc, argv);
QApplication::setApplicationName("discord-screenaudio");
QApplication::setApplicationVersion("1.0.0-rc.1");
QApplication::setApplicationVersion("1.0.0-rc.2");
QCommandLineParser parser;
parser.setApplicationDescription(