|
| 1 | +.. container:: document |
| 2 | + |
| 3 | + `RIDE (Robot Framework |
| 4 | + IDE) <https://github.com/robotframework/RIDE/>`__ v2.2.1 is a new |
| 5 | + release with some enhancements and bug fixes. The reference for valid |
| 6 | + arguments is `Robot Framework <https://robotframework.org/>`__ |
| 7 | + current version, 7.3.2. However, internal library code is originally |
| 8 | + based on version 3.1.2, but adapted for new versions. |
| 9 | + |
| 10 | + - This version supports Python 3.9 up to 3.13 (and also tested on |
| 11 | + 3.14 with wxPython 4.2.3). |
| 12 | + - There are some changes, or known issues: |
| 13 | + |
| 14 | + - 🐞 - Rename Keywords, Find Usages/Find where used are not |
| 15 | + finding all occurrences. Please, double-check findings and |
| 16 | + changes. |
| 17 | + - 🐞 - Some argument types detection (and colorization) is not |
| 18 | + correct in Grid Editor. |
| 19 | + - 🐞 - In Grid Editor, private keywords defined in test suites |
| 20 | + with **Name** setting, will show with error color even if used |
| 21 | + correctly in another local keyword. |
| 22 | + - 🐞 - RIDE **DOES NOT KEEP** Test Suites formatting or |
| 23 | + structure, causing differences in files when used on other IDE |
| 24 | + or Editors. The option to not reformat the file is not working. |
| 25 | + - 🐞 - In Grid Editor, when showing settings, scrolling down with |
| 26 | + mouse or using down is not working. You can change to Text |
| 27 | + Editor and back to Grid Editor, to restore normal behavior. |
| 28 | + - 🐞 - In Files Explorer, the size of the files tree is not |
| 29 | + always using all available space. |
| 30 | + |
| 31 | + **New Features and Fixes Highlights** |
| 32 | + |
| 33 | + - Added context menu to File Explorer, to Open test suites |
| 34 | + directories or test suites files (also with double-click). |
| 35 | + - Added context menu option to Open Containing Folder, in operating |
| 36 | + system file explorer, or specific tool. |
| 37 | + - Added Config Panel button to File Explorer plugin. Here, you can |
| 38 | + set the operating system file explorer, or specify other tool, the |
| 39 | + Font style, and Colors. |
| 40 | + - Fixed persistance of the state docked/floating of File Explorer. |
| 41 | + - Fixed Cut (Ctrl-X) when editing the content of a cell in Grid |
| 42 | + Editor, before was deleting all content. |
| 43 | + |
| 44 | + **The minimal wxPython version is, 4.0.7, and RIDE supports the |
| 45 | + current version, 4.2.3, which we recommend.** |
| 46 | + |
| 47 | + *Linux users are advised to install first wxPython from .whl package |
| 48 | + at* |
| 49 | + `wxPython.org <https://extras.wxpython.org/wxPython4/extras/linux/gtk3/>`__, |
| 50 | + or by using the system package manager. |
| 51 | + |
| 52 | + The |
| 53 | + `CHANGELOG.adoc <https://github.com/robotframework/RIDE/blob/master/CHANGELOG.adoc>`__ |
| 54 | + lists the changes done on the different versions. |
| 55 | + |
| 56 | + All issues targeted for RIDE v2.2 can be found from the `issue |
| 57 | + tracker |
| 58 | + milestone <https://github.com/robotframework/RIDE/issues?q=milestone%3Av2.2>`__. |
| 59 | + |
| 60 | + Questions and comments related to the release can be sent to the |
| 61 | + `robotframework-users <https://groups.google.com/group/robotframework-users>`__ |
| 62 | + mailing list or to the channel #ride on `Robot Framework |
| 63 | + Slack <https://robotframework-slack-invite.herokuapp.com>`__, and |
| 64 | + possible bugs submitted to the `issue |
| 65 | + tracker <https://github.com/robotframework/RIDE/issues>`__. You |
| 66 | + should see `Robot Framework |
| 67 | + Forum <https://forum.robotframework.org/c/tools/ride/>`__ if your |
| 68 | + problem is already known. |
| 69 | + |
| 70 | + To install the latest release with |
| 71 | + `pip <https://pypi.org/project/pip/>`__ installed, just run |
| 72 | + |
| 73 | + .. code:: literal-block |
| 74 | +
|
| 75 | + pip install --upgrade robotframework-ride==2.2.1 |
| 76 | +
|
| 77 | + to install exactly the specified release, which is the same as using |
| 78 | + |
| 79 | + .. code:: literal-block |
| 80 | +
|
| 81 | + pip install --upgrade robotframework-ride |
| 82 | +
|
| 83 | + Alternatively you can download the source distribution from |
| 84 | + `PyPI <https://pypi.python.org/pypi/robotframework-ride>`__ and |
| 85 | + install it manually. For more details and other installation |
| 86 | + approaches, see the `installation |
| 87 | + instructions <https://github.com/robotframework/RIDE/wiki/Installation-Instructions>`__. |
| 88 | + If you want to help in the development of RIDE, by reporting issues |
| 89 | + in current development version, you can install with: |
| 90 | + |
| 91 | + .. code:: literal-block |
| 92 | +
|
| 93 | + pip install -U https://github.com/robotframework/RIDE/archive/develop.zip |
| 94 | +
|
| 95 | + Important document for helping with development is the |
| 96 | + `CONTRIBUTING.adoc <https://github.com/robotframework/RIDE/blob/develop/CONTRIBUTING.adoc>`__. |
| 97 | + |
| 98 | + To start RIDE from a command window, shell or terminal, just enter: |
| 99 | + |
| 100 | + :: |
| 101 | + |
| 102 | + ride |
| 103 | + |
| 104 | + You can also pass some arguments, like a path for a test suite file |
| 105 | + or directory. |
| 106 | + |
| 107 | + :: |
| 108 | + |
| 109 | + ride example.robot |
| 110 | + |
| 111 | + Another possible way to start RIDE is: |
| 112 | + |
| 113 | + .. code:: literal-block |
| 114 | +
|
| 115 | + python -m robotide |
| 116 | +
|
| 117 | + You can then go to Tools>Create RIDE Desktop Shortcut, or run the |
| 118 | + shortcut creation script with: |
| 119 | + |
| 120 | + .. code:: literal-block |
| 121 | +
|
| 122 | + python -m robotide.postinstall -install |
| 123 | +
|
| 124 | + or |
| 125 | + |
| 126 | + .. code:: literal-block |
| 127 | +
|
| 128 | + ride_postinstall.py -install |
| 129 | +
|
| 130 | + RIDE v2.2.1 was released on 01/December/2025. |
| 131 | + |
| 132 | + .. rubric:: Celebrate the bank holiday, 1st December, Restoration of |
| 133 | + the Independence of Portugal (from Spain in 1640)!! |
| 134 | + :name: celebrate-the-bank-holiday-1st-december-restoration-of-the-independence-of-portugal-from-spain-in-1640 |
| 135 | + |
| 136 | + .. rubric:: 🇵🇹 |
| 137 | + :name: section |
0 commit comments