From 52d2a980171b5bf451df8d9e8e10a0a782962a37 Mon Sep 17 00:00:00 2001 From: HelioGuilherme66 Date: Fri, 20 Jun 2025 23:25:09 +0100 Subject: [PATCH 1/5] Set development version --- README.adoc | 6 +++--- README.md | 4 ++-- src/robotide/version.py | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.adoc b/README.adoc index 3e7837a3d..9740d3a63 100644 --- a/README.adoc +++ b/README.adoc @@ -31,17 +31,17 @@ See the https://github.com/robotframework/RIDE/blob/master/doc/releasenotes/ride **Version https://github.com/robotframework/RIDE/tree/release/1.7.4.2[1.7.4.2] was the last release supporting Python 2.7** -**The current development version is based on 2.1.3, supports Python from 3.8 up to 3.13 (24th March 2025).** +**The current development version is based on 2.1.4, supports Python from 3.8 up to 3.14 (20th June 2025).** Currently, the unit tests are tested on Python 3.10, 3.11 and 3.13 (3.13 is the recommended version). We now have an experimental workflow on Fedora Linux 41, with wxPython 4.2.3 and Python 3.14.a7. Likewise, the current version of wxPython, is 4.2.3, but RIDE is known to work with 4.0.7, 4.1.1 and 4.2.2 versions. -(3.8 <= python <= 3.13) Install current released version (*2.1.4*) with: +(3.8 <= python <= 3.14) Install current released version (*2.1.4*) with: `pip install -U robotframework-ride` -(3.8 <= python <= 3.13) Install current development version (**2.2dev32**) with: +(3.8 <= python <= 3.14) Install current development version (**2.2dev32**) with: `pip install -U https://github.com/robotframework/RIDE/archive/develop.zip` diff --git a/README.md b/README.md index 446748926..bdb44af57 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ See the [release notes](https://github.com/robotframework/RIDE/blob/master/doc/r **Version [1.7.4.2](https://github.com/robotframework/RIDE/tree/release/1.7.4.2) was the last release supporting Python 2.7** -**The current development version is based on 2.1.3, supports Python from 3.8 up to 3.14 (20th June 2025).** +**The current development version is based on 2.1.4, supports Python from 3.8 up to 3.14 (20th June 2025).** Currently, the unit tests are tested on Python 3.10, 3.11 and 3.13 (3.13 is the recommended version). We now have an experimental workflow on Fedora Linux 41, with wxPython 4.2.3 and Python 3.14.a7. @@ -40,7 +40,7 @@ Likewise, the current version of wxPython, is 4.2.3, but RIDE is known to work w `pip install -U robotframework-ride` -(3.8 <= python <= 3.14) Install current development version (**2.2dev??**) with: +(3.8 <= python <= 3.14) Install current development version (**2.2dev32**) with: `pip install -U https://github.com/robotframework/RIDE/archive/develop.zip` diff --git a/src/robotide/version.py b/src/robotide/version.py index d0311fa2f..00ae1cf5b 100644 --- a/src/robotide/version.py +++ b/src/robotide/version.py @@ -15,4 +15,4 @@ # # Automatically generated by `tasks.py`. -VERSION = 'v2.1.4' +VERSION = 'v2.2dev32' From e1a2d7ff540f89173b8062f5795b89bad4094909 Mon Sep 17 00:00:00 2001 From: HelioGuilherme66 Date: Sat, 21 Jun 2025 01:51:08 +0100 Subject: [PATCH 2/5] Add dependencies to pyproject.yaml --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 27cd7357f..d3ee3f8f7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,6 +49,10 @@ dependencies = [ "PyPubSub", "Pywin32; platform_system == 'Windows'", "wxPython", + "robotframework", + "psutil", + "packaging", + "requests>=2.32.2", ] [project.urls] From 6d6de7b16e07b6f5251d1714e9e83aa188c72cf8 Mon Sep 17 00:00:00 2001 From: HelioGuilherme66 Date: Sat, 21 Jun 2025 11:27:46 +0100 Subject: [PATCH 3/5] Update versions --- pyproject.toml | 2 +- requirements.txt | 2 +- setup.py | 2 +- sonar-project.properties | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d3ee3f8f7..4752f94a5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -52,7 +52,7 @@ dependencies = [ "robotframework", "psutil", "packaging", - "requests>=2.32.2", + "requests>=2.32.4", ] [project.urls] diff --git a/requirements.txt b/requirements.txt index 3cf7aeac6..485c967a7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,4 +6,4 @@ robotframework Pypubsub psutil packaging -requests>=2.32.2 +requests>=2.32.4 diff --git a/setup.py b/setup.py index 2b8f8f43d..cc154f51e 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ 'Pywin32; sys_platform=="win32"', 'wxPython', 'packaging', - 'requests>=2.32.2'] + 'requests>=2.32.4'] PACKAGE_DATA = { 'robotide.preferences': ['settings.cfg'], diff --git a/sonar-project.properties b/sonar-project.properties index f6eda1cb4..1585cbd61 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.3 +sonar.projectVersion=v2.1.4 sonar.sources=src/ sonar.tests=utest/ sonar.exclusions=**/lib/robot/**/* From 3d2a32ca2bd76e69d36f868def6ced0204748f0a Mon Sep 17 00:00:00 2001 From: HelioGuilherme66 Date: Sat, 21 Jun 2025 16:22:34 +0100 Subject: [PATCH 4/5] Update tanslations --- src/robotide/localization/RIDE.pot | 2 +- .../localization/bg_BG/LC_MESSAGES/RIDE.mo | Bin 557 -> 557 bytes .../localization/bg_BG/LC_MESSAGES/RIDE.po | 4 ++-- .../localization/bs_BA/LC_MESSAGES/RIDE.mo | Bin 629 -> 629 bytes .../localization/bs_BA/LC_MESSAGES/RIDE.po | 4 ++-- .../localization/cs_CZ/LC_MESSAGES/RIDE.mo | Bin 54598 -> 54598 bytes .../localization/cs_CZ/LC_MESSAGES/RIDE.po | 4 ++-- .../localization/da_DK/LC_MESSAGES/RIDE.mo | Bin 51336 -> 51336 bytes .../localization/da_DK/LC_MESSAGES/RIDE.po | 4 ++-- .../localization/de_DE/LC_MESSAGES/RIDE.mo | Bin 55543 -> 55543 bytes .../localization/de_DE/LC_MESSAGES/RIDE.po | 4 ++-- .../localization/en_US/LC_MESSAGES/RIDE.mo | Bin 2017 -> 2017 bytes .../localization/en_US/LC_MESSAGES/RIDE.po | 4 ++-- .../localization/es_ES/LC_MESSAGES/RIDE.mo | Bin 54741 -> 54741 bytes .../localization/es_ES/LC_MESSAGES/RIDE.po | 4 ++-- .../localization/fi_FI/LC_MESSAGES/RIDE.mo | Bin 52775 -> 52775 bytes .../localization/fi_FI/LC_MESSAGES/RIDE.po | 4 ++-- .../localization/fr_FR/LC_MESSAGES/RIDE.mo | Bin 58010 -> 58010 bytes .../localization/fr_FR/LC_MESSAGES/RIDE.po | 6 +++--- .../localization/hi_IN/LC_MESSAGES/RIDE.mo | Bin 553 -> 553 bytes .../localization/hi_IN/LC_MESSAGES/RIDE.po | 4 ++-- .../localization/hu_HU/LC_MESSAGES/RIDE.mo | Bin 557 -> 557 bytes .../localization/hu_HU/LC_MESSAGES/RIDE.po | 4 ++-- .../localization/it_IT/LC_MESSAGES/RIDE.mo | Bin 54974 -> 54974 bytes .../localization/it_IT/LC_MESSAGES/RIDE.po | 4 ++-- .../localization/ja_JP/LC_MESSAGES/RIDE.mo | Bin 46889 -> 46889 bytes .../localization/ja_JP/LC_MESSAGES/RIDE.po | 4 ++-- .../localization/ko_KR/LC_MESSAGES/RIDE.mo | Bin 4512 -> 4512 bytes .../localization/ko_KR/LC_MESSAGES/RIDE.po | 4 ++-- .../localization/nl_NL/LC_MESSAGES/RIDE.mo | Bin 55474 -> 55621 bytes .../localization/nl_NL/LC_MESSAGES/RIDE.po | 10 +++++----- .../localization/pl_PL/LC_MESSAGES/RIDE.mo | Bin 55112 -> 55112 bytes .../localization/pl_PL/LC_MESSAGES/RIDE.po | 4 ++-- .../localization/pt_BR/LC_MESSAGES/RIDE.mo | Bin 56567 -> 56564 bytes .../localization/pt_BR/LC_MESSAGES/RIDE.po | 6 +++--- .../localization/pt_PT/LC_MESSAGES/RIDE.mo | Bin 56703 -> 56700 bytes .../localization/pt_PT/LC_MESSAGES/RIDE.po | 6 +++--- .../localization/ro_RO/LC_MESSAGES/RIDE.mo | Bin 55694 -> 55694 bytes .../localization/ro_RO/LC_MESSAGES/RIDE.po | 4 ++-- .../localization/ru_RU/LC_MESSAGES/RIDE.mo | Bin 66675 -> 66675 bytes .../localization/ru_RU/LC_MESSAGES/RIDE.po | 4 ++-- .../localization/sv_SE/LC_MESSAGES/RIDE.mo | Bin 52722 -> 52722 bytes .../localization/sv_SE/LC_MESSAGES/RIDE.po | 4 ++-- .../localization/th_TH/LC_MESSAGES/RIDE.mo | Bin 545 -> 545 bytes .../localization/th_TH/LC_MESSAGES/RIDE.po | 4 ++-- .../localization/tr_TR/LC_MESSAGES/RIDE.mo | Bin 584 -> 584 bytes .../localization/tr_TR/LC_MESSAGES/RIDE.po | 4 ++-- .../localization/uk_UA/LC_MESSAGES/RIDE.mo | Bin 58024 -> 58024 bytes .../localization/uk_UA/LC_MESSAGES/RIDE.po | 4 ++-- .../localization/vi_VN/LC_MESSAGES/RIDE.mo | Bin 551 -> 551 bytes .../localization/vi_VN/LC_MESSAGES/RIDE.po | 4 ++-- .../localization/zh_CN/LC_MESSAGES/RIDE.mo | Bin 43594 -> 43594 bytes .../localization/zh_CN/LC_MESSAGES/RIDE.po | 4 ++-- .../localization/zh_TW/LC_MESSAGES/RIDE.mo | Bin 563 -> 563 bytes .../localization/zh_TW/LC_MESSAGES/RIDE.po | 4 ++-- 55 files changed, 61 insertions(+), 61 deletions(-) diff --git a/src/robotide/localization/RIDE.pot b/src/robotide/localization/RIDE.pot index e30cf6505..ca5359647 100644 --- a/src/robotide/localization/RIDE.pot +++ b/src/robotide/localization/RIDE.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2025-06-20 19:52+0100\n" +"POT-Creation-Date: 2025-06-21 16:16+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/robotide/localization/bg_BG/LC_MESSAGES/RIDE.mo b/src/robotide/localization/bg_BG/LC_MESSAGES/RIDE.mo index 78f8d52263100f8eb02396e8d2a9e1901b694c57..bf243ed15469aa38ff01e4a1237dae399a8ce7d4 100644 GIT binary patch delta 29 icmZ3>vX*5+A-kc1p_!GT*~AJ(5YxoU)Oh29UPb_V%?K<2 delta 29 icmZ3>vX*5+A-jQsp{13n(ZmWx5Yx=c)O_QDUPb_W4G1#; diff --git a/src/robotide/localization/bg_BG/LC_MESSAGES/RIDE.po b/src/robotide/localization/bg_BG/LC_MESSAGES/RIDE.po index 0533a676b..ead52db23 100644 --- a/src/robotide/localization/bg_BG/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/bg_BG/LC_MESSAGES/RIDE.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2025-06-20 19:52+0100\n" -"PO-Revision-Date: 2025-06-20 16:57\n" +"POT-Creation-Date: 2025-06-21 16:16+0100\n" +"PO-Revision-Date: 2025-06-21 14:53\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "Language: bg_BG\n" diff --git a/src/robotide/localization/bs_BA/LC_MESSAGES/RIDE.mo b/src/robotide/localization/bs_BA/LC_MESSAGES/RIDE.mo index 8cca80a747387e6cdf5616096b970ebbc8a1cb6d..487384b9e8b21f396cd7d77298d7b443330064a8 100644 GIT binary patch delta 29 icmey$@|9&mA-kc1p_!GT*~AJ(5YxoU)Oh29tBe4P9SH;g delta 29 icmey$@|9&mA-jQsp{13n(ZmWx5Yx=c)O_QDtBe4PT?q>S diff --git a/src/robotide/localization/bs_BA/LC_MESSAGES/RIDE.po b/src/robotide/localization/bs_BA/LC_MESSAGES/RIDE.po index 3850977e1..d518507dc 100644 --- a/src/robotide/localization/bs_BA/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/bs_BA/LC_MESSAGES/RIDE.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2025-06-20 19:52+0100\n" -"PO-Revision-Date: 2025-06-20 16:57\n" +"POT-Creation-Date: 2025-06-21 16:16+0100\n" +"PO-Revision-Date: 2025-06-21 14:53\n" "Last-Translator: \n" "Language-Team: Bosnian\n" "Language: bs_BA\n" diff --git a/src/robotide/localization/cs_CZ/LC_MESSAGES/RIDE.mo b/src/robotide/localization/cs_CZ/LC_MESSAGES/RIDE.mo index 443aa40bd434611a1163144563c951c8875dd2d8..e2f678900e724e1281d8062815fccbe3cb42f860 100644 GIT binary patch delta 62 zcmX@Miuu?o<_+4V`i2UIW>$t~+6IOO23!IDxZ<_*(I*$ov8&8!T~CeJNZ1hGx5OpP}mEj3C80O$k^82|tP delta 34 ocmeyqk@@>Z<_*(I*$os7Ev-zACeJNZ1hLJmOwBhREj3C80O(B&AOHXW diff --git a/src/robotide/localization/de_DE/LC_MESSAGES/RIDE.po b/src/robotide/localization/de_DE/LC_MESSAGES/RIDE.po index 86a854f8c..7ae93a8ee 100644 --- a/src/robotide/localization/de_DE/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/de_DE/LC_MESSAGES/RIDE.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2025-06-20 19:52+0100\n" -"PO-Revision-Date: 2025-06-20 16:57\n" +"POT-Creation-Date: 2025-06-21 16:16+0100\n" +"PO-Revision-Date: 2025-06-21 14:53\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" diff --git a/src/robotide/localization/en_US/LC_MESSAGES/RIDE.mo b/src/robotide/localization/en_US/LC_MESSAGES/RIDE.mo index 0a5b8fdbca12a387407d1d64d055c042f4994b7e..d016eac64347f3e243d056916c29fc31a682a0b4 100644 GIT binary patch delta 32 lcmaFJ|B!zJ3k$oUf}xp}q1j|^7DW)-#LCoovoXs$W&nw02etqJ delta 32 lcmaFJ|B!zJ3k$n}f}y3AsnKL^7DW)-%*xb!voXs$W&nw<2fY9Q diff --git a/src/robotide/localization/en_US/LC_MESSAGES/RIDE.po b/src/robotide/localization/en_US/LC_MESSAGES/RIDE.po index ab8fc3e69..04e6010e7 100644 --- a/src/robotide/localization/en_US/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/en_US/LC_MESSAGES/RIDE.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2025-06-20 19:52+0100\n" -"PO-Revision-Date: 2025-06-20 16:57\n" +"POT-Creation-Date: 2025-06-21 16:16+0100\n" +"PO-Revision-Date: 2025-06-21 14:53\n" "Last-Translator: \n" "Language-Team: English\n" "Language: en_US\n" diff --git a/src/robotide/localization/es_ES/LC_MESSAGES/RIDE.mo b/src/robotide/localization/es_ES/LC_MESSAGES/RIDE.mo index 64b3e9ea83fdac6da6ae1cd7ac12ce6df824adc8..288a169d0fce7f93e452d0d9b2edfc50b967a53c 100644 GIT binary patch delta 34 ncmcb*n)&K#<_)^V?1l=4W>$t~lTC^hL2MH%Q{&As#g$0_%GL_b delta 34 ncmcb*n)&K#<_)^V>;?*kmR6=llTC^hL2NTCQ}fL+#g$0_%O48W diff --git a/src/robotide/localization/es_ES/LC_MESSAGES/RIDE.po b/src/robotide/localization/es_ES/LC_MESSAGES/RIDE.po index 6a857525c..ee3663ee5 100644 --- a/src/robotide/localization/es_ES/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/es_ES/LC_MESSAGES/RIDE.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2025-06-20 19:52+0100\n" -"PO-Revision-Date: 2025-06-20 16:57\n" +"POT-Creation-Date: 2025-06-21 16:16+0100\n" +"PO-Revision-Date: 2025-06-21 14:53\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Language: es_ES\n" diff --git a/src/robotide/localization/fi_FI/LC_MESSAGES/RIDE.mo b/src/robotide/localization/fi_FI/LC_MESSAGES/RIDE.mo index c15371631d26059313f4d92d2fa5cb3d37f4824f..720a66e7679897e5204c828dd4d7d27ace714c9f 100644 GIT binary patch delta 34 ocmZ2Jhk5xN<_({V*bNm7&8!T~CjTl@1hGx5OpP}y6|+VI0NS|=DF6Tf delta 34 ocmZ2Jhk5xN<_({V*bNj6Ev-zACjTl@1hLJmOwBhd6|+VI0NVl!FaQ7m diff --git a/src/robotide/localization/fi_FI/LC_MESSAGES/RIDE.po b/src/robotide/localization/fi_FI/LC_MESSAGES/RIDE.po index 65b8c1259..1667fb68f 100644 --- a/src/robotide/localization/fi_FI/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/fi_FI/LC_MESSAGES/RIDE.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2025-06-20 19:52+0100\n" -"PO-Revision-Date: 2025-06-20 16:57\n" +"POT-Creation-Date: 2025-06-21 16:16+0100\n" +"PO-Revision-Date: 2025-06-21 14:53\n" "Last-Translator: \n" "Language-Team: Finnish\n" "Language: fi_FI\n" diff --git a/src/robotide/localization/fr_FR/LC_MESSAGES/RIDE.mo b/src/robotide/localization/fr_FR/LC_MESSAGES/RIDE.mo index 7d009ebf8ac7332552f4d4f4a542e5dfe5392aff..a2f161e7e7d24a4b50ed1f8a685615644f613618 100644 GIT binary patch delta 41 vcmbPrlzG-s<_%9v*$ov8&8!T~Cci0F1hGx5OpP~-ludGE^xnLD`)4fxK7tP| delta 41 vcmbPrlzG-s<_%9v*$os7Ev-zACci0F1hLJmOwBioludGE%-+0w`)4fxKfDiA diff --git a/src/robotide/localization/fr_FR/LC_MESSAGES/RIDE.po b/src/robotide/localization/fr_FR/LC_MESSAGES/RIDE.po index c68522a0d..ccd970092 100644 --- a/src/robotide/localization/fr_FR/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/fr_FR/LC_MESSAGES/RIDE.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2025-06-20 19:52+0100\n" -"PO-Revision-Date: 2025-06-20 16:57\n" +"POT-Creation-Date: 2025-06-21 16:16+0100\n" +"PO-Revision-Date: 2025-06-21 14:53\n" "Last-Translator: \n" "Language-Team: French\n" "Language: fr_FR\n" @@ -3055,7 +3055,7 @@ msgstr "Non" #: /home2/helio/github/RIDE/tools/../src/robotide/widgets/dialog.py:133 msgid "OK" -msgstr "Ok" +msgstr "OK" #: /home2/helio/github/RIDE/tools/../src/robotide/widgets/dialog.py:133 msgid "Yes" diff --git a/src/robotide/localization/hi_IN/LC_MESSAGES/RIDE.mo b/src/robotide/localization/hi_IN/LC_MESSAGES/RIDE.mo index 711015ddaeee5bc32f92ab4ccf882b14e8946c07..f6ba6bb02fcc1922412de3d08531a55542ed36db 100644 GIT binary patch delta 29 icmZ3}E delta 29 icmZ3vX*5+A-kc1p_!GT*~AJ(5YxoU)Oh29UPb_V%?K<2 delta 29 icmZ3>vX*5+A-jQsp{13n(ZmWx5Yx=c)O_QDUPb_W4G1#; diff --git a/src/robotide/localization/hu_HU/LC_MESSAGES/RIDE.po b/src/robotide/localization/hu_HU/LC_MESSAGES/RIDE.po index eaeadfca1..86b381f67 100644 --- a/src/robotide/localization/hu_HU/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/hu_HU/LC_MESSAGES/RIDE.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2025-06-20 19:52+0100\n" -"PO-Revision-Date: 2025-06-20 16:57\n" +"POT-Creation-Date: 2025-06-21 16:16+0100\n" +"PO-Revision-Date: 2025-06-21 14:53\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "Language: hu_HU\n" diff --git a/src/robotide/localization/it_IT/LC_MESSAGES/RIDE.mo b/src/robotide/localization/it_IT/LC_MESSAGES/RIDE.mo index 7fe2190207e399a50ff39d69911e53ff2fbf452d..886f73f8db85b55859c7ddcb695b018ca27e0f02 100644 GIT binary patch delta 34 ocmdnDmU-V=<_%9v*$ov8&8!T~Cci0F1hGx5OpP~-l&wkt0OSA+0ssI2 delta 34 ocmdnDmU-V=<_%9v*$os7Ev-zACci0F1hLJmOwBiol&wkt0OUyw2><{9 diff --git a/src/robotide/localization/it_IT/LC_MESSAGES/RIDE.po b/src/robotide/localization/it_IT/LC_MESSAGES/RIDE.po index 8ba8b3320..0a4cb9aa6 100644 --- a/src/robotide/localization/it_IT/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/it_IT/LC_MESSAGES/RIDE.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2025-06-20 19:52+0100\n" -"PO-Revision-Date: 2025-06-20 16:57\n" +"POT-Creation-Date: 2025-06-21 16:16+0100\n" +"PO-Revision-Date: 2025-06-21 14:53\n" "Last-Translator: \n" "Language-Team: Italian\n" "Language: it_IT\n" diff --git a/src/robotide/localization/ja_JP/LC_MESSAGES/RIDE.mo b/src/robotide/localization/ja_JP/LC_MESSAGES/RIDE.mo index 4ade831a5ffc3ca04da373b6faa0a3701412bc0a..d265348800696fe9e181ef12df9b3db31801013a 100644 GIT binary patch delta 34 ncmZ4aj%npPrVRnH?1l=4W>$t~lfz>bL2MH%Q{&C`v8y5h(&!6G delta 34 ncmZ4aj%npPrVRnH>;?*kmR6=llfz>bL2NTCQ}fOBv8y5h(=iKB diff --git a/src/robotide/localization/ja_JP/LC_MESSAGES/RIDE.po b/src/robotide/localization/ja_JP/LC_MESSAGES/RIDE.po index 6f52ed6d7..26c80478f 100644 --- a/src/robotide/localization/ja_JP/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/ja_JP/LC_MESSAGES/RIDE.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2025-06-20 19:52+0100\n" -"PO-Revision-Date: 2025-06-20 16:57\n" +"POT-Creation-Date: 2025-06-21 16:16+0100\n" +"PO-Revision-Date: 2025-06-21 14:53\n" "Last-Translator: \n" "Language-Team: Japanese\n" "Language: ja_JP\n" diff --git a/src/robotide/localization/ko_KR/LC_MESSAGES/RIDE.mo b/src/robotide/localization/ko_KR/LC_MESSAGES/RIDE.mo index 8e4bc5637739d9d8f77fb95746814e8582dda480..c85814e85cb7c95cbe0cf8e4513832ccc7683364 100644 GIT binary patch delta 32 lcmZ3Wyg+#aA1Aw^f}xp}q1j|nPDK#g#LCoovn^*b2LOP02SWe= delta 32 lcmZ3Wyg+#aA1Awkf}y3AsnKLnPDK#g%*xb!vn^*b2LOP<2TA|{ diff --git a/src/robotide/localization/ko_KR/LC_MESSAGES/RIDE.po b/src/robotide/localization/ko_KR/LC_MESSAGES/RIDE.po index 60a2e34df..5dc282ab5 100644 --- a/src/robotide/localization/ko_KR/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/ko_KR/LC_MESSAGES/RIDE.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2025-06-20 19:52+0100\n" -"PO-Revision-Date: 2025-06-20 16:57\n" +"POT-Creation-Date: 2025-06-21 16:16+0100\n" +"PO-Revision-Date: 2025-06-21 14:53\n" "Last-Translator: \n" "Language-Team: Korean\n" "Language: ko_KR\n" diff --git a/src/robotide/localization/nl_NL/LC_MESSAGES/RIDE.mo b/src/robotide/localization/nl_NL/LC_MESSAGES/RIDE.mo index 15d3800e84cf2f3800eefa50b773b6aaa0a75001..2818b92af55f6f2d94b09de3db7aca576bf88081 100644 GIT binary patch delta 9597 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 g)+w0lnb%`W)Vzc(u{85~Y#CpuKA0GT+f&c&j delta 9533 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 delta 2128 zcmXZceN5F=9LMpabOlnpJpgifydW&Gx*!fgnyxA20~-q==GxT4k+GEqGuf)~TPv+U zG~8S*TeDf|T3Cq}l&j?fk>HFl)E>argw-%8(+X?R?EUeazh38ie!t&6-}C*RbN`G) z-H1dTJdo=7j4@Zj#>~L0n1z#gFJ`nGqvz!qgO!+ykD}gd!W?`H)A1zE!XGgkZ(uT} zb{I1gi!gu>;T`x`hw*ML+`vRM6U{gcx1m1Vf%EYLH-8Bi5szR6W*#=?9()ED;G1|i z_M;LW!6i73&6sz@zV|UI;h&Cp#>6wYt<#ud44^Vwg?YFhGjSJc2OT&ayD=8ep%xrO zZQwUd#0gXaaS{7|BBl^$p(?c4#WfxSeb|UfR-a41x@DkJ+89M18Q<*^IM^_n;E%!Zhqh?eJH; z6DLrK#e8b#b1;cGgsSK=Ou^N-6gOi5>zhsnD&ZI=;7y!^37^@DEJiI*<*Y-sq{+p* zQ6+E1Wb8sE`~&K}DaWm|QHhjc71rR>tZzPKu#$cyj|53k?~eBcY4 z$X3*XZ=lY?KJ?)sRHZsG6$fw$UPZO0;Ixfbpx)b#N^t*a>aX5^!h}lxIVzDpoQ6Z_ z!(r48M==ZkMYSTm$DWxGss*K}`E{r>vk8^(i>ONObkFxX+j^*f1`kfT7cV=1M=g94 z)l*-u?P)#^5EtXmQ@Pt`jCq{+`dJpm>M!}vz;;ySlKPCP!&+R0z1WW_Uva*0%wtf& zU<0$S;bCmWvUB{a;Wcc*+OLh-jn`4{Z6}KcOgYb0#T}@YjN^3t2bGBL0)K8;k2=H~ zaT&gZx`y6a1}eG#qAg__sv`4UT!kuaJ?ikijJjU$p?cYae!PtOBf5r4WYWd4-`MZt zk-eBa%trI=t!wX@90tm4A*$pRsIyRw`oXoR-q$-{aJIPT?_w0sKSJH2Hq;sU1+`Gz zclM8`0P~3}oE|3X{vTwZg?sQR?871~`QDi2*oa!-7;5JyP(M6^IT$l&Z%qi5@ET0R zCovhfp%U7Q`o0?jIEt~XZ>A2}4`*Nu@hm)qL7a)_Q3(#CN;`^5@Gp$U`!Ct=3sLcd z&gH0E@Gz=HwU~g7?)j^jHiwCw475-Lm02&UCBxxJ_I;Jn`N4S$O9~5ijX#^I@q&`V WqHz3{i;H|q>l!z23Xg?jbN>e!&y2VL diff --git a/src/robotide/localization/pt_BR/LC_MESSAGES/RIDE.po b/src/robotide/localization/pt_BR/LC_MESSAGES/RIDE.po index 38144832e..e13ee0059 100644 --- a/src/robotide/localization/pt_BR/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/pt_BR/LC_MESSAGES/RIDE.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2025-06-20 19:52+0100\n" -"PO-Revision-Date: 2025-06-20 16:57\n" +"POT-Creation-Date: 2025-06-21 16:16+0100\n" +"PO-Revision-Date: 2025-06-21 14:53\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" @@ -3042,7 +3042,7 @@ msgstr "Não" #: /home2/helio/github/RIDE/tools/../src/robotide/widgets/dialog.py:133 msgid "OK" -msgstr "Certo" +msgstr "OK" #: /home2/helio/github/RIDE/tools/../src/robotide/widgets/dialog.py:133 msgid "Yes" diff --git a/src/robotide/localization/pt_PT/LC_MESSAGES/RIDE.mo b/src/robotide/localization/pt_PT/LC_MESSAGES/RIDE.mo index a4d20744eb60336872d1572a697fd9a13f8ad564..28f2f7798efd5f0c9dc5aee93eaa24e000e27b83 100644 GIT binary patch delta 2125 zcmXZce@xX?7{~D=sK_NRsa!93`EdmtAZA{~TZ3*tL{@|&Os9)2T``MNl3cY`$#-r2 zVY8VVi_~NbvmY9mb&=#M3Oa>;b5$w}S1V`PZkC%{i(2;n_&uBWI_LR*?|q(go^$TC zSn|KIxi2h#VTu)rwYfK7(MK~EFs6_tdN7LV=tLbc*Ng3v0J=S6iYKMkGx^P02KN#;gQ_@p!0l}qvzXtBIwK9J)@(q1 z(F<6CuV5w);avO?br#YF-CHyRi<#enL2RMVFq5>urO45s44Sc)yU0(W5z zUO^?OJms#u4z&}jaT2aW?bMT)gIjPh?nM=vz-mk$a^I^#71%h${;T)v3Ftbtq6*oJ zld&C@paWIFTbPf%s1}?<-I_}nz-u-h7hM)!0XCp|-iq4N?dZYxa3)6W{8QAm z97Wb-{zUzr41RO{x;y3~gA4-Ws4Y+b);$Y8)EDNVdOz11vDVw?jhM{yCs2iLM4g3p zRKXvi78b{a_zQ+Ha88BN|N9vz@ng6iH{dNeh6^y`J2yc!DnSjFU^C9a*Kt1fqY6%- zZoywT3w__ahjsx5nJ>pIdnJ`(LKoVP3`6bywcLgBW=)3Y@$ WuUND&n(<8g?Me65MnC8oDgGaLlZA5t delta 2128 zcmXZceN5F=9LMpmBA_DVC4|d^Z~+MgLwo>~7BP`BV>(9VYSGh@EKCuk{&01bwe^S1 z*4UWjN~SDJY2rWx62&mZOtZKumCaVGR#Eie=GLTofBc<|@j6fZzTb1c=Ww$>?7#l7 z&W@B|xS1X3Hk*N+n2rOOi`P)|QAfJ z;d}TBj^R?Q?KMlq_THdb9E~9cG%<>|p|8(u0j8sNQi<9@11dlhPQ#seJMKblpabKv z8gSp z)CRIpB`Lr(tilJd0d>MBa2^Iv)6fq8KxGzt%=?2oocH1!#%oZ4c3=v&pmx}WK0M~e zFSzkvF@f>xsDx$=P;X4ZaxB7y#J87e=mUpP37kaL^pfjOxOv}kZ(Sy4GGE~OkD!jc z78RfgbvfTgZEVo_9V(G2CpZm^!xxBe>uIcF;4&)X^g*w-%P^6C8S0Kyqe@ec`cM#y z@eTCjCzylZqwYe?N$(ZK<6Qd7F@Uws*RhQF_5lrDzCTer%lXJ`1+GRtlV;R-JEr0= zYR5mJ?#REW+D8w0wGE(3lZ};_k9pXHPfRj9jJgZHkJ*GWt)>x;>o6A^@Il;z_v3X` zfRfYR&MQ$T@f3#RM$}1d!P&SImtzMi(Qz!th%?^03RHqMXE=Y=eiH+FPTNt5?7#?Y zMFnU>CGak0U>~XkS5dEK43ly4us5EH`feWTgi28-xyH>u>8u;({L`4&<`%X&51|4d zN7eKcM&dYrfj98?$<+KTr$E2&Q;rss&zn7uTX7}+h--1d1+xl#4f(MUzqaDO;Ah@{ zvb2jF8v`5hAWmQ%zW+HF43mi3iU&~ZR*aZ!#u0oR%R^pC+A)g$VSE+`a0+H!@-A@> z>TccR48BT3M}8J(;T6=0{O0=6m%V3|iMo6xn2FV>nr}yyVmD65gBXuJu74i&EJu+& z+25%DC#SC5dhS8{nMND~6R0DP9rf;lAN9cuRPFC{mO884d<}*%zZsQSBkC@+q7puW z+E@q|<1bii-Z81>S%gupW!>8s=ldS6+aXr~nl>59=@s-@-f`L?t|qdIkSr z68gXPF709r(0>>c@gS(woTu%zz8Y diff --git a/src/robotide/localization/ro_RO/LC_MESSAGES/RIDE.po b/src/robotide/localization/ro_RO/LC_MESSAGES/RIDE.po index 1f0c84c93..2f62927d5 100644 --- a/src/robotide/localization/ro_RO/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/ro_RO/LC_MESSAGES/RIDE.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2025-06-20 19:52+0100\n" -"PO-Revision-Date: 2025-06-20 16:57\n" +"POT-Creation-Date: 2025-06-21 16:16+0100\n" +"PO-Revision-Date: 2025-06-21 14:53\n" "Last-Translator: \n" "Language-Team: Romanian\n" "Language: ro_RO\n" diff --git a/src/robotide/localization/ru_RU/LC_MESSAGES/RIDE.mo b/src/robotide/localization/ru_RU/LC_MESSAGES/RIDE.mo index c16e987d6161639c86e63253ab406735cc2783bd..6754512498f7b0ecbd6364e7fc1da7313a143e3f 100644 GIT binary patch delta 34 ncmey|!ScC-Wy701c0&b2Gb=;0$)EESL2MH%Q{&Cj`4LkA=sgSv delta 34 ncmey|!ScC-Wy701b^`@NODj{O$)EESL2NTCQ}fNz`4LkA=!Ogq diff --git a/src/robotide/localization/ru_RU/LC_MESSAGES/RIDE.po b/src/robotide/localization/ru_RU/LC_MESSAGES/RIDE.po index 0b2e890ec..31401745b 100644 --- a/src/robotide/localization/ru_RU/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/ru_RU/LC_MESSAGES/RIDE.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2025-06-20 19:52+0100\n" -"PO-Revision-Date: 2025-06-20 16:57\n" +"POT-Creation-Date: 2025-06-21 16:16+0100\n" +"PO-Revision-Date: 2025-06-21 14:53\n" "Last-Translator: \n" "Language-Team: Russian\n" "Language: ru_RU\n" diff --git a/src/robotide/localization/sv_SE/LC_MESSAGES/RIDE.mo b/src/robotide/localization/sv_SE/LC_MESSAGES/RIDE.mo index d6b8e836ce937eea15f170af24bd852cedfcfba7..6e48b5af81140f1845d700a5bfdf9ee0be5f99c4 100644 GIT binary patch delta 34 ncmew~oB7jh<_%`0?1l=4W>$t~lWj{CL2MH%Q{&C4rM(dV&|nJ_ delta 34 ncmew~oB7jh<_%`0>;?*kmR6=llWj{CL2NTCQ}fNKrM(dV(5VX= diff --git a/src/robotide/localization/sv_SE/LC_MESSAGES/RIDE.po b/src/robotide/localization/sv_SE/LC_MESSAGES/RIDE.po index c9dfb1e85..37e44f891 100644 --- a/src/robotide/localization/sv_SE/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/sv_SE/LC_MESSAGES/RIDE.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2025-06-20 19:52+0100\n" -"PO-Revision-Date: 2025-06-20 16:57\n" +"POT-Creation-Date: 2025-06-21 16:16+0100\n" +"PO-Revision-Date: 2025-06-21 14:53\n" "Last-Translator: \n" "Language-Team: Swedish\n" "Language: sv_SE\n" diff --git a/src/robotide/localization/th_TH/LC_MESSAGES/RIDE.mo b/src/robotide/localization/th_TH/LC_MESSAGES/RIDE.mo index ae586a5e5e999c7d690ac287898d1a3a80171eab..8a47768d3607a64b429929c312721e25deaef6a5 100644 GIT binary patch delta 29 icmZ3;vXEs$A-kc1p_!GT*~AJ(5YxoU)Oh29Mn(X56$l6b delta 29 icmZ3;vXEs$A-jQsp{13n(ZmWx5Yx=c)O_QDMn(X5RR|9N diff --git a/src/robotide/localization/th_TH/LC_MESSAGES/RIDE.po b/src/robotide/localization/th_TH/LC_MESSAGES/RIDE.po index 560124a2f..dceb00267 100644 --- a/src/robotide/localization/th_TH/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/th_TH/LC_MESSAGES/RIDE.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2025-06-20 19:52+0100\n" -"PO-Revision-Date: 2025-06-20 16:57\n" +"POT-Creation-Date: 2025-06-21 16:16+0100\n" +"PO-Revision-Date: 2025-06-21 14:53\n" "Last-Translator: \n" "Language-Team: Thai\n" "Language: th_TH\n" diff --git a/src/robotide/localization/tr_TR/LC_MESSAGES/RIDE.mo b/src/robotide/localization/tr_TR/LC_MESSAGES/RIDE.mo index 2e4f960aa8450803a19e232a95baad7b18f80c7e..f5e3d7474e19ecde0addaf43f83e909b7cf090e7 100644 GIT binary patch delta 29 icmX@Xa)M<-8@r)`p_!GT*~DH&5YxoU)Oh38$&3Jm9tfuZ delta 29 icmX@Xa)M<-8@qvmp{13n(ZpUw5Yx=c)O_RC$&3JmUI?xL diff --git a/src/robotide/localization/tr_TR/LC_MESSAGES/RIDE.po b/src/robotide/localization/tr_TR/LC_MESSAGES/RIDE.po index aa682b139..21709067e 100644 --- a/src/robotide/localization/tr_TR/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/tr_TR/LC_MESSAGES/RIDE.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2025-06-20 19:52+0100\n" -"PO-Revision-Date: 2025-06-20 16:57\n" +"POT-Creation-Date: 2025-06-21 16:16+0100\n" +"PO-Revision-Date: 2025-06-21 14:53\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Language: tr_TR\n" diff --git a/src/robotide/localization/uk_UA/LC_MESSAGES/RIDE.mo b/src/robotide/localization/uk_UA/LC_MESSAGES/RIDE.mo index dc837210c36ee800cfd1657641748387e5f878f7..6870350c7a3264e045b51875a5e53c42cf6e7a89 100644 GIT binary patch delta 34 ocmZ2+lzGKb<_+tU*bNm7&8!T~CT~kp1hGx5OpQ0+OFC5#0Na2JX#fBK delta 34 ocmZ2+lzGKb<_+tU*bNj6Ev-zACT~kp1hLJmOwBjnOFC5#0Ncq7Z~y=R diff --git a/src/robotide/localization/uk_UA/LC_MESSAGES/RIDE.po b/src/robotide/localization/uk_UA/LC_MESSAGES/RIDE.po index 2ea760405..7f5eb63f2 100644 --- a/src/robotide/localization/uk_UA/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/uk_UA/LC_MESSAGES/RIDE.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2025-06-20 19:52+0100\n" -"PO-Revision-Date: 2025-06-20 16:57\n" +"POT-Creation-Date: 2025-06-21 16:16+0100\n" +"PO-Revision-Date: 2025-06-21 14:53\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "Language: uk_UA\n" diff --git a/src/robotide/localization/vi_VN/LC_MESSAGES/RIDE.mo b/src/robotide/localization/vi_VN/LC_MESSAGES/RIDE.mo index 985214de8bc8a3525c9c08b46c3e7b8b0a037ca0..059c6c7bd5461ff2b759335caec6710d97e4aa76 100644 GIT binary patch delta 29 icmZ3^vYcf?A-kc1p_!GT*~AJ(5YxoU)Oh29c18esaR?d! delta 29 icmZ3^vYcf?A-jQsp{13n(ZmWx5Yx=c)O_QDc18esu?Qgm diff --git a/src/robotide/localization/vi_VN/LC_MESSAGES/RIDE.po b/src/robotide/localization/vi_VN/LC_MESSAGES/RIDE.po index 28e6968ab..82513b0dc 100644 --- a/src/robotide/localization/vi_VN/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/vi_VN/LC_MESSAGES/RIDE.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2025-06-20 19:52+0100\n" -"PO-Revision-Date: 2025-06-20 16:57\n" +"POT-Creation-Date: 2025-06-21 16:16+0100\n" +"PO-Revision-Date: 2025-06-21 14:53\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "Language: vi_VN\n" diff --git a/src/robotide/localization/zh_CN/LC_MESSAGES/RIDE.mo b/src/robotide/localization/zh_CN/LC_MESSAGES/RIDE.mo index 787692e5456a7917c0773db934c8753c9eb93a01..eff6dde1818c2856a4d638ad70501a161019c561 100644 GIT binary patch delta 34 ocmX?gh3V84rVW?V*$ov8&8!T~Cf`a|1hGx5OpP})Wq3FN0O`;Rh5!Hn delta 34 ocmX?gh3V84rVW?V*$os7Ev-zACf`a|1hLJmOwBhlWq3FN0O}bFjQ{`u diff --git a/src/robotide/localization/zh_CN/LC_MESSAGES/RIDE.po b/src/robotide/localization/zh_CN/LC_MESSAGES/RIDE.po index 23ff85b92..7fea2404b 100644 --- a/src/robotide/localization/zh_CN/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/zh_CN/LC_MESSAGES/RIDE.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2025-06-20 19:52+0100\n" -"PO-Revision-Date: 2025-06-20 16:57\n" +"POT-Creation-Date: 2025-06-21 16:16+0100\n" +"PO-Revision-Date: 2025-06-21 14:53\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff --git a/src/robotide/localization/zh_TW/LC_MESSAGES/RIDE.mo b/src/robotide/localization/zh_TW/LC_MESSAGES/RIDE.mo index 4c5ab0fe2b1c96a269d63364fc9a4943efc0259b..0e8da5239cd37986c8f7099ebb6377f571fe7294 100644 GIT binary patch delta 29 icmdnYvYBN Date: Tue, 24 Jun 2025 12:41:43 +0100 Subject: [PATCH 5/5] Prepare 2.1.4.1 --- CHANGELOG.adoc | 8 +- README.adoc | 10 +- README.md | 8 +- doc/releasenotes/ride-2.1.4.1.rst | 153 +++++++++++++++++++++++ src/robotide/application/CHANGELOG.html | 118 +++++++++-------- src/robotide/application/releasenotes.py | 5 +- src/robotide/version.py | 2 +- 7 files changed, 228 insertions(+), 76 deletions(-) create mode 100644 doc/releasenotes/ride-2.1.4.1.rst diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index ee400804a..a85e5a0d3 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -8,6 +8,11 @@ and this project adheres to http://semver.org/spec/v2.0.0.html[Semantic Versioni // == https://github.com/robotframework/RIDE[Unreleased] +== https://github.com/robotframework/RIDE/blob/master/doc/releasenotes/ride-2.1.4.1.rst[2.1.4.1] - 2025-06-24 + +=== Fixed +- Fix broken installation of RIDE v2.1.4 by adding missing dependencies. + == https://github.com/robotframework/RIDE/blob/master/doc/releasenotes/ride-2.1.4.rst[2.1.4] - 2025-06-20 === Added @@ -28,12 +33,9 @@ when selecting in Tree shows the filename in StatusBar. - Improved auto-complete in Grid Editor, to allow several matches - Changed some informative dialogs and JSON Editor to use the customized colors. - Modified import statements to allow running RIDE without Robot Framework installed or versions older than 6.0. -- On Windows ignore false modification on files when opening Test Suites, causing confirmation dialog. === Fixed - Fixed Create Desktop Shortcut by pointing executable to ``python -m robotide``. -- Changed some informative dialogs and JSON Editor to use the customized colors. -- Modified import statements to allow running RIDE without Robot Framework installed or versions older than 6.0. - On Windows ignore false modification on files when opening Test Suites, causing confirmation dialog. == https://github.com/robotframework/RIDE/blob/master/doc/releasenotes/ride-2.1.3.rst[2.1.3] - 2025-03-24 diff --git a/README.adoc b/README.adoc index 9740d3a63..5c0512bb2 100644 --- a/README.adoc +++ b/README.adoc @@ -22,22 +22,22 @@ You can use the tag *robotframework-ide* to search and ask on https://stackoverf == **Welcome to the development version of RIDE - next major release will be version 2.2** -If you are looking for the latest released version, you can get the source code from **https://github.com/robotframework/RIDE/releases[releases]** or from branch **https://github.com/robotframework/RIDE/tree/release/2.1.4[release/2.1.4]** +If you are looking for the latest released version, you can get the source code from **https://github.com/robotframework/RIDE/releases[releases]** or from branch **https://github.com/robotframework/RIDE/tree/release/2.1.4.1[release/2.1.4.1]** -See the https://github.com/robotframework/RIDE/blob/master/doc/releasenotes/ride-2.1.4.rst[release notes] for latest release version 2.1.4 +See the https://github.com/robotframework/RIDE/blob/master/doc/releasenotes/ride-2.1.4.1.rst[release notes] for latest release version 2.1.4.1 **Version https://github.com/robotframework/RIDE/tree/release/2.0.8.1[2.0.8.1] was the last release supporting Python 3.6 and 3.7** **Version https://github.com/robotframework/RIDE/tree/release/1.7.4.2[1.7.4.2] was the last release supporting Python 2.7** -**The current development version is based on 2.1.4, supports Python from 3.8 up to 3.14 (20th June 2025).** +**The current development version is based on 2.1.4.1, supports Python from 3.8 up to 3.14 (24th June 2025).** Currently, the unit tests are tested on Python 3.10, 3.11 and 3.13 (3.13 is the recommended version). -We now have an experimental workflow on Fedora Linux 41, with wxPython 4.2.3 and Python 3.14.a7. +We now have an experimental workflow on Fedora Linux 41, with wxPython 4.2.3 and Python 3.14.b2. Likewise, the current version of wxPython, is 4.2.3, but RIDE is known to work with 4.0.7, 4.1.1 and 4.2.2 versions. -(3.8 <= python <= 3.14) Install current released version (*2.1.4*) with: +(3.8 <= python <= 3.14) Install current released version (*2.1.4.1*) with: `pip install -U robotframework-ride` diff --git a/README.md b/README.md index bdb44af57..4fb104294 100644 --- a/README.md +++ b/README.md @@ -21,19 +21,19 @@ You can use the tag *robotframework-ide* to search and ask on [StackOverflow](ht ## **Welcome to RIDE - next major release will be version 2.2** -If you are looking for the latest released version, you can get the source code from **[releases](https://github.com/robotframework/RIDE/releases)** or from branch **[release/2.1.4](https://github.com/robotframework/RIDE/tree/release/2.1.4)** +If you are looking for the latest released version, you can get the source code from **[releases](https://github.com/robotframework/RIDE/releases)** or from branch **[release/2.1.4.1](https://github.com/robotframework/RIDE/tree/release/2.1.4.1)** -See the [release notes](https://github.com/robotframework/RIDE/blob/master/doc/releasenotes/ride-2.1.4.rst) for latest release version 2.1.4 +See the [release notes](https://github.com/robotframework/RIDE/blob/master/doc/releasenotes/ride-2.1.4.1.rst) for latest release version 2.1.4.1 **Version [2.0.8.1](https://github.com/robotframework/RIDE/tree/release/2.0.8.1) was the last release supporting Python 3.6 and 3.7** **Version [1.7.4.2](https://github.com/robotframework/RIDE/tree/release/1.7.4.2) was the last release supporting Python 2.7** -**The current development version is based on 2.1.4, supports Python from 3.8 up to 3.14 (20th June 2025).** +**The current development version is based on 2.1.4.1, supports Python from 3.8 up to 3.14 (24th June 2025).** Currently, the unit tests are tested on Python 3.10, 3.11 and 3.13 (3.13 is the recommended version). -We now have an experimental workflow on Fedora Linux 41, with wxPython 4.2.3 and Python 3.14.a7. +We now have an experimental workflow on Fedora Linux 41, with wxPython 4.2.3 and Python 3.14.b2. Likewise, the current version of wxPython, is 4.2.3, but RIDE is known to work with 4.0.7, 4.1.1 and 4.2.2 versions. (3.8 <= python <= 3.14) Install current released version (*2.1.4*) with: diff --git a/doc/releasenotes/ride-2.1.4.1.rst b/doc/releasenotes/ride-2.1.4.1.rst new file mode 100644 index 000000000..a4283c942 --- /dev/null +++ b/doc/releasenotes/ride-2.1.4.1.rst @@ -0,0 +1,153 @@ +.. container:: document + + `RIDE (Robot Framework + IDE) `__ v2.1.4.1 is a new + release with some enhancements and bug fixes. The reference for valid + arguments is `Robot Framework `__ + current version, 7.3.1. However, internal library code is originally + based on version 3.1.2, but adapted for new versions. + + - This version supports Python 3.8 up to 3.13 (and also tested on + 3.14.a7 with wxPython 4.2.3). + - There are some changes, or known issues: + + - 🐞 - Rename Keywords, Find Usages/Find where used are not + finding all occurrences. Please, double-check findings and + changes. + - 🐞 - Some argument types detection (and colorization) is not + correct in Grid Editor. + - 🐞 - RIDE **DOES NOT KEEP** Test Suites formatting or + structure, causing differences in files when used on other IDE + or Editors. The option to not reformat the file is not working. + - 🐞 - In Grid Editor, when showing settings, scrolling down with + mouse or using down is not working. You can change to Text + Editor and back to Grid Editor, to restore normal behavior. + + **New Features and Fixes Highlights** + + - Fix broken installation of RIDE v2.1.4 by adding missing + dependencies. + - Added **Tools->Library Finder...** to install libraries and + **Help->Open Library Documentation...** . They share the same + dialog, and definitions are recorded in \``settings.cfg`\`. + - Added context menu to install libraries and to open documentation + in Grid Editor Import section. Same as above description. + - Added keyboard shortcuts **Ctrl-Shift-Up** and **Ctrl-Shift-Down** + as alternatives to **Alt-Up** and **Alt-Down** to move rows in + Grid and Text Editors. + - Improved vertical scroll in Grid Editor, by having main scroll + bars out of cells. + - Fixed Create Desktop Shortcut by pointing executable to **python + -m robotide**. + - Changed arguments parser to allow **--version** and **--help** + functional in Windows. + - Improved auto-complete in Grid Editor, to allow several matches. + - Fixed white blocks on Tree due to failed animation when test + execution is too rapid, causing crash on Windows. + - 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. + - 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. + - On Windows ignore false modification on files when opening Test + Suites, causing confirmation dialog. + - Added divided Status Bar. Left side for main window, right side + for Plugins. Working example in Text Editor, when selecting in + Tree shows the filename in StatusBar. + + **The minimal wxPython version is, 4.0.7, and RIDE supports the + current version, 4.2.3, which we recommend.** + + *Linux users are advised to install first wxPython from .whl package + at* + `wxPython.org `__, + or by using the system package manager. + + The + `CHANGELOG.adoc `__ + lists the changes done on the different versions. + + All issues targeted for RIDE v2.2 can be found from the `issue + tracker + milestone `__. + + Questions and comments related to the release can be sent to the + `robotframework-users `__ + mailing list or to the channel #ride on `Robot Framework + Slack `__, and + possible bugs submitted to the `issue + tracker `__. You + should see `Robot Framework + Forum `__ if your + problem is already known. + + To install the latest release with + `pip `__ installed, just run + + .. code:: literal-block + + pip install --upgrade robotframework-ride==2.1.4.1 + + to install exactly the specified release, which is the same as using + + .. code:: literal-block + + pip install --upgrade robotframework-ride + + Alternatively you can download the source distribution from + `PyPI `__ and + install it manually. For more details and other installation + approaches, see the `installation + instructions `__. + If you want to help in the development of RIDE, by reporting issues + in current development version, you can install with: + + .. code:: literal-block + + pip install -U https://github.com/robotframework/RIDE/archive/develop.zip + + Important document for helping with development is the + `CONTRIBUTING.adoc `__. + + To start RIDE from a command window, shell or terminal, just enter: + + :: + + ride + + You can also pass some arguments, like a path for a test suite file + or directory. + + :: + + ride example.robot + + Another possible way to start RIDE is: + + .. code:: literal-block + + python -m robotide + + You can then go to Tools>Create RIDE Desktop Shortcut, or run the + shortcut creation script with: + + .. code:: literal-block + + python -m robotide.postinstall -install + + or + + .. code:: literal-block + + ride_postinstall.py -install + + RIDE v2.1.4.1 was released on 24/June/2025. diff --git a/src/robotide/application/CHANGELOG.html b/src/robotide/application/CHANGELOG.html index 7248ada5f..9bb8815cc 100644 --- a/src/robotide/application/CHANGELOG.html +++ b/src/robotide/application/CHANGELOG.html @@ -1,6 +1,8 @@ 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. 2.1.4 - 2025-06-20

