From dde5280c98e001015c359b413b2e9df11b882f79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Gomo=C5=82a?= Date: Mon, 11 Mar 2024 11:11:18 +0100 Subject: [PATCH 1/2] Improved colors --- public/assets/css/board.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/assets/css/board.css b/public/assets/css/board.css index 8e401c7..617b805 100644 --- a/public/assets/css/board.css +++ b/public/assets/css/board.css @@ -14,8 +14,8 @@ --ship-invalid: hsl(0, 70%, 55%); --ship-miss: hsl(0, 0%, 18%); - --ship-ally-sunken: hsl(120, 30%, 40%); - --ship-enemy-sunken: hsl(0, 30%, 40%); + --ship-ally-sunken: hsl(120, 30%, 30%); + --ship-enemy-sunken: hsl(0, 30%, 30%); --dynamic: rgb(83, 83, 245); --danger: rgb(243, 56, 56); From 1ab36bb32e2d8f440e2916f780d6b0e72fbb1c67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Gomo=C5=82a?= Date: Mon, 18 Mar 2024 18:53:53 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3ab950b..208aa72 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,8 @@ -# statki-backend -Backend do gry w statki +# statki (battleships) +The entire thing is not complete so expect vulnerabilities, missing features and more scary stuff 👻. + +Simple battleships game made in Express + vanilla DHTML (seriously).
+It uses Redis as a store and Socket.io for websockets. All the operations like ship position validating, shot validating and rooms are made server-side. + +**Unfortunately the entire repo is in Polish**, I might add localisation in the future if I feel like it.
+Also check out the `service-overhaul` branch that contains multiple service changes from the main branch (like accounts, e-mail auth code login, MySQL persistent match data saving and more in the future).