diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 66c05741d..24e0fac47 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -9,6 +9,7 @@ and this project adheres to http://semver.org/spec/v2.0.0.html[Semantic Versioni == https://github.com/robotframework/RIDE[Unreleased] === Fixed +- Fix selection of items (variables, test names, keywords) from Project Explorer and highlight at Text Editor. - Fixed Tab spacing in Text Editor. When pressing tab the expected spaces were not written, causing failing steps. == https://github.com/robotframework/RIDE/blob/master/doc/releasenotes/ride-2.2.4.rst[2.2.4] - 2026-07-09 diff --git a/README.adoc b/README.adoc index 130c48946..7b05c8336 100644 --- a/README.adoc +++ b/README.adoc @@ -46,7 +46,7 @@ Likewise, the current version of wxPython, is 4.2.5, but RIDE is known to work w `pip install -U robotframework-ride` -(3.9 <= python <= 3.14) Install current development version (**2.2.5dev2**) with: +(3.9 <= python <= 3.14) Install current development version (**2.2.5dev3**) with: `pip install -U https://github.com/robotframework/RIDE/archive/develop.zip` diff --git a/src/robotide/application/CHANGELOG.html b/src/robotide/application/CHANGELOG.html index b83ebc4e3..6c74c5cc1 100644 --- a/src/robotide/application/CHANGELOG.html +++ b/src/robotide/application/CHANGELOG.html @@ -1,6 +1,8 @@ Changelog

_Changelog


All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

_1.1. Fixed

  • +Fix selection of items (variables, test names, keywords) from Project Explorer and highlight at Text Editor. +
  • Fixed Tab spacing in Text Editor. When pressing tab the expected spaces were not written, causing failing steps.

_2. 2.2.4 - 2026-07-09

_2.1. Fixed

  • Fixed background assign setting in Grid Editor preferences. diff --git a/src/robotide/application/releasenotes.py b/src/robotide/application/releasenotes.py index df8f9d98a..83429b10d 100644 --- a/src/robotide/application/releasenotes.py +++ b/src/robotide/application/releasenotes.py @@ -179,6 +179,7 @@ def set_content(self, html_win, content):

New Features and Fixes Highlights

    +
  • Fix selection of items (variables, test names, keywords) from Project Explorer and highlight at Text Editor.
  • Fixed Tab spacing in Text Editor. When pressing tab the expected spaces were not written, causing failing steps.
  • Changed Auto-Save to only save when user is not typing, and if code is in error show message in status bar.
  • Applied STC_LEX colorization on Code Editor (external files editor).
  • @@ -236,7 +237,7 @@ def set_content(self, html_win, content):
    python -m robotide.postinstall -install

    or

    ride_postinstall.py -install
    -

    RIDE {VERSION} was released on 16/July/2026.

    +

    RIDE {VERSION} was released on 22/July/2026.