lock rohrkabel to fixed version
This commit is contained in:
parent
6d0a95c950
commit
b30c5cb43c
3 changed files with 7 additions and 3 deletions
|
@ -24,7 +24,11 @@ set(discord-screenaudio_SRC
|
||||||
|
|
||||||
include(FetchContent)
|
include(FetchContent)
|
||||||
|
|
||||||
FetchContent_Declare(rohrkabel GIT_REPOSITORY "https://github.com/Soundux/rohrkabel")
|
FetchContent_Declare(
|
||||||
|
rohrkabel
|
||||||
|
GIT_REPOSITORY "https://github.com/Soundux/rohrkabel"
|
||||||
|
GIT_TAG "d87403f48d3a95aa4bcf4cd60112d9e4bb090d5d"
|
||||||
|
)
|
||||||
FetchContent_MakeAvailable(rohrkabel)
|
FetchContent_MakeAvailable(rohrkabel)
|
||||||
|
|
||||||
add_executable(discord-screenaudio ${discord-screenaudio_SRC})
|
add_executable(discord-screenaudio ${discord-screenaudio_SRC})
|
||||||
|
|
|
@ -117,7 +117,7 @@ setInterval(() => {
|
||||||
) {
|
) {
|
||||||
for (const el of document.getElementsByClassName("info-3pQQBb")) {
|
for (const el of document.getElementsByClassName("info-3pQQBb")) {
|
||||||
const aboutEl = document.createElement("div");
|
const aboutEl = document.createElement("div");
|
||||||
aboutEl.innerText = "discord-screenaudio v1.0.0-rc.4";
|
aboutEl.innerText = "discord-screenaudio v1.0.0-rc.5";
|
||||||
aboutEl.style.fontSize = "12px";
|
aboutEl.style.fontSize = "12px";
|
||||||
aboutEl.style.color = "var(--text-muted)";
|
aboutEl.style.color = "var(--text-muted)";
|
||||||
aboutEl.classList.add("dirscordScreenaudioAboutText");
|
aboutEl.classList.add("dirscordScreenaudioAboutText");
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
int main(int argc, char *argv[]) {
|
int main(int argc, char *argv[]) {
|
||||||
QApplication app(argc, argv);
|
QApplication app(argc, argv);
|
||||||
QApplication::setApplicationName("discord-screenaudio");
|
QApplication::setApplicationName("discord-screenaudio");
|
||||||
QApplication::setApplicationVersion("1.0.0-rc.4");
|
QApplication::setApplicationVersion("1.0.0-rc.5");
|
||||||
|
|
||||||
QCommandLineParser parser;
|
QCommandLineParser parser;
|
||||||
parser.setApplicationDescription(
|
parser.setApplicationDescription(
|
||||||
|
|
Loading…
Reference in a new issue