1.1. Added

  • +and this project adheres to Semantic Versioning.

    1. 2.1.4.1 - 2025-06-24

    1.1. Fixed

    • +Fix broken installation of RIDE v2.1.4 by adding missing dependencies. +

    2. 2.1.4 - 2025-06-20

    2.1. Added

    • Added Tools→Library Finder… to install libraries and Help→Open Library Documentation… . They share the same dialog, and definitions are recorded in ``settings.cfg``.
    • Added context menu to install libraries and to open documentation in Grid Editor Import section. Same as above description. @@ -19,7 +21,7 @@
    • Added divided Status Bar. Left side for main window, right side for Plugins. Working example in Text Editor, when selecting in Tree shows the filename in StatusBar. -

    1.2. Changed

    • +

    2.2. Changed

    • Improved vertical scroll in Grid Editor, by having main scroll bars out of cells
    • Changed arguments parser to allow ``--version`` and ``--help`` functional in Windows @@ -29,23 +31,17 @@ Changed some informative dialogs and JSON Editor to use the customized colors.
    • Modified import statements to allow running RIDE without Robot Framework installed or versions older than 6.0. -
    • -On Windows ignore false modification on files when opening Test Suites, causing confirmation dialog. -

    1.3. Fixed

    • +

    2.3. Fixed

    • Fixed Create Desktop Shortcut by pointing executable to ``python -m robotide``.
    • -Changed some informative dialogs and JSON Editor to use the customized colors. -
    • -Modified import statements to allow running RIDE without Robot Framework installed or versions older than 6.0. -
    • On Windows ignore false modification on files when opening Test Suites, causing confirmation dialog. -

    2. 2.1.3 - 2025-03-24

    2.1. Added

    • +

    3. 2.1.3 - 2025-03-24

    3.1. Added

    • Added syntax colorization for the ``GROUP`` marker.
    • Added on Text Editor, tab indentation markers and ``tab markers`` boolean setting with default ``True``.
    • Added on Text Editor, folding margin with markers style configurable with ``fold symbols`` in settings.cfg. -

    2.2. Changed

    • +

    3.2. Changed

    • Better Search element in Text Editor which allows to be cleared.
    • When saving in Text Editor, the cursor remains at position, instead of jumping to Tree selection. @@ -57,7 +53,7 @@ Improved the recognition of BDD/Gherkin prefixes when localized in autocomplete on Grid Editor.
    • Improved colorization for multiple Gherkin words, for example in the French language. -

    2.3. Fixed

    • +

    3.3. Fixed

    • Fixed white blocks on Tree due to failed animation when test execution is too rapid, causing crash on Windows.
    • Fixed not set text color on row labels in Grid Editor. Now the General ``secondary foreground`` is applied. @@ -66,19 +62,19 @@
    • 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. -

    3. 2.1.2 - 2025-01-28

    3.1. Fixed

    • +

    4. 2.1.2 - 2025-01-28

    4.1. Fixed

    • Partial fix of no update of renaming resource prefixed keywords. Issue #1230 from 29 Jan 2013.
    • Fixed no recognition of keywords with embedded arguments and full name. Issue #1106 from 12 Sep 2012. -

    4. 2.1.1 - 2024-11-14

    4.1. Changed

    • +

    5. 2.1.1 - 2024-11-14

    5.1. Changed

    • Changed the workflow for the development versions of RIDE. Now, development versions are taken from the ``develop`` branch, and the ``master`` will stay with released version.
    • Changed the way ``configobj`` code is imported. Now is a submodule obtained from https://github.com/DiffSK/configobj. -

    4.2. Fixed

    • +

    5.2. Fixed

    • Fixed broken go to definition after editing content in resource files.
    • Fixed long arguments in fixtures appearing splitted in Grid Editor. Still, arguments info will not be correct at calling step. -

    5. 2.1 - 2024-10-13

    5.1. Added

      (2.1 - 2024-10-13)
    +

