Update docs and changelog

This commit is contained in:
Insality
2025-09-27 13:52:47 +03:00
parent 9e29c0ebde
commit 181a0aab43
2 changed files with 21 additions and 12 deletions

View File

@@ -720,14 +720,23 @@ Please support me if you like this project! It will help me keep engaged to upda
- Update for using `defold-event` library v12
### Druid 1.2.0
- Fix for blocker internal enabled state depends from GUI node
- Move to druid colors for rich text
- Fix for container stretch mode (stretch and fit is not worked in init function)
- Add split_to_characters in rich text for making fancy text
- Druid GO Widgets now can wrap an events to (before only top level functions)
- Ability to pass params to Druid GO Widgets
- Update properties panel:
- Add "scenes" to manage a list of properties with back button support
- Add "refresh" button, which active a 1-sec refresh for current page
- Add "Render lua table" to easily render your lua tables with a various types support (any simple types and vector, functions, events etc)
- [Blocker] Fix for internal is_enabled state
- [Button] expose all click functions for the button
- [Scroll] Add `scroll_to_make_node_visible` function
- [Palette] Add Druid Color module
- Manage color palettes
- Color convertations
- Convenient usage
- [Container] Fix for container stretch mode (stretch and fit is not worked in init function)
- [Rich Text] Using color names from the palette
- [Rich Text] Add `rich_text:set_split_to_characters(true)` to split each letter node separately
- Weird implementation, but nice to have
- [Rich Text] Add `set_width` and `set_height` functions
- [GO Widgets] Now passes events and functions from the widget to the GO context
- [Layout] Add `set_position_function` function, similar to the Grid component
- [Properties Panel] Update with deep navigation support
- Add "Scenes" to manage a list of properties with back button support
- Add "Pages" to manage a a big lists of properties with paginations support
- Add `properties_panel:render_lua_table` to easily render your lua tables with a various types support (any simple types and vector, functions, events etc)
- Add "Refresh" button, which active a 1-sec refresh for current page

View File

@@ -1,8 +1,8 @@
# Memory and FPS Panel Widgets
The `Druid 1.1` comes with widgets and two included widgets are `Memory Panel` and `FPS Panel` which allow you to monitor memory and FPS in your game.
The `Druid 1.1` comes with two included widgets: `Memory Panel` and `FPS Panel`, which allow you to monitor memory and FPS in your game.
Widgets in Druid usually consists from two files: GUI, which is used to placed as a template on your GUI scene and Lua script, which is used to be created with Druid.
Widgets in Druid usually consist of two files: GUI, which is used to place as a template on your GUI scene and Lua script, which is used to be create with Druid.
<!-- Video -->