diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 3a3a993c7..a7a75d584 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -14,6 +14,10 @@ and this project adheres to http://semver.org/spec/v2.0.0.html[Semantic Versioni - Changed the workflow for the development versions of RIDE. Now, development versions are taken from the ``develop`` branch, and the ``master`` will stay with released version. - Changed the way ``configobj`` code is imported. Now is a submodule obtained from https://github.com/DiffSK/configobj. +=== Fixed + +- Fixed long arguments in fixtures appearing splitted in Grid Editor. Still, arguments info will not be correct at calling step. + == https://github.com/robotframework/RIDE/blob/master/doc/releasenotes/ride-2.1.rst[2.1] - 2024-10-13 === Added diff --git a/src/robotide/application/CHANGELOG.html b/src/robotide/application/CHANGELOG.html index e526208ef..d7315a655 100644 --- a/src/robotide/application/CHANGELOG.html +++ b/src/robotide/application/CHANGELOG.html @@ -4,6 +4,8 @@ Changed the workflow for the development versions of RIDE. Now, development versions are taken from the ``develop`` branch, and the ``master`` will stay with released version.
  • Changed the way ``configobj`` code is imported. Now is a submodule obtained from https://github.com/DiffSK/configobj. +
  • 1.2. Fixed

    2. 2.1 - 2024-10-13

    2.1. Added

      (2.1 - 2024-10-13)
     - Added a setting for a specific Browser by editing the settings.cfg file. Add the string parameter
     ``browser`` in the section ``[Plugins][[Test Runner]]``.
    @@ -90,7 +92,7 @@
     - Changed alias marker on library imports to consider variable ``ROBOT_VERSION``. If version is lower than 6.0, uses ``'WITH NAME'``, otherwise will use ``'AS'``
       (2.0.3 - 2023-04-16)
     - Allow to do auto-suggestions of keywords in Grid Editor without a shortcut, if you want to enable or disable this feature you can config in `Tools-> Preferences -> Grid Editor -> Enable auto suggestions`
    -- Made ``\\n`` visible when editing cells in Grid Editor (problematic in Windows)

    2.3. Fixed

      (2.1 - 2024-10-13)
    +- Made ``\\n`` visible when editing cells in Grid Editor (problematic in Windows)

    2.3. Fixed

      (2.1 - 2024-10-13)
     - Fixed recognition of variables imported from YAML, JSON and Python files.
       (2.1b1 - 2024-09-21)
     - Fixed validation of multiple arguments with default values in Grid Editor.
    @@ -149,7 +151,7 @@
     The color of the caret is the same as setting and will be adjusted for better contrast with the background.
     

    3.2. Changed

    3.3. Fixed

    3.3. Fixed

    4.2. Fixed

    4.2. Fixed

    5.2. Fixed

    5.2. Fixed

    6.2. Fixed

    6.2. Fixed

    8.2. Changed

    9. Fixed

    9. Fixed

    10. 2.0.3 - 2023-04-16

    10.1. Changed

    • Allow to do auto-suggestions of keywords in Grid Editor without a shortcut, if you want to enable or disable this feature you can config in Tools-> Preferences -> Grid Editor -> Enable auto suggestions
    • Made ``\\n`` visible when editing cells in Grid Editor (problematic in Windows) -

    11. Fixed

    11. Fixed

    12.4. Fixed

      (2.0rc1 - 2023-02-26)
    +- Separated AppendText for Messages Log

    12.4. Fixed

      (2.0rc1 - 2023-02-26)
     - Fixed blank Grid Editor at keywords with steps commented with ``\# ``, by using ``Ctrl-Shift-3 on Text Editor
       (2.0b3 - 2023-01-15)
     . Fixed low performance when opening large projects
    @@ -511,7 +513,7 @@
     Added move up and move down rows to Text Editor, by using ``Alt-Up`` and ``Alt-Down``
     
  • Added insert and delete rows to Text Editor, by using ``Ctrl-I`` and ``Ctrl-D`` -
  • 13.2. Removed

    13.3. Changed

    13.4. Fixed

    13.2. Removed

    13.3. Changed

    13.4. Fixed

    14. 2.0b3 - 2023-01-15

    14.1. Added

    • Added swap row up, by using ``Ctrl-T`` @@ -528,7 +530,7 @@ This was causing not being possible to restore it, unless editing the settings.cfg file. Other reason was to prevent user to closing it, after detaching the panel, and re-attaching, which has a bug making the Tree not visible. -

    14.4. Fixed

    1. +

    14.4. Fixed

    1. Fixed low performance when opening large projects

      • Fixed comment and uncomment in Grid Editor when cells contain more than one variables assignement @@ -638,7 +640,7 @@ Changed Enter button in navigation mode to start editing cell, and to move to right cell when in edit mode
      • Performance improvements for loading large test suites -

    15.4. Fixed

    • +

    15.4. Fixed

    • Fixed missing menu icons on Linux (was working on Windows)
    • Fixed removal of animation in Project tree when test run is interrupted @@ -747,7 +749,7 @@ wx.NewId() to wx.NewIdRef()
    • Separated AppendText for Messages Log -

    16.4. Fixed

    • +

    16.4. Fixed

    • Fixed editing cells in Grid Editor on wxPython 4.1
    • Fixed not saving file after deleting text in Text Editor @@ -813,6 +815,6 @@ None

    17.3. Changed

    • None -

    17.4. Fixed

    • +

    17.4. Fixed

    • None
    diff --git a/src/robotide/application/releasenotes.py b/src/robotide/application/releasenotes.py index 63a391bfe..c9f02d849 100644 --- a/src/robotide/application/releasenotes.py +++ b/src/robotide/application/releasenotes.py @@ -149,7 +149,7 @@ def set_content(self, html_win, content):

    RIDE (Robot Framework IDE) - {VERSION} is a new release with important enhancements and bug fixes. The reference for valid arguments is + {VERSION} is a new release with some enhancements and bug fixes. The reference for valid arguments is Robot Framework installed version, which is at this moment 7.1.1. However, internal library code is originally based on version 3.1.2, but adapted for new versions.

    @@ -169,6 +169,9 @@ def set_content(self, html_win, content):

    New Features and Fixes Highlights