-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c17069c
commit 29b9746
Showing
19 changed files
with
3,829 additions
and
298 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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [0.1.2] - 2024-12-11 | ||
|
||
### Added | ||
- An AI Bot that plays as Circle, with an adjustable difficulty slider | ||
- Version number, along with a changelog | ||
|
||
### Fixed | ||
- When you tie a board, it no longer breaks the game when you try and play on the tied board | ||
- When you tie the entire game, there is now a tie-breaker that chooses the player with the most board wins. If you are tied on wins, it is a true tie | ||
|
||
## [0.1.1] - 2024-12-11 | ||
|
||
### Added | ||
- Favicon for web browsers | ||
- GitHub Actions automatic deployment to GitHub Pages | ||
- Playable on GitHub Pages | ||
|
||
### Fixed | ||
- Misalignment with the score text and icons at the bottom | ||
- The Circle icon for the Player indicator no longer shifts the page | ||
|
||
## [0.1.0] - 2024-12-11 | ||
|
||
### Added | ||
- The game exists. |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"$schema": "https://ui.shadcn.com/schema.json", | ||
"style": "default", | ||
"rsc": false, | ||
"tsx": true, | ||
"tailwind": { | ||
"config": "tailwind.config.js", | ||
"css": "src/index.css", | ||
"baseColor": "neutral", | ||
"cssVariables": true, | ||
"prefix": "" | ||
}, | ||
"aliases": { | ||
"components": "@/components", | ||
"utils": "@/lib/utils", | ||
"ui": "@/components/ui", | ||
"lib": "@/lib", | ||
"hooks": "@/hooks" | ||
}, | ||
"iconLibrary": "lucide" | ||
} |
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
Oops, something went wrong.