diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index e9ddb757e..610e37df9 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 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. - Fixed Tab spacing in Text Editor. When pressing tab the expected spaces were not written, causing failing steps. diff --git a/README.adoc b/README.adoc index c5575bc72..c993e0653 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.5dev5**) with: +(3.9 <= python <= 3.14) Install current development version (**2.2.5dev6**) with: `pip install -U https://github.com/robotframework/RIDE/archive/develop.zip` diff --git a/src/robotide/application/releasenotes.py b/src/robotide/application/releasenotes.py index 1673a032c..7b6263127 100644 --- a/src/robotide/application/releasenotes.py +++ b/src/robotide/application/releasenotes.py @@ -170,8 +170,6 @@ def set_content(self, html_win, content):
  • 🐞 - The feature Auto-Save may cause a crash of RIDE in certain systems. This was experienced in AlmaLinux 9.6 with Gnome Unity, Python 3.13 and wxPython 4.2.3. The files are correctly saved, but RIDE closes. It is recommended to set the Auto-Save time as zero if this happens.
  • 🐞 - In Grid Editor, when showing settings, scrolling down with mouse or using down is not working. You can change to Text Editor and back to Grid Editor, to restore normal behavior.
  • -
  • 🐞 - In Files Explorer, when in floating window, the files tree is not always using all available space. - Do a small resize of window to redraw.
  • 🐞 - The Test Suites Explorer, may be visible or hidden with F12, or toggled floating/docked, but content may disappear. You should try to make it reappear by toggling Files Explorer, F11, or by editing settings.cfg.
  • @@ -179,6 +177,7 @@ def set_content(self, html_win, content):

    New Features and Fixes Highlights