Compare commits

..

2 Commits

Author SHA1 Message Date
TeamCity
6b8488e7a4 ci: bump version to v0.23.0 2026-01-13 13:36:42 +00:00
6c914b1421 feat(ui): Tie selection (#26)
Added a minimal ui for the tie selection. Tie selection gets sent to the server via websocket and gets response from it.

Co-authored-by: LQ63 <lkhermann@web.de>
Reviewed-on: #26
2026-01-13 14:33:35 +01:00
3 changed files with 7 additions and 2 deletions

View File

@@ -160,3 +160,8 @@
### 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=22 MINOR=23
PATCH=0 PATCH=0