Releases: katydecorah/wordle-action
v6.2.0
Update dependencies
Full Changelog: v6.1.0...v6.2.0
v6.1.0
v6.0.0
π¨ 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
Renamed the action to wordle-action
.
v4.0.0
π¨ 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
Add distributionPercent
to more easily generate a distribution graph as seen in Wordle's statistics.
v3.0.0
v2.1.0
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
π¨ 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
Fix issue where action fails when attempting to push to a yaml file with only whitespace/returns.