|
| 1 | +.. container:: document |
| 2 | + |
| 3 | + `RIDE (Robot Framework |
| 4 | + IDE) <https://github.com/robotframework/RIDE/>`__ v2.1.2 is a new |
| 5 | + release with some enhancements and bug fixes. The reference for valid |
| 6 | + arguments is `Robot Framework <https://robotframework.org/>`__ |
| 7 | + previous version, which was 7.1.1 (currently is 7.2). However, |
| 8 | + internal library code is originally based on version 3.1.2, but |
| 9 | + adapted for new versions. |
| 10 | + |
| 11 | + - This version supports Python 3.8 up to 3.13. |
| 12 | + - There are some changes, or known issues: |
| 13 | + |
| 14 | + - 🐞 - When upgrading RIDE and activate Restart, some errors are |
| 15 | + visible about missing /language file, and behaviour is not |
| 16 | + normal. Better to close RIDE and start a new instance. |
| 17 | + - 🐞 - Problems with COPY/PASTE in Text Editor have been reported |
| 18 | + when using wxPython 4.2.0, but not with version 4.2.1 and |
| 19 | + 4.2.2, which we now *recommend*. |
| 20 | + - 🐞 - Rename Keywords, Find Usages/Find where used are not |
| 21 | + finding all occurrences. Please, double-check findings and |
| 22 | + changes. |
| 23 | + - 🐞 - Some argument types detection (and colorization) is not |
| 24 | + correct in Grid Editor. |
| 25 | + - 🐞 - RIDE **DOES NOT KEEP** Test Suites formatting or |
| 26 | + structure, causing differences in files when used on other IDE |
| 27 | + or Editors. The option to not reformat the file is not working. |
| 28 | + |
| 29 | + **New Features and Fixes Highlights** |
| 30 | + |
| 31 | + - *Partial fix* of no update of renaming resource prefixed keywords. |
| 32 | + Issue #1230 from 29 Jan 2013. |
| 33 | + - Fixed no recognition of keywords with embedded arguments and full |
| 34 | + name. Issue #1106 from 12 Sep 2012. |
| 35 | + |
| 36 | + **The minimal wxPython version is, 4.0.7, and RIDE supports the |
| 37 | + current version, 4.2.2, which we recommend.** |
| 38 | + |
| 39 | + *Linux users are advised to install first wxPython from .whl package |
| 40 | + at* |
| 41 | + `wxPython.org <https://extras.wxpython.org/wxPython4/extras/linux/gtk3/>`__, |
| 42 | + or by using the system package manager. |
| 43 | + |
| 44 | + The |
| 45 | + `CHANGELOG.adoc <https://github.com/robotframework/RIDE/blob/master/CHANGELOG.adoc>`__ |
| 46 | + lists the changes done on the different versions. |
| 47 | + |
| 48 | + All issues targeted for RIDE v2.2 can be found from the `issue |
| 49 | + tracker |
| 50 | + milestone <https://github.com/robotframework/RIDE/issues?q=milestone%3Av2.2>`__. |
| 51 | + |
| 52 | + Questions and comments related to the release can be sent to the |
| 53 | + `robotframework-users <https://groups.google.com/group/robotframework-users>`__ |
| 54 | + mailing list or to the channel #ride on `Robot Framework |
| 55 | + Slack <https://robotframework-slack-invite.herokuapp.com>`__, and |
| 56 | + possible bugs submitted to the `issue |
| 57 | + tracker <https://github.com/robotframework/RIDE/issues>`__. You |
| 58 | + should see `Robot Framework |
| 59 | + Forum <https://forum.robotframework.org/c/tools/ride/>`__ if your |
| 60 | + problem is already known. |
| 61 | + |
| 62 | + To install the latest release with |
| 63 | + `pip <https://pypi.org/project/pip/>`__ installed, just run |
| 64 | + |
| 65 | + .. code:: literal-block |
| 66 | +
|
| 67 | + pip install --upgrade robotframework-ride==2.1.2 |
| 68 | +
|
| 69 | + to install exactly the specified release, which is the same as using |
| 70 | + |
| 71 | + .. code:: literal-block |
| 72 | +
|
| 73 | + pip install --upgrade robotframework-ride |
| 74 | +
|
| 75 | + Alternatively you can download the source distribution from |
| 76 | + `PyPI <https://pypi.python.org/pypi/robotframework-ride>`__ and |
| 77 | + install it manually. For more details and other installation |
| 78 | + approaches, see the `installation |
| 79 | + instructions <https://github.com/robotframework/RIDE/wiki/Installation-Instructions>`__. |
| 80 | + If you want to help in the development of RIDE, by reporting issues |
| 81 | + in current development version, you can install with: |
| 82 | + |
| 83 | + .. code:: literal-block |
| 84 | +
|
| 85 | + pip install -U https://github.com/robotframework/RIDE/archive/develop.zip |
| 86 | +
|
| 87 | + Important document for helping with development is the |
| 88 | + `CONTRIBUTING.adoc <https://github.com/robotframework/RIDE/blob/develop/CONTRIBUTING.adoc>`__. |
| 89 | + |
| 90 | + To start RIDE from a command window, shell or terminal, just enter: |
| 91 | + |
| 92 | + :: |
| 93 | + |
| 94 | + ride |
| 95 | + |
| 96 | + You can also pass some arguments, like a path for a test suite file |
| 97 | + or directory. |
| 98 | + |
| 99 | + :: |
| 100 | + |
| 101 | + ride example.robot |
| 102 | + |
| 103 | + Another possible way to start RIDE is: |
| 104 | + |
| 105 | + .. code:: literal-block |
| 106 | +
|
| 107 | + python -m robotide |
| 108 | +
|
| 109 | + You can then go to Tools>Create RIDE Desktop Shortcut, or run the |
| 110 | + shortcut creation script with: |
| 111 | + |
| 112 | + .. code:: literal-block |
| 113 | +
|
| 114 | + python -m robotide.postinstall -install |
| 115 | +
|
| 116 | + or |
| 117 | + |
| 118 | + .. code:: literal-block |
| 119 | +
|
| 120 | + ride_postinstall.py -install |
| 121 | +
|
| 122 | + RIDE v2.1.2 was released on 28/January/2025. |
0 commit comments