Skip to content

Releases: katydecorah/wordle-action

v6.2.0

30 Apr 22:06
Compare
Choose a tag to compare

Update dependencies

Full Changelog: v6.1.0...v6.2.0

v6.1.0

11 Dec 23:56
Compare
Choose a tag to compare

What's Changed

Full Changelog: v6.0.0...v6.1.0

v6.0.0

19 Sep 20:04
Compare
Choose a tag to compare

🚨 Breaking change: switches output format from YAML to JSON. To upgrade: you will need to rename your wordle file and format it to JSON.

v5.0.0

19 Sep 19:20
Compare
Choose a tag to compare

Renamed the action to wordle-action.

v4.0.0

19 Sep 18:58
Compare
Choose a tag to compare

🚨 Breaking change: replaces GitHub issue as trigger with a workflow dispatch event.

To upgrade you will need to: make your own API request to create a dispatch event. There is an updated iOS shortcut example to help make this event.

v3.1.0

20 Feb 20:34
Compare
Choose a tag to compare

Add distributionPercent to more easily generate a distribution graph as seen in Wordle's statistics.

v3.0.0

20 Feb 18:18
Compare
Choose a tag to compare

🚨 Breaking change!

All games are reformatted now when adding a new game. This will allow for metadata updates to cascade to previously saved games, for example altText #29.

v2.1.0

20 Feb 15:15
Compare
Choose a tag to compare

Adds altText property to each game to describe the results. Examples:

  • The player lost the game.
  • The player won the game in 4 guesses.

v2.0.1

18 Feb 18:44
Compare
Choose a tag to compare

🚨 Breaking change!

The output yml file now includes game statistics. As a result, the format for the file has changed. The list of games is now under a games property.

Before

  - number: 210
    score: 3
    board:
      - "πŸŸ©β¬›β¬›β¬›β¬›"
      - "β¬›β¬›πŸŸ¨πŸŸ©πŸŸ¨"
      - "🟩🟩🟩🟩🟩"
    won: true
    date: "2022-01-15"
    boardWords:
      - "yes no no no no"
      - "no no almost yes almost"
      - "yes yes yes yes yes"

After

totalPlayed: 7
totalWon: 7
totalWonPercent: "100"
streakCurrent: 3
streakMax: 3
distribution:
  1: 0
  2: 0
  3: 1
  4: 2
  5: 3
  6: 1
  X: 0
games:
  - number: 210
    score: 3
    board:
      - "πŸŸ©β¬›β¬›β¬›β¬›"
      - "β¬›β¬›πŸŸ¨πŸŸ©πŸŸ¨"
      - "🟩🟩🟩🟩🟩"
    won: true
    date: "2022-01-15"
    boardWords:
      - "yes no no no no"
      - "no no almost yes almost"
      - "yes yes yes yes yes"

v1.0.2

16 Feb 23:31
Compare
Choose a tag to compare

Fix issue where action fails when attempting to push to a yaml file with only whitespace/returns.