diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc
index 3778e4002..7eb5d6926 100644
--- a/CHANGELOG.adoc
+++ b/CHANGELOG.adoc
@@ -6,7 +6,26 @@ All notable changes to this project will be documented in this file.
The format is based on http://keepachangelog.com/en/1.0.0/[Keep a Changelog]
and this project adheres to http://semver.org/spec/v2.0.0.html[Semantic Versioning].
-
+== https://github.com/robotframework/RIDE[Unreleased]
+
+=== Added
+- Added syntax colorization for the ``GROUP`` marker.
+- Added on Text Editor, tab indentation markers and ``tab markers`` boolean setting with default ``True``.
+- Added on Text Editor, folding margin with markers style configurable with ``fold symbols`` in settings.cfg.
+
+=== Changed
+- Better Search element in Text Editor which allows to be cleared.
+- When saving in Text Editor, the cursor remains at position, instead of jumping to Tree selection.
+- Improved autocompletion lists, by using existing words in Test Suite file (still needs more improvements).
+- Create directories when needed in New Project dialog.
+- Improved the recognition of BDD/Gherkin prefixes when localized in autocomplete on Grid Editor.
+- Improved colorization for multiple Gherkin words, for example in the French language.
+
+=== Fixed
+- Fixed not set text color on row labels in Grid Editor. Now the General ``secondary foreground`` is applied.
+- Fixed multiple scroll bars in Grid Editor when editing Test Cases or Keywords. This caused bad navigation on cells.
+- Regression fix from v2.1b1 - Fix wrong item selection, like Test Suite, when doing right-click actions in Project Explorer.
+ When right clicking over Tree elements, to, for example, expand or select tests, we want to keep the Editor in the same file or position.
== https://github.com/robotframework/RIDE/blob/master/doc/releasenotes/ride-2.1.2.rst[2.1.2] - 2025-01-28
diff --git a/README.adoc b/README.adoc
index 73f17fe2d..5a5a34780 100644
--- a/README.adoc
+++ b/README.adoc
@@ -31,16 +31,16 @@ See the https://github.com/robotframework/RIDE/blob/master/doc/releasenotes/ride
**Version https://github.com/robotframework/RIDE/tree/release/1.7.4.2[1.7.4.2] was the last release supporting Python 2.7**
-**The current development version is based on 2.1,2, supports Python from 3.8 up to 3.13 (28th January 2025).**
+**The current development version is based on 2.1.2, supports Python from 3.8 up to 3.13 (28th January 2025).**
-Currently, the unit tests are tested on Python 3.10, 3.11 and 3.13 (but 3.12 is the recommended version).
+Currently, the unit tests are tested on Python 3.10, 3.11 and 3.13 (3.13 is the recommended version).
Likewise, the current version of wxPython, is 4.2.2, but RIDE is known to work with 4.0.7 and 4.1.1 versions.
-(3.8 <= python <= 3.12) Install current released version (*2.1.2*) with:
+(3.8 <= python <= 3.13) Install current released version (*2.1.2*) with:
`pip install -U robotframework-ride`
-(3.8 <= python <= 3.13) Install current development version (**2.1.2**) with:
+(3.8 <= python <= 3.13) Install current development version (**2.2dev14**) with:
`pip install -U https://github.com/robotframework/RIDE/archive/develop.zip`
diff --git a/sonar-project.properties b/sonar-project.properties
index 577aed89c..f6eda1cb4 100644
--- a/sonar-project.properties
+++ b/sonar-project.properties
@@ -2,7 +2,7 @@ sonar.projectKey=HelioGuilherme66_RIDE
sonar.organization=helioguilherme66
sonar.host.url=https://sonarcloud.io
sonar.python.version=3.10
-sonar.projectVersion=v2.1
+sonar.projectVersion=v2.1.3
sonar.sources=src/
sonar.tests=utest/
sonar.exclusions=**/lib/robot/**/*
diff --git a/src/robotide/__init__.py b/src/robotide/__init__.py
index e25e8e9f5..395fd19f7 100644
--- a/src/robotide/__init__.py
+++ b/src/robotide/__init__.py
@@ -136,7 +136,7 @@ def writelines(self, sequence):
""" Override """
pass
- if sys.executable.endswith('pythonw.exe'):
+ if sys.executable.endswith('.exe'):
# In windows, when launching RIDE with pythonw.exe
# sys.stderr and sys.stdout will be None
if sys.stderr is None:
diff --git a/src/robotide/application/CHANGELOG.html b/src/robotide/application/CHANGELOG.html
index 4d8d7a7c1..cb4e62bc7 100644
--- a/src/robotide/application/CHANGELOG.html
+++ b/src/robotide/application/CHANGELOG.html
@@ -1,18 +1,43 @@
Changelog
Changelog
All notable changes to this project will be documented in this file.
+Added syntax colorization for the ``GROUP`` marker.
+
+Added on Text Editor, tab indentation markers and ``tab markers`` boolean setting with default ``True``.
+
+Added on Text Editor, folding margin with markers style configurable with ``fold symbols`` in settings.cfg.
+
1.2. Changed
+Better Search element in Text Editor which allows to be cleared.
+
+When saving in Text Editor, the cursor remains at position, instead of jumping to Tree selection.
+
+Improved autocompletion lists, by using existing words in Test Suite file (still needs more improvements).
+
+Create directories when needed in New Project dialog.
+
+Improved the recognition of BDD/Gherkin prefixes when localized in autocomplete on Grid Editor.
+
+Improved colorization for multiple Gherkin words, for example in the French language.
+
1.3. Fixed
+Fixed not set text color on row labels in Grid Editor. Now the General ``secondary foreground`` is applied.
+
+Fixed multiple scroll bars in Grid Editor when editing Test Cases or Keywords. This caused bad navigation on cells.
+
+Regression fix from v2.1b1 - Fix wrong item selection, like Test Suite, when doing right-click actions in Project Explorer.
+ When right clicking over Tree elements, to, for example, expand or select tests, we want to keep the Editor in the same file or position.
+
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.
(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]]``.
(2.1b1 - 2024-09-21)
@@ -67,7 +92,7 @@
- Added ``FOR`` scope markers (``IN``, ``IN RANGE``, ``IN ENUMERATE``, ``IN ZIP``) to auto-complete list
- Added support to read environment variable ``ROBOT_VERSION`` to apply some conditions.
- Added note on Test Timeout that **timeout message** is not supported since Robot v3.0.1
-- Added the note, 'Colors will be active after next RIDE restart.' to the Preferences of Test Runner.
3.2. Changed
(2.1 - 2024-10-13)
+- Added the note, 'Colors will be active after next RIDE restart.' to the Preferences of Test Runner.
4.2. Changed
(2.1 - 2024-10-13)
- Changed the order of insert and delete rows in Grid Editor rows context menu.
(2.1b1 - 2024-09-21)
- Allow to do auto-suggestions of keywords in Text Editor without a shortcut, if you want to enable or disable this feature you can config in `Tools -> Preferences -> Text Editor -> Enable auto suggestions`.
@@ -98,7 +123,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)
3.3. Fixed
(2.1 - 2024-10-13)
+- Made ``\\n`` visible when editing cells in Grid Editor (problematic in Windows)
4.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.
@@ -146,18 +171,18 @@
- Fixed clearing or emptying fixtures (Setups, Teardowns), now removes headers and synchronizes Text Editor
- Fixed selection and persistance of colors in File Explorer and Project Tree panels
- Fixed not using defined color for help and HTML content
-- Fixed missing newlines in sections separation
3.4. Removed
(2.1a3 - 2024-07-22)
+- Fixed missing newlines in sections separation
4.4. Removed
(2.1a3 - 2024-07-22)
- Removed support for HTML file format (obsolete since Robot Framework 3.2)
-- Removed support for old Python versions, 3.6 nd 3.7.
Added color to Test Runner Console Log final output, report and log since RF v7.1rc1.
Added Korean language support for UI, experimental.
Added option ``caret style`` to change insert caret to block or line in Text Editor, by editing ``settings.cfg``.
The color of the caret is the same as setting and will be adjusted for better contrast with the background.
-
4.2. Changed
+
5.2. Changed
Allow to do auto-suggestions of keywords in Text Editor without a shortcut, if you want to enable or disable this feature you can config in Tools -> Preferences -> Text Editor -> Enable auto suggestions.
-
4.3. Fixed
+
5.3. Fixed
Fixed validation of multiple arguments with default values in Grid Editor.
Fixed on Text Editor when Saving the selection of tests to run in Test Suites (Tree) is cleared.
@@ -167,7 +192,7 @@
Fixed delete variable from Test Suite settings remaining in Project Explorer.
Fixed obsfuscation of Libraries and Metadata panels when expanding Settings in Grid Editor and Linux systems.
-
Added support for Setup in keywords, since Robot Framework version 7.0.
Added support for new VAR marker, since Robot Framework version 7.0.
@@ -208,7 +233,7 @@
Tooltips for the fields are always shown in English.
Colorization for language configured files is working in Text Editor.
-
5.2. Fixed
+
6.2. Fixed
Fixed multiline variables in Variables section. In Text Editor they are separated by … continuation marker.
In Grid Editor use | (pipe) to separate lines.
@@ -223,7 +248,7 @@
Fixed wrong continuation of long chains of keywords in Setups, Teardowns or Documentation
Fixed New User Keyword dialog not allowing empty Arguments field
-
5.3. Changed
+
6.3. Changed
Improved release packaging of RIDE, by using entry_points in setuptools configuration.
Parsing of clipboard content to separate by cells in Grid Editor. NOTE: Need to Apply Changes in Text Editor to be effective.
@@ -231,11 +256,11 @@
Improved selection of items from Tree in Text Editor. Now finds more items and selects whole line.
Changed output in plugin Run Anything (Macros) to allow Zoom In/Out, and Copy content.
-
5.4. Removed
+
6.4. Removed
Removed support for HTML file format (obsolete since Robot Framework 3.2)
Removed support for old Python versions, 3.6 nd 3.7.
-
Added auto update check when development version is installed
Added menu option ``Help→Check for Upgrade`` which allows to force update check and install development version
@@ -254,7 +279,7 @@
Added variables creation shortcuts (``Ctrl-1,2,5``) to fields Arguments in Grid Editor
Added support for JSON variables, by using the installed Robot Framework import method
-
6.2. Fixed
+
7.2. Fixed
Fixed escaped spaces showing in Text Editor on commented cells
Fixed resource files dissapearing from Project tree on Windows
@@ -272,7 +297,7 @@
Position of cursor in Text Editor auto-suggestions when line contains multibyte characters
Drag and drop of variables defined with comments between resource files
-
6.3. Changed
+
7.3. Changed
Improved keywords documentation search, by adding current dir to search
Improved Move up/down, ``Alt-UpArrow``/``Alt-DownArrow`` in Text Editor, to have proper indentation and selection
@@ -288,14 +313,14 @@
Improved keyword ``Find Usages`` to return more matches. Fails to find mixed spaces and ``_``
In Grid Editor ``Ctrl-Shift-4`` now replaces escaped spaces ``\\ `` by spaces
-
Added indication of matching brackets, ``()``, ``{}``, ``[]``, in Text Editor
Added context menu to RIDE tray icon. Options Show, Hide and Close
Added sincronization with Project Explorer to navigate to selected item, Test Case, Keyword, Variable, in Text Editor
Note: This feature is working fine in Fedora 38, but not on Windows and macOS.
-
7.2. Fixed
+
8.2. Fixed
Fixed non syncronized expanding/collapse of Settings panel in Grid Editor, on Linux
Fixed not working the deletion of cells commented with ``\# `` in Grid Editor with ``Ctrl-Shift-D``
@@ -309,17 +334,17 @@
Fixed title of User Keyword in Grid Editor always showing ``Find Usages`` instead of the keyword name
Fixed renaming keywords when they were arguments of ``Run Keywords`` in Setups and Teardowns
-
7.3. Changed
+
8.3. Changed
Improve Text Editor auto-suggestions to keep libraries prefixes.
-
Added ``FOR`` scope markers (``IN``, ``IN RANGE``, ``IN ENUMERATE``, ``IN ZIP``) to auto-complete list
Added support to read environment variable ``ROBOT_VERSION`` to apply some conditions.
@@ -327,15 +352,15 @@
Added note on Test Timeout that timeout message is not supported since Robot v3.0.1
Added the note, Colors will be active after next RIDE restart. to the Preferences of Test Runner.
-
9.2. Changed
+
10.2. Changed
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``
-
10. Fixed
+
11. Fixed
Fixed auto-indent on block commands in Text Editor
-
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)
-
12. Fixed
+
13. Fixed
Fixed missing auto-enclosing when in Cell Editor in Linux
Fixed RIDE will crash when using third party input method in Mac OS
@@ -349,7 +374,7 @@
Fixed not using defined color for help and HTML content
(2.0rc1 - 2023-02-26)
- Minimal support to accept `*** Comments ***` sections (unfinished code)
- Added insert and delete cells to Text Editor, by using ``Ctrl-Shift-I`` and ``Ctrl-Shift-D``
- Added move up and move down rows to Text Editor, by using ``Alt-Up`` and ``Alt-Down``
@@ -402,13 +427,13 @@
- Added enclosing text in Text Editor or selected text with certain symbols
- Added enclosing text in Grid Editor or selected text with certain symbols
- Added 8s timer to shortcut creation dialog on install
-- Added process memory limit on Messages Log
13.2. Removed
(2.0b2 - 2022-09-05)
+- Added process memory limit on Messages Log
14.2. Removed
(2.0b2 - 2022-09-05)
- Removed ``robotframeworklexer`` dependency and local copy
- Removed alignment flag on grid cell JSON Editor (Ctrl-Shift-J)
- Removed moving to keyword/variable definition when doing Double-Click in grid cell
(2.0b1 - 2020-07-26)
- Python 2.7 support
-- wxPython/wxPhoenix version conditioning
13.3. Changed
(2.0b3 - 2023-01-15)
+- wxPython/wxPhoenix version conditioning
14.3. Changed
(2.0b3 - 2023-01-15)
- Hiding items in Test Suites explorer with names starting with #
- Disabled the Close button on the Test Suites explorer
This was causing not being possible to restore it, unless editing the settings.cfg file.
@@ -437,7 +462,7 @@
- Changed icon background to white
- Made Project Tree and File Explorer panels, Plugins.
- wx.NewId() to wx.NewIdRef()
-- Separated AppendText for Messages Log
13.4. Fixed
(2.0rc1 - 2023-02-26)
+- Separated AppendText for Messages Log
14.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 +536,7 @@
- Fixed Settings editor
- Fixed blank Edit screen
- Fixed Runner arguments parsing
-- Fixed Runner Log window Chinese and Latin encoding chars on Windows
Minimal support to accept *** Comments *** sections (unfinished code)
Added insert and delete cells to Text Editor, by using ``Ctrl-Shift-I`` and ``Ctrl-Shift-D``
@@ -519,30 +544,30 @@
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``
-
14.2. Removed
14.3. Changed
14.4. Fixed
+
15.2. Removed
15.3. Changed
15.4. Fixed
Fixed blank Grid Editor at keywords with steps commented with ``\# ``, by using ``Ctrl-Shift-3 on Text Editor
-
Added commenting/uncommenting of content with ``\# ``, by using ``Ctrl-Shift-3`` and ``Ctrl-Shift-4``
Added support for editing .robot and .resource files with content before sections
-
15.2. Removed
+
16.2. Removed
None
-
15.3. Changed
+
16.3. Changed
Hiding items in Test Suites explorer with names starting with #
Disabled the Close button on the Test Suites explorer
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.
-
15.4. Fixed
+
16.4. Fixed
Fixed low performance when opening large projects
Fixed comment and uncomment in Grid Editor when cells contain more than one variables assignement
Fixed console log stopping to output certain characters, like chinese and latin
-
Added menu entry at Help → Offline Change Log to view this file on disk
Added skipped tests counter and corresponding colored icon on Project tree
@@ -610,13 +635,13 @@
When editing, Ctrl-Home and Ctrl-End move cursor to start and end of cell content respectively.
Added Del key to clear Grid Editor cell content when in navigation mode (clear like doing Ctrl-X)
-
16.2. Removed
+
17.2. Removed
Removed ``robotframeworklexer`` dependency and local copy
Removed alignment flag on grid cell JSON Editor (Ctrl-Shift-J)
Removed moving to keyword/variable definition when doing Double-Click in grid cell
-
16.3. Changed
+
17.3. Changed
Unit tests to use ``pytest`` and removed ``nose`` dependency. Support for Python 3.10 at unit test level.
Prevent expanding Tests and change selection on Project tree (when right-clicking)
@@ -646,7 +671,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
-
16.4. Fixed
+
17.4. Fixed
Fixed missing menu icons on Linux (was working on Windows)
Fixed removal of animation in Project tree when test run is interrupted
@@ -719,7 +744,7 @@
Fixed RIDE startup crash when Tree or File Explorer plugins use opened=False setting
Fixed error occurring when deleting test cases on Tree
-
RIDE (Robot Framework IDE)
{VERSION} is a new release with some enhancements and bug fixes. The reference for valid arguments is
Robot Framework previous version, which was 7.1.1
- (currently is 7.2). However, internal library code is originally based on version 3.1.2, but adapted for new versions.
+ (currently is 7.2.2). However, internal library code is originally based on version 3.1.2, but adapted for new versions.