You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
634 B

  1. ## Gooey 1.0.5 Released!
  2. New widgets:
  3. FilterableDropdown
  4. New translation key: "no_matches_found": "No matches found". This is used by default, but can be overidden via gooey options
  5. ```python
  6. add_argument(gooey_options={
  7. 'no_match': 'No results found!'
  8. })
  9. ```
  10. ## Breaking Changes
  11. * (documentation breaking)`terminal_font_weight`'s public documented API allowed the strings "NORMAL" and "BOLD" while its internal implementation relied on numeric font weights (light=200, normal=300, etc..). The documentation was updated to show the correct usage and a constants file was added to the public API.
  12. ## Bug Fixes