Skip to content

Releases: archy-bold/wordle-go

v0.1.0

06 Jan 22:34
Compare
Choose a tag to compare

Changelog

  • 79671a5 Able to specify letters to remove but doesn't consider existing letters.
  • 4943681 Able to specify starter word via argument.
  • 3141896 Added a license
  • 3583dba Added a readme.
  • 5a0d174 Added an on-screen keyboard.
  • 08c9cb1 Added goreleaser to release dists.
  • db177cf Added social share output.
  • cb8bb18 Added the game number to the share output.
  • 16e6f77 Argument to specify a word from a given date.
  • 3529eb3 Better deducing based on incorrectly-placed letters.
  • 57c980d Bug fix on char frequency strat, handle fewer ranked words.
  • 6e1ff94 Bundling the words into the executable.
  • 96f7788 Changed char frequency strategy to put greater emphasis on char position
  • b56495d Changed executable name.
  • d37c6db Changed the cheat mode instructions for entering hint.
  • 6069b07 Checking guesses against a list of valid words.
  • 9425c76 Considering incorrectly positioned letters too.
  • 57a863b Correctly eliminating letters that can't show up.
  • ab34421 Defaulting word to today's with argument for random
  • 811b587 Exiting if done.
  • 323004e First version of the solver. Reads the valid words, creates a histogram for letters and ranks words.
  • 7551752 Functionality to play a game with a given word.
  • 1db5348 Handling upper and lower-case words better.
  • b621fe6 Handling word-length errors in the game class.
  • 40c3b42 Improved char frequency strategy. Will rebuild the histogram considering only the remaining valid words.
  • 016f27a Improved output. Not logging the grid each turn in auto mode Showing answer on failure.
  • afd19a7 Initliased project with go mod.
  • 80e0355 Inputs correctly positioned letters to better guess.
  • a5def44 Introduced strategies to play automatically. Character frequency strategy. Refactored the code a lot.
  • 0b4abb8 Made play mode default and the solver 'cheat' mode.
  • 9b34e7c Outputting the board after each go.
  • 8e1c872 Outputting the score.
  • 5561bce Play all permutations and report how well the strategy performs.
  • e7dcd26 Plays a random word if none selected.
  • 9a1658c Ranking based on occurences in position, as well as occurrences.
  • baf73d7 Re-implemented the mode to solve. UnkownGame concept added for games where the answer is unknown.
  • 8d33976 Testing and bug fixes for the unknown game class.
  • 13c75c2 Tetsing the standard game class.
  • 01965d4 Updated readme with instructions to get it working.
  • c93cca1 Updated the README.