From b2e60d725b99926dec1135e413af523812a9d0d5 Mon Sep 17 00:00:00 2001 From: Evgeny Date: Mon, 27 May 2024 17:47:24 +0400 Subject: [PATCH] Update README --- CHANGELOG.md | 19 +++++++++++++++++++ README.md | 24 +++++------------------- 2 files changed, 24 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 253a10f..b3cb41e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +### 5.2.3 + +* Added `on_load()` callback +* Added `on_resume_when_folding` meta tag + +### 5.2.1 + +* Added support for complex UIs +* Added `ui:set_progress()` function + +### 5.2.0 + +* Added `widgets` module to app widgets interaction + +### 5.1.0 + +* Added `add_purchase` action +* Added `on_contacts_loaded()` callback + ### 4.9.4 * The `aio:actions()` function now also returns arguments format for each action diff --git a/README.md b/README.md index e8d285c..134d361 100644 --- a/README.md +++ b/README.md @@ -25,31 +25,16 @@ The type of script is determined by the line (meta tag) at the beginning of the # Changelog +### 5.3.1 + +* Added `string:trim()`, `string:starts_with()` and `string:ends_with()` methods + ### 5.3.0 * Added `prefs:show_dialog` method * Added `system:show_notify()` and `system:cancel_notify()` methods * Added support for SVG icons to the Rich UI API -### 5.2.3 - -* Added `on_load()` callback -* Added `on_resume_when_folding` meta tag - -### 5.2.1 - -* Added support for complex UIs -* Added `ui:set_progress()` function - -### 5.2.0 - -* Added `widgets` module to app widgets interaction - -### 5.1.0 - -* Added `add_purchase` action -* Added `on_contacts_loaded()` callback - [Full changelog](CHANGELOG.md) # Widget scripts @@ -126,6 +111,7 @@ The list output functions support HTML and Markdown (see User Interface section ## User Interface _Available only in widget scripts._ +_AIO Launcher also offers a way to create more complex UIs: [instructions](README_RICH_UI.md)_ * `ui:show_text(string)` - displays plain text in widget, repeated call will erase previous text; * `ui:show_lines(table, [table], [folded_string])` - displays a list of lines with the sender (in the manner of a mail widget), the second argument (optional) - the corresponding senders (formatting in the style of a mail widget), folded\_string (optional) - string to be shown in folded mode;