6. 2.1 - 2024-10-13

6.1. Added

  (2.1 - 2024-10-13)
 - Added a setting for a specific Browser by editing the settings.cfg file. Add the string parameter
 ``browser`` in the section ``[Plugins][[Test Runner]]``.
   (2.1b1 - 2024-09-21)
@@ -133,7 +129,7 @@
 - Added ``FOR`` scope markers (``IN``, ``IN RANGE``, ``IN ENUMERATE``, ``IN ZIP``) to auto-complete list
 - Added support to read environment variable ``ROBOT_VERSION`` to apply some conditions.
 - Added note on Test Timeout that **timeout message** is not supported since Robot v3.0.1
-- Added the note, 'Colors will be active after next RIDE restart.' to the Preferences of Test Runner.

5.2. Changed

  (2.1 - 2024-10-13)
+- Added the note, 'Colors will be active after next RIDE restart.' to the Preferences of Test Runner.

6.2. Changed

  (2.1 - 2024-10-13)
 - Changed the order of insert and delete rows in Grid Editor rows context menu.
   (2.1b1 - 2024-09-21)
 - Allow to do auto-suggestions of keywords in Text Editor without a shortcut, if you want to enable or disable this feature you can config in `Tools -> Preferences -> Text Editor -> Enable auto suggestions`.
