From 732b2b31be089fe4019d7b812608c188b0d5a669 Mon Sep 17 00:00:00 2001 From: Chris Date: Sat, 29 Jan 2022 14:59:57 -0800 Subject: [PATCH] update release notes --- docs/releases/1.2.0-ALPHA-release-notes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/releases/1.2.0-ALPHA-release-notes.md b/docs/releases/1.2.0-ALPHA-release-notes.md index ba67788..5751498 100644 --- a/docs/releases/1.2.0-ALPHA-release-notes.md +++ b/docs/releases/1.2.0-ALPHA-release-notes.md @@ -14,12 +14,12 @@ This release brings a whole host of new features to Gooey. Chief among them are ### New Features -* **Dynamic Updates and Validation** - Checkout the [README](https://github.com/chriskiehl/Gooey/blob/master/README.md) for details on how to get started. This feature is really hairy behind the scenes and involves all kinds of crazy monkey patching in order to work. Odds of encountering a bug or scenario that doesn't work for your use case is high in this initial release. Please fill out an issue if any problems pop up! +* **Dynamic Updates and Validation** - Checkout the [README](https://github.com/chriskiehl/Gooey/blob/master/README.md) for details on how to get started. This feature is really hairy behind the scenes and involves all kinds of crazy monkey patching in order to work. Odds of encountering a bug or scenario that doesn't work for your use case is high in this initial release. Please fill out an issue if any problems pop up! Checkout [the examples repo](https://github.com/chriskiehl/GooeyExamples/blob/master/examples/lifecycle_hooks.py) to see the new lifecycle hooks in action. * **Graceful Shutdown control** - Gooey previously would `SIGTERM` your application when you tried to halt it while running. However, with 1.2.0, you have control over which signal Gooey sends when you request a shutdown. This gives you a chance to catch that signal and clean up and resources currently un use before shutting down. * **Better sys.argv handling** - Gooey no longer mutates the global sys.argv variable. This caused people all kinds of problems -- most frequent being Gooey spawning multiple windows. This is now removed, and hopefully all the pain stemming from it as well. -TODO: rewx: document toubleshoot for when custom controlled component has its children disappear (i.e. add "self_managed=True) +