Skip to content

Commit 711812a

Browse files
Merge branch 'develop' into l10n_master
2 parents a53f49f + 0c05883 commit 711812a

165 files changed

Lines changed: 8967 additions & 5527 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

AUTHORS.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Petr Hudeček
3232
Timothy Alexander
3333
@2Eagle2
3434
@bale836
35+
@chelslava
3536
@fzuellich
3637
@ghost
3738
@goodwillcoding

CHANGELOG.adoc

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,21 @@ All notable changes to this project will be documented in this file.
66
The format is based on http://keepachangelog.com/en/1.0.0/[Keep a Changelog]
77
and this project adheres to http://semver.org/spec/v2.0.0.html[Semantic Versioning].
88

9-
// == https://github.com/robotframework/RIDE[Unreleased]
9+
== https://github.com/robotframework/RIDE[Unreleased]
10+
11+
=== Added
12+
- Added option on Tree (Project Explorer) context menu, to *Sort Keywords (Case Insensitive)*.
13+
- Added on Text Editor, (Preferences->Text Editor) option to *Enable visible spaces* configurable with ``enable visible spaces`` in settings.cfg, with default ``True``.
14+
- Added on Text Editor, (Preferences->Text Editor) option to *Enable visible newlines* configurable with ``enable visible newlines`` in settings.cfg, with default ``False``.
15+
- Added on External/Code Editor, both enabled, ``visible spaces`` and ``visible newlines``.
16+
17+
=== Fixed
18+
- Fixed exception seen in console when selecting Tools->Library Finder... on a clean install.
19+
20+
=== Changed
21+
- Improved visibility of the Search action in *Find Usages* by adding ``Search...`` on the first row of the results table.
22+
- Changed isbinary to be internal library, instead of being dependency.
23+
1024

1125
== https://github.com/robotframework/RIDE/blob/master/doc/releasenotes/ride-2.2.2.rst[2.2.2] - 2026-01-06
1226

README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ See the https://github.com/robotframework/RIDE/blob/master/doc/releasenotes/ride
4040

4141
Currently, the unit tests are tested on Python 3.10, 3.11 and 3.14.
4242
We now have an experimental workflow on Fedora Linux 42, with wxPython 4.2.4 and Python 3.14.
43-
Likewise, the current version of wxPython, is 4.2.4, but RIDE is known to work with 4.0.7, 4.1.1, 4.2.2, 4.2.3 and 4.2.4 versions.
43+
Likewise, the current version of wxPython, is 4.2.5, but RIDE is known to work with 4.0.7, 4.1.1, 4.2.2, 4.2.3, 4.2.4 and 4.2.5 versions.
4444

4545
(3.9 <= python <= 3.14) Install current released version (*2.2.2*) with:
4646

4747
`pip install -U robotframework-ride`
4848

49-
(3.9 <= python <= 3.14) Install current development version (**2.2.2**) with:
49+
(3.9 <= python <= 3.14) Install current development version (**2.2.3dev6**) with:
5050

5151
`pip install -U https://github.com/robotframework/RIDE/archive/develop.zip`
5252

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ classifiers = [
4545
"Topic :: Software Development :: Testing",
4646
]
4747
dependencies = [
48-
"isbinary",
48+
"chardet",
4949
"psutil",
5050
"Pygments",
5151
"PyPubSub",
@@ -54,7 +54,7 @@ dependencies = [
5454
"robotframework",
5555
"psutil",
5656
"packaging",
57-
"requests>=2.32.4",
57+
"requests>=2.33.0",
5858
]
5959

6060
[project.urls]

requirements-dev.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ mockito
44
invoke
55
urllib3>=2.5.0 # not directly required, pinned by Snyk to avoid a vulnerability
66
zipp>=3.19.1 # not directly required, pinned by Snyk to avoid a vulnerability
7-
requests>=2.32.4
7+
requests>=2.33.0
88
github3.py
99
memory-profiler
1010
pylint
@@ -15,6 +15,7 @@ pytest-html
1515
pytest-order
1616
packaging >= 24.2
1717
hatch-fancy-pypi-readme
18+
hypothesis # dependency for isbinary unit tests
1819
# To make a relase you need asciidoc3 (a2x3)
1920
# asciidoc3
2021
# Include also normal project requirements.

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Pywin32; sys_platform == 'win32'
44
Pygments # This enables syntax highlighted in Text Editor
55
robotframework
66
Pypubsub
7-
isbinary
87
psutil
98
packaging
10-
requests>=2.32.4
9+
chardet
10+
requests>=2.33.0

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
SOURCE_DIR = 'src'
2626
REQUIREMENTS = ['PyPubSub',
2727
'Pygments',
28+
'chardet',
2829
'psutil',
2930
'Pywin32; sys_platform=="win32"',
3031
'wxPython',

src/robotide/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
errorMessageTemplate = Template("""$reason
4040
RIDE depends on wx (wxPython). Known versions for Python3 are: 4.0.7.post2, 4.1.1 and 4.2.1.\
41-
At the time of this release the current wxPython version is 4.2.3.\
41+
At the time of this release the current wxPython version is 4.2.4.\
4242
You can install with 'pip install wxPython' on most operating systems, or find the \
4343
the download link from https://wxPython.org/""")
4444

@@ -154,7 +154,7 @@ def _show_old_wxpython_warning_if_needed(parent=None):
154154
message = ("RIDE needs a newer wxPython version. Your current "
155155
"version is %s."
156156
"\n"
157-
"At the time of this release the current wxPython version is 4.2.3. See "
157+
"At the time of this release the current wxPython version is 4.2.4. See "
158158
"https://wxPython.org/ for downloads and instructions."
159159
% wx.VERSION_STRING)
160160
style = wx.ICON_EXCLAMATION

0 commit comments

Comments
 (0)