@@ -164,7 +160,7 @@
 - Changed alias marker on library imports to consider variable ``ROBOT_VERSION``. If version is lower than 6.0, uses ``'WITH NAME'``, otherwise will use ``'AS'``
   (2.0.3 - 2023-04-16)
 - Allow to do auto-suggestions of keywords in Grid Editor without a shortcut, if you want to enable or disable this feature you can config in `Tools-> Preferences -> Grid Editor -> Enable auto suggestions`
-- Made ``\\n`` visible when editing cells in Grid Editor (problematic in Windows)

5.3. Fixed

  (2.1 - 2024-10-13)
+- Made ``\\n`` visible when editing cells in Grid Editor (problematic in Windows)

6.3. Fixed

  (2.1 - 2024-10-13)
 - Fixed recognition of variables imported from YAML, JSON and Python files.
   (2.1b1 - 2024-09-21)
 - Fixed validation of multiple arguments with default values in Grid Editor.
@@ -212,18 +208,18 @@
 - Fixed clearing or emptying fixtures (Setups, Teardowns), now removes headers and synchronizes Text Editor
 - Fixed selection and persistance of colors in File Explorer and Project Tree panels
 - Fixed not using defined color for help and HTML content
-- Fixed missing newlines in sections separation

5.4. Removed

  (2.1a3 - 2024-07-22)
