mirror of
https://github.com/PhoenixTwoFive/karaoqueue.git
synced 2025-07-04 09:11:42 +02:00
Compare commits
12 Commits
0234d64bf2
...
legacy
Author | SHA1 | Date | |
---|---|---|---|
b38f5edd9e | |||
374a080b0e | |||
8a9fa436d8 | |||
4ec347988a | |||
ec89ac482d | |||
836b509a7d | |||
6da62c4132
|
|||
34a7ea1a55
|
|||
555cdda631
|
|||
cc4c538e91 | |||
a03c1c41bb
|
|||
ed09a93b3d
|
8
.github/dependabot.yml
vendored
Normal file
8
.github/dependabot.yml
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
version: 2
|
||||||
|
updates:
|
||||||
|
- package-ecosystem: "pip"
|
||||||
|
directory: "/backend"
|
||||||
|
schedule:
|
||||||
|
interval: "weekly"
|
||||||
|
day: "sunday"
|
||||||
|
time: "16:00"
|
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@ -10,5 +10,8 @@
|
|||||||
"python.testing.unittestEnabled": true,
|
"python.testing.unittestEnabled": true,
|
||||||
"emmet.includeLanguages": {
|
"emmet.includeLanguages": {
|
||||||
"django-html": "html"
|
"django-html": "html"
|
||||||
|
},
|
||||||
|
"yaml.schemas": {
|
||||||
|
"https://json.schemastore.org/dependabot-2.0.json": "file:///home/phillip/Projekte/Software/StuK/karaoqueue/dependabot.yml"
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -298,7 +298,7 @@ def transfer_playbacks():
|
|||||||
ON DUPLICATE KEY
|
ON DUPLICATE KEY
|
||||||
UPDATE Playbacks = lts.Playbacks + VALUES(Playbacks);
|
UPDATE Playbacks = lts.Playbacks + VALUES(Playbacks);
|
||||||
""")
|
""")
|
||||||
result = conn.execute(stmt)
|
conn.execute(stmt)
|
||||||
conn.commit()
|
conn.commit()
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
autopep8==2.0.4
|
autopep8==2.0.4
|
||||||
beautifulsoup4==4.12.3
|
beautifulsoup4==4.12.3
|
||||||
blinker==1.7.0
|
blinker==1.8.2
|
||||||
bs4==0.0.2
|
bs4==0.0.2
|
||||||
certifi==2024.2.2
|
certifi==2024.2.2
|
||||||
charset-normalizer==3.3.2
|
charset-normalizer==3.3.2
|
||||||
@ -33,8 +33,8 @@ soupsieve==2.5
|
|||||||
SQLAlchemy==2.0.27
|
SQLAlchemy==2.0.27
|
||||||
toml==0.10.2
|
toml==0.10.2
|
||||||
tomli==2.0.1
|
tomli==2.0.1
|
||||||
tomlkit==0.12.3
|
tomlkit==0.13.2
|
||||||
typing_extensions==4.9.0
|
typing_extensions==4.9.0
|
||||||
tzdata==2024.1
|
tzdata==2024.2
|
||||||
urllib3==2.2.0
|
urllib3==2.2.0
|
||||||
Werkzeug==3.0.1
|
Werkzeug==3.0.1
|
||||||
|
@ -63,9 +63,14 @@ body {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.table {
|
||||||
|
color: var(--text-color);
|
||||||
|
}
|
||||||
|
|
||||||
table td {
|
table td {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
color: var(--text-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
table.entries tbody tr[data-index="0"] {
|
table.entries tbody tr[data-index="0"] {
|
||||||
@ -234,5 +239,8 @@ pre {
|
|||||||
/* Toasts */
|
/* Toasts */
|
||||||
--toast-background-color: #232323;
|
--toast-background-color: #232323;
|
||||||
--toast-text-color: #f5f5f5;
|
--toast-text-color: #f5f5f5;
|
||||||
|
|
||||||
|
/* Tables */
|
||||||
|
--table-border-color: #232323;
|
||||||
}
|
}
|
||||||
}
|
}
|
Reference in New Issue
Block a user