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.

125 lines
4.6 KiB

  1. # Gooey 1.0.3 Released!
  2. ![title card](https://github.com/chriskiehl/GooeyImages/blob/images/docs/releases/1.0.3/release-title-card.png)
  3. After cooking for far too long, **Gooey 1.0.3 is released!**
  4. Grab the latest version:
  5. * [github](https://github.com/chriskiehl/Gooey)
  6. * [PyPi](TODO)
  7. Runnable demos for all the new features can be found in the [Examples repo](https://github.com/chriskiehl/GooeyExamples).
  8. ## Overview:
  9. A lot of focus was put on settling Gooey down into a more stable mature project. In addition to all of the new features, a lot of time was spent writing documentation, stamping down cross platform issues / quirks, and making numerous tweaks and additions to enable a smoother experience when packaging Gooey for distribution.
  10. ## What's new
  11. ### Fancy Layout controls!
  12. ![advanced layout](https://github.com/chriskiehl/GooeyImages/raw/images/docs/releases/1.0.3/advanced-layout.png)
  13. The main goal of this release was enabling more complex real-world layouts and more customization of Gooey's UI. As of 1.1.0, you now have have control over every color, font, and display status within the application. You can now brand Gooey to your organization's colors, logically group related items under a central heading, and optionally show/hide all the individual components that make up an input widget.
  14. ### Menu Bars
  15. Gooey now includes a simple declarative system for creating top level menu bars and items.
  16. ![menu bar](https://github.com/chriskiehl/GooeyImages/raw/images/docs/releases/1.0.3/menu.png)
  17. The menu option currently supports three flavors:
  18. **AboutDialog**
  19. This is an AboutDialog as rendered natively by your OS. It's a good place to show standard info like version info, descriptions, licenses, etc.. in a standard way across platforms.
  20. **MessageDialogs**
  21. Next up are general message dialogs. You can display any informational text inside of these.
  22. **Link**
  23. Finally, you can create fixed menu items that simply link to external resources, for instance, your site, documentation, pdfs, etc..
  24. ## Rich Text Controls
  25. Thanks to @NathanRichard, Gooey can now optionally honor terminal control sequences and display Rich Text in the output panel.
  26. ![rich text](https://github.com/chriskiehl/GooeyImages/raw/images/docs/releases/1.0.3/rich-text.png)
  27. ### New Gooey Program Icon
  28. <img src="https://github.com/chriskiehl/GooeyImages/raw/images/logo/gooey.png" width="200" height="auto">
  29. New icon provided by professional cool guy and crazy talented UX designer [Justin Rhee](https://www.linkedin.com/in/justinrhee/).
  30. ## Additional features
  31. * OSX now shows program Icon in Dock
  32. * `show_error_modal` option to toggle whether or not failures additionally raise alert modals.
  33. * `BlockCheckbox` widget.
  34. * Hyperlinks written to the console appear as such and will launch a browser on click
  35. * `clear_before_run` option lets you control whether or not subsequent program runs start from a fresh terminal or preserve the previous output.
  36. * Conditionally show/hide restart button
  37. * `requires_shell` option - controls how `Popen` spawns your program. By default (and historically), this value is False.
  38. * Optionally silence textual progress updates when using the Progress widget (via @conradhilley)
  39. * Multi-Directory Choosers - these were accidentally dropped from the project. @HenrykHaniewicz added them back!
  40. * Additional explicit wx imports to make packaging on OSX easier
  41. * Textfields can now be made Readonly for informational purposes
  42. * better custom target support via `suppress_gooey_flag` which prevents the `--ignore-gooey` flag from being injected
  43. ## Breaking Changes
  44. No breaking changes between `1.0.0` and `1.1.0`!
  45. ## Language Additions / Improvements
  46. * Completed Italian translation - @gison93
  47. * Updated French translation - @NathanRichard
  48. * Updated Hebrew translation - @eturkes
  49. ## Bug Fixes
  50. * Fixed 5 year old bug(!) where an errant lambda function wasn't passing through all of its arguments which caused frustratingly opaque failures under specific conditions.
  51. * Fixed bug where external updates weren't applied to `ListBox`
  52. * Fix bug where tuples weren't coerced to List which causes concatenation errors
  53. * Fixed bug where string coercion in `argparse_to_json` was too broad and caused type errors
  54. * Fixed bug where wrong validator was applied to Dropdown type causing preflight checks to always fail
  55. * Fixed bug where Radio Groups would apply too much vertical spacing between components
  56. * Fixed bug where subgroups with single items were attached to the wrong UI parent
  57. * Fixed bug where legacy default groups weren't being translated
  58. * Fixed bug where certain languages would sometimes cause components to be rendered off screen