+- Fixed missing newlines in sections separation

6.4. Removed

  (2.1a3 - 2024-07-22)
 - Removed support for HTML file format (obsolete since Robot Framework 3.2)
-- Removed support for old Python versions, 3.6 nd 3.7.

6. 2.1b1 - 2024-09-21

6.1. Added

  • +- Removed support for old Python versions, 3.6 nd 3.7.

7. 2.1b1 - 2024-09-21

7.1. Added

  • Added color to Test Runner Console Log final output, report and log since RF v7.1rc1.
  • Added Korean language support for UI, experimental.
  • Added option ``caret style`` to change insert caret to block or line in Text Editor, by editing ``settings.cfg``. The color of the caret is the same as setting and will be adjusted for better contrast with the background. -

6.2. Changed

  • +

7.2. Changed

  • Allow to do auto-suggestions of keywords in Text Editor without a shortcut, if you want to enable or disable this feature you can config in Tools -> Preferences -> Text Editor -> Enable auto suggestions. -

6.3. Fixed

  • +

7.3. Fixed

  • Fixed validation of multiple arguments with default values in Grid Editor.
  • Fixed on Text Editor when Saving the selection of tests to run in Test Suites (Tree) is cleared. @@ -233,7 +229,7 @@ Fixed delete variable from Test Suite settings remaining in Project Explorer.
  • Fixed obsfuscation of Libraries and Metadata panels when expanding Settings in Grid Editor and Linux systems. -

