Skip to content

Releases: CarbonChess/FenFurnace

0.4.4-dev

05 Aug 00:23
Compare
Choose a tag to compare
0.4.4-dev Pre-release
Pre-release

Unreleased.
PR: #17

0.4.3

26 Jul 03:14
d5ec344
Compare
Choose a tag to compare

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

07 Jul 04:36
Compare
Choose a tag to compare

Version 0.4.2 of FenFurnace.

Changelog

  • Fix publishing script

0.4.1

07 Jul 02:04
Compare
Choose a tag to compare

Version 0.4.1 of FenFurnace.

Changelog

  • Fix browser file publishing

0.4.0

07 Jul 01:39
Compare
Choose a tag to compare

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

05 Jul 03:00
db10327
Compare
Choose a tag to compare

Version 0.3.1 of FenFurnace, which fixes typos. (PR: #13)

0.3.0

04 Jul 04:57
7da2234
Compare
Choose a tag to compare

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

20 Jun 21:23
408f7aa
Compare
Choose a tag to compare

Version 0.2.6 of FenFurnace (PR: #11)

Changelog:

  • Bug fix for promotion
  • Bug fix for castling while in check

0.2.5

10 Jun 20:17
802da53
Compare
Choose a tag to compare

Version 0.2.5 of FenFurnace (PR: #10)

Changelog:

  • Fixed castling bug

0.2.4

03 Jun 00:29
e15d47c
Compare
Choose a tag to compare

Version 0.2.4 of FenFurnace (PR: #9)

Changelog:

  • Fixed logging bug when taking a piece