From c3ffb52aa17cd1c6ab6c047d300853634ccbba9b Mon Sep 17 00:00:00 2001 From: aiturralde Date: Wed, 3 Jun 2026 10:05:06 -0400 Subject: [PATCH 1/6] Add game explanation and instructions for playing --- index.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index bdaf182..fd7ef34 100644 --- a/index.html +++ b/index.html @@ -69,7 +69,11 @@

2048

- +

+ How to play: + Use your arrow keys to move the tiles. When two tiles with + the same number touch, they merge into one! +

From e9fcf64a3633d95739cecac5bb1b9cbb8d2df6ca Mon Sep 17 00:00:00 2001 From: aiturralde Date: Wed, 3 Jun 2026 10:36:47 -0400 Subject: [PATCH 2/6] aaa --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 138c03e..0389e5e 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,8 @@ web-based game deployed to GitHub Pages. Once deployed, you will be able to access your game at the link in the **About** column of the repository's home page. +HOLA + ## Prerequisites - [GitHub.com Account](https://github.com) From 0f1906539c3e85c52b316b97ccd2430a3c8e3e4e Mon Sep 17 00:00:00 2001 From: aiturralde Date: Wed, 3 Jun 2026 10:44:12 -0400 Subject: [PATCH 3/6] AA --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0389e5e..e513789 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ web-based game deployed to GitHub Pages. Once deployed, you will be able to access your game at the link in the **About** column of the repository's home page. -HOLA +HOLA! ## Prerequisites From f17b95e3be56a04e7ff106054651bc6834296397 Mon Sep 17 00:00:00 2001 From: aiturralde Date: Wed, 3 Jun 2026 10:44:12 -0400 Subject: [PATCH 4/6] Modificado contenido del readme para laboratorio --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0389e5e..e513789 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ web-based game deployed to GitHub Pages. Once deployed, you will be able to access your game at the link in the **About** column of the repository's home page. -HOLA +HOLA! ## Prerequisites From 4004de0cf1d22545e0eed0d4ce47a26d411322ed Mon Sep 17 00:00:00 2001 From: aiturralde Date: Wed, 10 Jun 2026 09:48:21 -0400 Subject: [PATCH 5/6] Change default startTiles from 1 to 4 --- src/game_manager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game_manager.ts b/src/game_manager.ts index 7214d79..d030b8a 100644 --- a/src/game_manager.ts +++ b/src/game_manager.ts @@ -16,7 +16,7 @@ export class GameManager { /** Game State */ static state: GameState /** Start Tiles Count */ - static startTiles: number = 1 + static startTiles: number = 4 constructor(size: number) { GameManager.size = size From 7e34f8cf942cb59b41c83d9b3fedc535bceda3af Mon Sep 17 00:00:00 2001 From: aiturralde Date: Wed, 10 Jun 2026 09:52:06 -0400 Subject: [PATCH 6/6] Increase startTiles count from 4 to 5 --- src/game_manager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game_manager.ts b/src/game_manager.ts index d030b8a..ecfd717 100644 --- a/src/game_manager.ts +++ b/src/game_manager.ts @@ -16,7 +16,7 @@ export class GameManager { /** Game State */ static state: GameState /** Start Tiles Count */ - static startTiles: number = 4 + static startTiles: number = 5 constructor(size: number) { GameManager.size = size