7. 2.1a3 - 2024-07-22

7.1. Added

  • +

8. 2.1a3 - 2024-07-22

8.1. Added

  • Added support for Setup in keywords, since Robot Framework version 7.0.
  • Added support for new VAR marker, since Robot Framework version 7.0. @@ -274,7 +270,7 @@ Tooltips for the fields are always shown in English.
  • Colorization for language configured files is working in Text Editor. -

7.2. Fixed

  • +

8.2. Fixed

  • Fixed multiline variables in Variables section. In Text Editor they are separated by … continuation marker. In Grid Editor use | (pipe) to separate lines.
  • @@ -289,7 +285,7 @@ Fixed wrong continuation of long chains of keywords in Setups, Teardowns or Documentation
  • Fixed New User Keyword dialog not allowing empty Arguments field -

7.3. Changed

  • +

8.3. Changed

  • Improved release packaging of RIDE, by using entry_points in setuptools configuration.
  • Parsing of clipboard content to separate by cells in Grid Editor. NOTE: Need to Apply Changes in Text Editor to be effective. @@ -297,11 +293,11 @@ Improved selection of items from Tree in Text Editor. Now finds more items and selects whole line.
  • Changed output in plugin Run Anything (Macros) to allow Zoom In/Out, and Copy content. -

7.4. Removed

  • +

