diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 4d17f0750..319e63dc8 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 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. - Fix selection of items (variables, test names, keywords) from Project Explorer and highlight at Text Editor. diff --git a/README.adoc b/README.adoc index d5f1527f0..d43e6bec5 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.5dev7**) with: +(3.9 <= python <= 3.14) Install current development version (**2.2.5dev8**) with: `pip install -U https://github.com/robotframework/RIDE/archive/develop.zip` diff --git a/rtest/testdir/Suite.robot b/rtest/testdir/Suite.robot index 78d0650e4..debc00e83 100644 --- a/rtest/testdir/Suite.robot +++ b/rtest/testdir/Suite.robot @@ -5,7 +5,7 @@ Library String *** Test Cases *** Test Case 1 - Some local keyword with arguments + Some local keyword with arguments # comment No Operation Some keyword from resource file 2 Should Be Empty ${EMPTY} 5 diff --git a/rtest/testdir/__init__.robot b/rtest/testdir/__init__.robot index 01c63325e..7385616cc 100644 --- a/rtest/testdir/__init__.robot +++ b/rtest/testdir/__init__.robot @@ -1,7 +1,6 @@ *** Settings *** -Documentation This is suite directory documentation -Force Tags force +Documentation This is suite directory documentation +Force Tags force *** Variables *** -${SCALAR} 1 - +${SCALAR} 1 diff --git a/rtest/testdir/resources/resu.txt b/rtest/testdir/resources/resu.txt index cb815b2df..f152a25ac 100644 --- a/rtest/testdir/resources/resu.txt +++ b/rtest/testdir/resources/resu.txt @@ -1,7 +1,7 @@ *** Keywords *** Some keyword from resource file [Arguments] ${argument} - [Documentation] This is documentation + [Documentation] This is documentation changed [Timeout] 1 second No Operation Log Something diff --git a/src/robotide/application/CHANGELOG.html b/src/robotide/application/CHANGELOG.html index eceb5e283..6febf0395 100644 --- a/src/robotide/application/CHANGELOG.html +++ b/src/robotide/application/CHANGELOG.html @@ -1,6 +1,8 @@
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.
New Features and Fixes Highlights
python -m robotide.postinstall -install
or
ride_postinstall.py -install-
RIDE {VERSION} was released on 01/August/2026.
+RIDE {VERSION} was released on 07/August/2026.