Releases: CarbonChess/FenFurnace
Releases · CarbonChess/FenFurnace
0.4.3
Changelog
- Fix empty cells being classified as a colour
- Fixes piece movement being incorrect (#15)
- Document
makeMove()
parameter 3, completeMove?: boolean
and browser output window.fenFuncs.
0.4.2
Version 0.4.2 of FenFurnace.
Changelog
0.4.1
Version 0.4.1 of FenFurnace.
Changelog
- Fix browser file publishing
0.4.0
Version 0.4.0 of FenFurnace.
Now written in TypeScript (#14)
Changelog:
- Added export
points
import {points} from 'fenfurnace';
console.log(points) // {w: 0, b:0}
- Fixed type errors
0.3.1
Version 0.3.1 of FenFurnace, which fixes typos. (PR: #13)
0.3.0
Version 0.3 of FenFurnace with some breaking changes (PR: #12)
Changelog:
- Move
global
variables to imported object gameData
.
- global.moveList
+ import {gameData} from "fenfurnace"
+ gameData.moveList
- Move function
validation.makeMove()
to makeMove()
.
- import {validation} from "fenfurnace"
- validation.makeMove()
+ import {makeMove} from "fenfurnace"
+ makeMove()
0.2.6
Version 0.2.6 of FenFurnace (PR: #11)
Changelog:
- Bug fix for promotion
- Bug fix for castling while in check
0.2.5
Version 0.2.5 of FenFurnace (PR: #10)
Changelog:
0.2.4
Version 0.2.4 of FenFurnace (PR: #9)
Changelog:
- Fixed logging bug when taking a piece