diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index a2b784627..c825a808f 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -10,6 +10,7 @@ and this project adheres to http://semver.org/spec/v2.0.0.html[Semantic Versioni === Fixed +- 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. diff --git a/README.adoc b/README.adoc index 1113954d6..7e928c5e5 100644 --- a/README.adoc +++ b/README.adoc @@ -33,14 +33,14 @@ See the https://github.com/robotframework/RIDE/blob/master/doc/releasenotes/ride **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.2dev3**) with: +(3.8 <= python <= 3.13) Install current development version (**2.2dev4**) with: `pip install -U https://github.com/robotframework/RIDE/archive/develop.zip` diff --git a/sonar-project.properties b/sonar-project.properties index 577aed89c..cb118d2ae 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.2 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 db956f91c..597828edf 100644 --- a/src/robotide/application/CHANGELOG.html +++ b/src/robotide/application/CHANGELOG.html @@ -1,6 +1,10 @@
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.
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.New Features and Fixes Highlights
python -m robotide.postinstall -install
or
ride_postinstall.py -install-
RIDE {VERSION} was released on 30/January/2025.
+RIDE {VERSION} was released on 12/February/2025.