Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
e5379fd
testing socket io
blopa Dec 6, 2021
5672569
fix merge conflict
blopa Dec 6, 2021
ab2c533
move server to same package/json
blopa Dec 6, 2021
c72e49c
try to create push tile feature but failed
blopa Dec 6, 2021
2d343d5
fix tile pushing movement - now works 100%
blopa Dec 7, 2021
6540731
add comments and clean code
blopa Dec 7, 2021
3cd647d
add option to collect crystals
blopa Dec 7, 2021
65e0832
add collector count to any item
blopa Dec 7, 2021
137cbd7
tidy up stuff
blopa Dec 7, 2021
237e61f
add .env to the gitignore
blopa Dec 8, 2021
d563e7a
add .gitattributes file
blopa Dec 8, 2021
c4bf90b
add more redux actions
blopa Dec 8, 2021
0c32226
create player selection screen and lobby
blopa Dec 9, 2021
6db60de
start creating room system with socket io
blopa Dec 9, 2021
75c25c4
feat: add socket io rooms
blopa Dec 9, 2021
81aafec
fix char spacing
blopa Dec 10, 2021
d4ff7e4
add rooms management with timeout
blopa Dec 10, 2021
387ec44
handle reconnect
blopa Dec 11, 2021
7f65ae0
starting new game
blopa Dec 11, 2021
a93a906
start new game working
blopa Dec 12, 2021
afb801f
sync pushing tiles with server
blopa Dec 12, 2021
0e38675
collect items via socke io
blopa Dec 12, 2021
d41f273
fix event names
blopa Dec 12, 2021
17a49e8
create more menu items
blopa Dec 13, 2021
5845c4f
remove todos
blopa Dec 15, 2021
a4fa514
feat: add comments
blopa Dec 15, 2021
fffbbaf
add translation
blopa Dec 18, 2021
837134a
add helper function
blopa Dec 18, 2021
88e4834
add game dom rect
blopa Dec 19, 2021
64f89d9
set game texts as html elements
blopa Dec 19, 2021
208802e
add item collection hud
blopa Dec 19, 2021
e9fe36c
add useRect hook
blopa Dec 20, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
*.js text eol=crlf
*.jsx text eol=crlf
*.json text eol=crlf
*.md text eol=crlf

*.png binary
*.jpg binary
*.gif binary
*.mp4 binary
*.webm binary
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

# production
/build
.env

# misc
.DS_Store
Expand All @@ -25,3 +26,5 @@ yarn-error.log*
.idea/*
.idea
.idea/

src/server/node_modules
Loading