8.4. Removed

  • Removed support for HTML file format (obsolete since Robot Framework 3.2)
  • Removed support for old Python versions, 3.6 nd 3.7. -

8. 2.0.8.1 - 2023-11-01

8.1. Added

  • +

9. 2.0.8.1 - 2023-11-01

9.1. Added

  • Added auto update check when development version is installed
  • Added menu option ``Help→Check for Upgrade`` which allows to force update check and install development version @@ -320,7 +316,7 @@ Added variables creation shortcuts (``Ctrl-1,2,5``) to fields Arguments in Grid Editor
  • Added support for JSON variables, by using the installed Robot Framework import method -

8.2. Fixed

  • +

9.2. Fixed

  • Fixed escaped spaces showing in Text Editor on commented cells
  • Fixed resource files dissapearing from Project tree on Windows @@ -338,7 +334,7 @@ Position of cursor in Text Editor auto-suggestions when line contains multibyte characters
  • Drag and drop of variables defined with comments between resource files -

8.3. Changed

  • +

9.3. Changed

  • Improved keywords documentation search, by adding current dir to search
  • Improved Move up/down, ``Alt-UpArrow``/``Alt-DownArrow`` in Text Editor, to have proper indentation and selection @@ -354,14 +350,14 @@ Improved keyword ``Find Usages`` to return more matches. Fails to find mixed spaces and ``_``
  • In Grid Editor ``Ctrl-Shift-4`` now replaces escaped spaces ``\\ `` by spaces -

9. 2.0.7 - 2023-08-13

9.1. Added

  • +

10. 2.0.7 - 2023-08-13

10.1. Added

  • Added indication of matching brackets, ``()``, ``{}``, ``[]``, in Text Editor
  • Added context menu to RIDE tray icon. Options Show, Hide and Close
  • Added sincronization with Project Explorer to navigate to selected item, Test Case, Keyword, Variable, in Text Editor Note: This feature is working fine in Fedora 38, but not on Windows and macOS. -

9.2. Fixed

  • +

10.2. Fixed

  • Fixed non syncronized expanding/collapse of Settings panel in Grid Editor, on Linux
  • Fixed not working the deletion of cells commented with ``\# `` in Grid Editor with ``Ctrl-Shift-D`` @@ -375,17 +371,17 @@ Fixed title of User Keyword in Grid Editor always showing ``Find Usages`` instead of the keyword name
  • Fixed renaming keywords when they were arguments of ``Run Keywords`` in Setups and Teardowns -

9.3. Changed

  • +

10.3. Changed

  • Improve Text Editor auto-suggestions to keep libraries prefixes. -

10. 2.0.6 - 2023-06-10

10.1. Added

  • +

11. 2.0.6 - 2023-06-10

11.1. Added

  • Added boolean parameter ``filter newlines`` to Grid Editor with default ``True``, to hide or show newlines in cells -

10.2. Changed

  • +

11.2. Changed

  • Changed ``tasks.py`` to test ``utest/application/test_app_main.py`` isolated from the other tests
  • Improve auto-suggestions of keywords in Grid Editor by allowing to close suggestions list with keys ARROW_LEFT or ARROW_RIGHT
  • Improve Text Editor auto-suggestions by using: selected text, text at left or at right of cursor -

11. 2.0.5 - 2023-05-08

11.1. Added

  • +

12. 2.0.5 - 2023-05-08

12.1. Added

  • Added ``FOR`` scope markers (``IN``, ``IN RANGE``, ``IN ENUMERATE``, ``IN ZIP``) to auto-complete list
  • Added support to read environment variable ``ROBOT_VERSION`` to apply some conditions. @@ -393,15 +389,15 @@ Added note on Test Timeout that timeout message is not supported since Robot v3.0.1
  • Added the note, Colors will be active after next RIDE restart. to the Preferences of Test Runner. -

11.2. Changed

  • +

12.2. Changed

  • Changed alias marker on library imports to consider variable ``ROBOT_VERSION``. If version is lower than 6.0, uses ``WITH NAME``, otherwise will use ``AS`` -

