diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index fe9373b8b..f52283f9e 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -9,6 +9,8 @@ and this project adheres to http://semver.org/spec/v2.0.0.html[Semantic Versioni == https://github.com/robotframework/RIDE[Unreleased] === Added +- Added Settings Editor button to Preferences dialog, to edit settings.cfg. +- Created backup of settings.cfg to allow recovering some settings when broken upgrades. - Added current executing keyword and other statuses to TestRunner status bar. - Added Config Panel button to supported installed Plugins next to their name in Plugin Manager dialog. - Added Config Panel button to Plugins, working examples in Text Editor and Test Runner. diff --git a/README.adoc b/README.adoc index f4cd7bfb6..d795d7ec0 100644 --- a/README.adoc +++ b/README.adoc @@ -40,7 +40,7 @@ Likewise, the current version of wxPython, is 4.2.2, but RIDE is known to work w `pip install -U robotframework-ride` -(3.8 <= python <= 3.13) Install current development version (**2.2dev20**) with: +(3.8 <= python <= 3.13) Install current development version (**2.2dev21**) 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 8875306b5..43f32a356 100644 --- a/src/robotide/application/CHANGELOG.html +++ b/src/robotide/application/CHANGELOG.html @@ -1,6 +1,10 @@ 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. Added

  • +Added Settings Editor button to Preferences dialog, to edit settings.cfg. +
  • +Created backup of settings.cfg to allow recovering some settings when broken upgrades. +
  • Added current executing keyword and other statuses to TestRunner status bar.
  • Added Config Panel button to supported installed Plugins next to their name in Plugin Manager dialog. diff --git a/src/robotide/application/application.py b/src/robotide/application/application.py index f2ed6c06e..5c9d284a1 100644 --- a/src/robotide/application/application.py +++ b/src/robotide/application/application.py @@ -20,8 +20,6 @@ from contextlib import contextmanager from pathlib import Path -from pygments.styles.dracula import background - from ..namespace import Namespace from ..controller import Project from ..spec import librarydatabase diff --git a/src/robotide/application/releasenotes.py b/src/robotide/application/releasenotes.py index 22c6c2137..ac4073fd6 100644 --- a/src/robotide/application/releasenotes.py +++ b/src/robotide/application/releasenotes.py @@ -170,6 +170,8 @@ def set_content(self, html_win, content):

New Features and Fixes Highlights

    +
  • Added Settings Editor button to Preferences dialog, to edit settings.cfg.
  • +
  • Created backup of settings.cfg to allow recovering some settings when broken upgrades.
  • Changed some informative dialogs and JSON Editor to use the customized colors.
  • Added current executing keyword and other statuses to TestRunner status bar.
  • Modified import statements to allow running RIDE without Robot Framework installed or versions older than 6.0.
  • @@ -232,7 +234,7 @@ def set_content(self, html_win, content):
    python -m robotide.postinstall -install

    or

    ride_postinstall.py -install
    -

    RIDE {VERSION} was released on 12/April/2025.

    +

    RIDE {VERSION} was released on 14/April/2025.