From f1b511e6756bff0a3909a7d3919621f9d530e61b Mon Sep 17 00:00:00 2001 From: rhenck <richard.henck@iqb.hu-berlin.de> Date: Tue, 29 Mar 2022 13:51:45 +0200 Subject: [PATCH] Update package versions --- docs/release-notes-editor.txt | 41 +++++++++++++++++++++++++++++++++++ docs/release-notes-player.txt | 8 +++++++ package.json | 4 ++-- 3 files changed, 51 insertions(+), 2 deletions(-) diff --git a/docs/release-notes-editor.txt b/docs/release-notes-editor.txt index 2c34264ff..e2bc4b702 100644 --- a/docs/release-notes-editor.txt +++ b/docs/release-notes-editor.txt @@ -1,5 +1,46 @@ Editor ====== +1.27.0 +- Implement page navigation action for buttons +- Improve wording for page width setting and show actual resulting page width +- Add link variant to button + This makes the button look like a text element. +- Add textfield option that restricts input to chars of the selected assistance +- Fix and Rework dynamic grid view + Dynamically layouted sections with dynamic row and columns sizes no longer + mistakenly show a predefined grid. (For a grid to be shown, info about either + existing elements within or explicit column/row sizes is needed. So the + dynamic grid can only be built after there are elements (with coordinates) + within.) + New elements no longer have initial grid coordinates and are therefore placed + outside (i.e. under) the grid. + Setting and manipulating element grid coordinates now has to be done mainly in + the properties panel. + The upside of this slight usability reduction is that it is now possible + to see an appropriate representation of the layout as it will appear in the + player. + + The grid coordinates have been simplified. Instead of defining the grid end + column/row you can now directly enter the column/row span. + + Drag-and-Drop-Resizing of grid elements was bugged beyond redemption and is + removed (for now). +- Fix text element's sub- and superscript to not implicitly increase line height +- Fix element selection to also select underlying section +- Make section menu only appear on selected sections +- Add option to show a software keyboard for text fields and text areas + This is an intermediary solution for mobile devices where the system keyboard + is not used. Note that setting this option does NOT automatically set the + field to read-only, which would be necessary to prevent the system keyboard + from appearing. + + There is an additional setting for showing french special characters on the + keyboard as well. This is to remove the necessity of using the keyboard AND + input assistance overlays. This might be extended to other character groups in + the future. +- Fix text fields within cloze elements to support all properties normal + text fields have, including input assistance and software keyboard. + 1.26.1 - Fix styling issues with some elements in version 1.26.0 diff --git a/docs/release-notes-player.txt b/docs/release-notes-player.txt index 5c9b14b21..b7fce697d 100644 --- a/docs/release-notes-player.txt +++ b/docs/release-notes-player.txt @@ -1,5 +1,13 @@ Player ====== +1.21.0 +- Implement page navigation action for buttons +- Prevent pasting in text fields and areas with math keyboard +- Implement link variant of the button component +- Implement textfield option to restrict characters of the selected assistance +- Add support for reworked grid parameters + Refer to Editor patch notes for 1.27.0 for additional info on reworked systems + 1.20.1 - Fix styling issues with some elements in version 1.20.0 diff --git a/package.json b/package.json index f7e602c44..bf5bc7aa6 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "name": "verona-modules-aspect", "config": { - "player_version": "1.20.1", - "editor_version": "1.26.1", + "player_version": "1.21.0", + "editor_version": "1.27.0", "unit_definition_version": "3.0.0" }, "scripts": { -- GitLab