12. Fixed

  • +

13. Fixed

  • Fixed auto-indent on block commands in Text Editor -

13. 2.0.3 - 2023-04-16

13.1. Changed

  • +

14. 2.0.3 - 2023-04-16

14.1. Changed

  • Allow to do auto-suggestions of keywords in Grid Editor without a shortcut, if you want to enable or disable this feature you can config in Tools-> Preferences -> Grid Editor -> Enable auto suggestions
  • Made ``\\n`` visible when editing cells in Grid Editor (problematic in Windows) -

14. Fixed

  • +

15. Fixed

  • Fixed missing auto-enclosing when in Cell Editor in Linux
  • Fixed RIDE will crash when using third party input method in Mac OS @@ -415,7 +411,7 @@ Fixed not using defined color for help and HTML content
  • Fixed missing newlines in sections separation -

15. 2.0 - 2023-03-01

15.1. Added

  (2.0rc1 - 2023-02-26)
+

16. 2.0 - 2023-03-01

16.1. Added

  (2.0rc1 - 2023-02-26)
 - Minimal support to accept `*** Comments ***` sections (unfinished code)
 - Added insert and delete cells to Text Editor, by using ``Ctrl-Shift-I`` and ``Ctrl-Shift-D``
 - Added move up and move down rows to Text Editor, by using ``Alt-Up`` and ``Alt-Down``
@@ -468,13 +464,13 @@
 - Added enclosing text in Text Editor or selected text with certain symbols
 - Added enclosing text in Grid Editor or selected text with certain symbols
 - Added 8s timer to shortcut creation dialog on install
-- Added process memory limit on Messages Log

15.2. Removed

  (2.0b2 - 2022-09-05)
+- Added process memory limit on Messages Log

16.2. Removed

  (2.0b2 - 2022-09-05)
 - Removed ``robotframeworklexer`` dependency and local copy
 - Removed alignment flag on grid cell JSON Editor (Ctrl-Shift-J)
 - Removed moving to keyword/variable definition when doing Double-Click in grid cell
   (2.0b1 - 2020-07-26)
 - Python 2.7 support
-- wxPython/wxPhoenix version conditioning

15.3. Changed

  (2.0b3 - 2023-01-15)
+- wxPython/wxPhoenix version conditioning

16.3. Changed

  (2.0b3 - 2023-01-15)
 - Hiding items in Test Suites explorer with names starting with #
 - Disabled the Close button on the Test Suites explorer
   This was causing not being possible to restore it, unless editing the settings.cfg file.
@@ -503,7 +499,7 @@
 - Changed icon background to white
 - Made Project Tree and File Explorer panels, Plugins.
 - wx.NewId() to wx.NewIdRef()
-- Separated AppendText for Messages Log

15.4. Fixed

  (2.0rc1 - 2023-02-26)
+- Separated AppendText for Messages Log

16.4. Fixed

  (2.0rc1 - 2023-02-26)
 - Fixed blank Grid Editor at keywords with steps commented with ``\# ``, by using ``Ctrl-Shift-3 on Text Editor
   (2.0b3 - 2023-01-15)
 . Fixed low performance when opening large projects
@@ -577,7 +573,7 @@
 - Fixed Settings editor
 - Fixed blank Edit screen
 - Fixed Runner arguments parsing
-- Fixed Runner Log window Chinese and Latin encoding chars on Windows

16. 2.0rc1 - 2023-02-26

16.1. Added

  • +- Fixed Runner Log window Chinese and Latin encoding chars on Windows

17. 2.0rc1 - 2023-02-26

17.1. Added

  • Minimal support to accept *** Comments *** sections (unfinished code)
  • Added insert and delete cells to Text Editor, by using ``Ctrl-Shift-I`` and ``Ctrl-Shift-D`` @@ -585,30 +581,30 @@ Added move up and move down rows to Text Editor, by using ``Alt-Up`` and ``Alt-Down``
  • Added insert and delete rows to Text Editor, by using ``Ctrl-I`` and ``Ctrl-D`` -

16.2. Removed

16.3. Changed

16.4. Fixed

  • +

17.2. Removed

17.3. Changed

17.4. Fixed

  • Fixed blank Grid Editor at keywords with steps commented with ``\# ``, by using ``Ctrl-Shift-3 on Text Editor -

17. 2.0b3 - 2023-01-15

17.1. Added

  • +

18. 2.0b3 - 2023-01-15

18.1. Added

  • Added swap row up, by using ``Ctrl-T``
  • Added commenting/uncommenting of content with ``\# ``, by using ``Ctrl-Shift-3`` and ``Ctrl-Shift-4``
  • Added support for editing .robot and .resource files with content before sections -

17.2. Removed

  • +

18.2. Removed

  • None -

17.3. Changed

  • +

18.3. Changed

  • Hiding items in Test Suites explorer with names starting with #
  • Disabled the Close button on the Test Suites explorer This was causing not being possible to restore it, unless editing the settings.cfg file. Other reason was to prevent user to closing it, after detaching the panel, and re-attaching, which has a bug making the Tree not visible. -

17.4. Fixed

  1. +

18.4. Fixed

  1. Fixed low performance when opening large projects

    • Fixed comment and uncomment in Grid Editor when cells contain more than one variables assignement
    • Fixed console log stopping to output certain characters, like chinese and latin -

18. 2.0b2 - 2022-09-05

18.1. Added

  • +

19. 2.0b2 - 2022-09-05

19.1. Added

  • Added menu entry at Help → Offline Change Log to view this file on disk
  • Added skipped tests counter and corresponding colored icon on Project tree @@ -676,13 +672,13 @@ When editing, Ctrl-Home and Ctrl-End move cursor to start and end of cell content respectively.
  • Added Del key to clear Grid Editor cell content when in navigation mode (clear like doing Ctrl-X) -
  • 18.2. Removed

    • +

    19.2. Removed

    • Removed ``robotframeworklexer`` dependency and local copy
    • Removed alignment flag on grid cell JSON Editor (Ctrl-Shift-J)
    • Removed moving to keyword/variable definition when doing Double-Click in grid cell -

    18.3. Changed

    • +

    19.3. Changed

    • Unit tests to use ``pytest`` and removed ``nose`` dependency. Support for Python 3.10 at unit test level.
    • Prevent expanding Tests and change selection on Project tree (when right-clicking) @@ -712,7 +708,7 @@ Changed Enter button in navigation mode to start editing cell, and to move to right cell when in edit mode
    • Performance improvements for loading large test suites -

    18.4. Fixed

    • +

    19.4. Fixed

    • Fixed missing menu icons on Linux (was working on Windows)
    • Fixed removal of animation in Project tree when test run is interrupted @@ -785,7 +781,7 @@ Fixed RIDE startup crash when Tree or File Explorer plugins use opened=False setting
    • Fixed error occurring when deleting test cases on Tree -

    19. 2.0b1 - 2020-07-26

    19.1. Added

    • +

    20. 2.0b1 - 2020-07-26

    20.1. Added

    • Added CHANGELOG.adoc
    • Added ignoring log.html and report.html on reporting HTML test suites @@ -803,11 +799,11 @@ Added 8s timer to shortcut creation dialog on install
    • Added process memory limit on Messages Log -

    19.2. Removed

    • +

    20.2. Removed

    • Python 2.7 support
    • wxPython/wxPhoenix version conditioning -

    19.3. Changed

    • +

    20.3. Changed

    • Improved filesystem changes detection, with a confirmation dialog to reload workspace
    • Changed dependency on wx.Window on tree panel @@ -821,7 +817,7 @@ wx.NewId() to wx.NewIdRef()
    • Separated AppendText for Messages Log -

    19.4. Fixed

    • +

    20.4. Fixed

    • Fixed editing cells in Grid Editor on wxPython 4.1
    • Fixed not saving file after deleting text in Text Editor @@ -881,12 +877,12 @@ Fixed Runner arguments parsing
    • Fixed Runner Log window Chinese and Latin encoding chars on Windows -

    20. 1.7.4.2 - 2020-01-20

    20.1. Added

    • +

    21. 1.7.4.2 - 2020-01-20

    21.1. Added

    • wxPython version locked up to 4.0.7.post2. -

    20.2. Removed

    • +

    21.2. Removed

    • None -

    20.3. Changed

    • +

    21.3. Changed

    • None -

    20.4. Fixed

    • +

    21.4. Fixed

    • None
    diff --git a/src/robotide/application/releasenotes.py b/src/robotide/application/releasenotes.py index b4e1a92b9..1e7e49398 100644 --- a/src/robotide/application/releasenotes.py +++ b/src/robotide/application/releasenotes.py @@ -172,6 +172,7 @@ def set_content(self, html_win, content):

    New Features and Fixes Highlights

      +
    • Fix broken installation of RIDE v2.1.4 by adding missing dependencies.
    • Added Tools->Library Finder... to install libraries and Help->Open Library Documentation... . They share the same dialog, and definitions are recorded in ``settings.cfg``.
    • Added context menu to install libraries and to open documentation in Grid Editor Import section. @@ -216,7 +217,7 @@ def set_content(self, html_win, content): Forum if your problem is already known.

      To install the latest release with pip installed, just run

      -pip install --upgrade robotframework-ride==2.1.4
      +pip install --upgrade robotframework-ride==2.1.4.1
       

      to install exactly the specified release, which is the same as using

      @@ -247,7 +248,7 @@ def set_content(self, html_win, content):
       
      python -m robotide.postinstall -install

      or

      ride_postinstall.py -install
      -

      RIDE {VERSION} was released on 20/June/2025.

      +

      RIDE {VERSION} was released on 24/June/2025.