diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 319e63dc8..426073a83 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 +- Fixed broken directory selection dialog when opening Test Suite directory on first RIDE execution after install. - Fixed disappering Project Explorer tree elements, after editing directory elements (i.e. variable or keyword). - Fixed blank Project Explorer panel when docking. Long time existing issue. - Fixed bad resizing of File Explorer content when opening Test Suites. diff --git a/README.adoc b/README.adoc index d43e6bec5..f489dea5d 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.5dev8**) with: +(3.9 <= python <= 3.14) Install current development version (**2.2.5dev9**) 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 6febf0395..e3e5a3be8 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

  • +Fixed broken directory selection dialog when opening Test Suite directory on first RIDE execution after install. +
  • Fixed disappering Project Explorer tree elements, after editing directory elements (i.e. variable or keyword).
  • Fixed blank Project Explorer panel when docking. Long time existing issue. diff --git a/src/robotide/application/releasenotes.py b/src/robotide/application/releasenotes.py index c10f8caa1..f4843cdc2 100644 --- a/src/robotide/application/releasenotes.py +++ b/src/robotide/application/releasenotes.py @@ -175,6 +175,7 @@ def set_content(self, html_win, content):

New Features and Fixes Highlights

    +
  • Fixed broken directory selection dialog when opening Test Suite directory on first RIDE execution after install.
  • Fixed disappering Project Explorer tree elements, after editing directory elements (i.e. variable or keyword).
  • Fixed blank Project Explorer panel when docking. Long time existing issue.
  • Fixed bad resizing of File Explorer content when opening Test Suites.
  • @@ -237,7 +238,7 @@ def set_content(self, html_win, content):
    python -m robotide.postinstall -install

    or

    ride_postinstall.py -install
    -

    RIDE {VERSION} was released on 07/August/2026.

    +

    RIDE {VERSION} was released on 08/August/2026.