Compare commits

..

2 Commits

Author SHA1 Message Date
LQ63
5f30b9f739 fix(ui): Tie selection
Added !
2026-01-13 14:40:00 +01:00
LQ63
7829b35211 feat(ui): Tie selection
Added a minimal ui for the tie selection. Tie selection gets sent to the server via websocket and gets response from it.
2026-01-13 14:24:50 +01:00
3 changed files with 2 additions and 7 deletions

View File

@@ -160,8 +160,3 @@
### Features ### Features
* Update LobbyComponent to use icons for player removal buttons ([c653746](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/commit/c6537467f87d60aeece18f86f42c839d5437c18b)) * Update LobbyComponent to use icons for player removal buttons ([c653746](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/commit/c6537467f87d60aeece18f86f42c839d5437c18b))
## [0.0.0](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/compare/0.22.0...0.0.0) (2026-01-13)
### Features
* **ui:** Tie selection ([#26](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/issues/26)) ([6c914b1](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/commit/6c914b1421030897d47449087dd1694068e84436))

View File

@@ -21,7 +21,7 @@ function getCardImagePath(cardPath: string) {
function selectTie(tieIndex: number) { function selectTie(tieIndex: number) {
wb.sendAndWait("PickTie", { cardIndex: tieIndex }).then( wb.sendAndWait("PickTie", { cardIndex: tieIndex }).then(
$q.notify({ $q.notify({
message: "You've successfully picked your tieCard", message: "You've successfully picked your tieCard!",
color: "positive", color: "positive",
position: "top" position: "top"
}) })

View File

@@ -1,3 +1,3 @@
MAJOR=0 MAJOR=0
MINOR=23 MINOR=22
PATCH=0 PATCH=0