-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
summary x ship lightning on sink, by shipId and not ship size. x rename density lens as density filter. x when density filter is switched on do not make background greenish. x check possible bug on statistics page, avg number of turns required to win.
- Loading branch information
Abdullah Jamal
committed
Feb 8, 2024
1 parent
d7822be
commit 95bc21a
Showing
10 changed files
with
53 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
.DS_Store | ||
node_modules | ||
node_modules | ||
*.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,23 @@ | ||
{ | ||
"name": "Battleship Game - Island Edition", | ||
"version": "0.3", | ||
"description": "Classic Battleship board game with special island edition and tough AI for your browser.", | ||
"action": { | ||
"default_popup": "index.html", | ||
"default_title": "Battleship", | ||
"default_icon": {"128": "assets/i128.png", "32": "assets/i32.png", "16": "assets/i16.png"} | ||
}, | ||
"icons": {"128": "assets/i128.png", "32": "assets/i32.png", "16": "assets/i16.png"}, | ||
"manifest_version": 3, | ||
"permissions": [ | ||
"storage" | ||
] | ||
"name": "Battleship Game - Island Edition", | ||
"version": "0.3", | ||
"description": "Classic Battleship board game with special island edition and tough AI for your browser.", | ||
"action": { | ||
"default_popup": "index.html", | ||
"default_title": "Play Battleship", | ||
"default_icon": { | ||
"128": "assets/i128.png", | ||
"32": "assets/i32.png", | ||
"16": "assets/i16.png" | ||
} | ||
}, | ||
"icons": { | ||
"128": "assets/i128.png", | ||
"32": "assets/i32.png", | ||
"16": "assets/i16.png" | ||
}, | ||
"manifest_version": 3, | ||
"permissions": [ | ||
"storage" | ||
] | ||
} |