Skip to content

Commit

Permalink
Change the order of insert and delete rows in Grid Editor rows contex…
Browse files Browse the repository at this point in the history
…t menu (#2894)
  • Loading branch information
HelioGuilherme66 authored Oct 2, 2024
1 parent 81b31da commit b1f9b08
Show file tree
Hide file tree
Showing 6 changed files with 57 additions and 50 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ The format is based on http://keepachangelog.com/en/1.0.0/[Keep a Changelog]
and this project adheres to http://semver.org/spec/v2.0.0.html[Semantic Versioning].


// == https://github.com/robotframework/RIDE[Unreleased]
== https://github.com/robotframework/RIDE[Unreleased]

=== Changed

- Changed the order of insert and delete rows in Grid Editor rows context menu.

== https://github.com/robotframework/RIDE/blob/master/doc/releasenotes/ride-2.1b1.rst[2.1b1] - 2024-09-21

Expand Down
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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.12) Install current development version (**2.1dev83**) with:
(3.8 <= python <= 3.12) Install current development version (**2.1dev84**) with:

`pip install -U https://github.com/robotframework/RIDE/archive/master.zip`

Expand Down
86 changes: 44 additions & 42 deletions src/robotide/application/CHANGELOG.html

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/robotide/application/releasenotes.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ def set_content(self, html_win, content):
</ul>
<p><strong>New Features and Fixes Highlights</strong></p>
<ul class="simple">
<li>Changed the order of insert and delete rows in Grid Editor rows context menu.</li>
<li>Fixed validation of multiple arguments with default values in Grid Editor.</li>
<li>Added color to Test Runner Console Log final output, report and log since RF v7.1rc1.</li>
<li>Fixed on Text Editor when Saving the selection of tests to run in Test Suites (Tree) is cleared.</li>
Expand Down Expand Up @@ -335,7 +336,7 @@ def set_content(self, html_win, content):
<pre class="literal-block">python -m robotide.postinstall -install</pre>
<p>or</p>
<pre class="literal-block">ride_postinstall.py -install</pre>
<p>RIDE {VERSION} was released on 01/October/2024.</p>
<p>RIDE {VERSION} was released on 02/October/2024.</p>
<!-- <br/>
<h3>May The Fourth Be With You!</h3>
<h3>Celebrate the bank holiday, 10th June, Day of Portugal, Portuguese Communities and Camões!!</h3>
Expand Down
8 changes: 4 additions & 4 deletions src/robotide/editor/kweditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,25 +350,25 @@ def _row_label_right_click(self, event):
self.SelectRow(selected_row, addToSelected=False)
self.SetGridCursor(event.Row, 0)
popupitems = [
_('Insert Rows\tCtrl-I'),
_('Delete Rows\tCtrl-D'),
_('Comment Rows\tCtrl-3'),
_('Uncomment Rows\tCtrl-4'),
_('Move Rows Up\tAlt-Up'),
_('Move Rows Down\tAlt-Down'),
_('Swap Row Up\tCtrl-T'),
_('Insert Rows\tCtrl-I'),
_('Delete Rows\tCtrl-D'),
'---',
_('Comment Cells\tCtrl-Shift-3'),
_('Uncomment Cells\tCtrl-Shift-4'),
]
popupitems_nt = [
'Insert Rows\tCtrl-I',
'Delete Rows\tCtrl-D',
'Comment Rows\tCtrl-3',
'Uncomment Rows\tCtrl-4',
'Move Rows Up\tAlt-Up',
'Move Rows Down\tAlt-Down',
'Swap Row Up\tCtrl-T',
'Insert Rows\tCtrl-I',
'Delete Rows\tCtrl-D',
'---',
'Comment Cells\tCtrl-Shift-3',
'Uncomment Cells\tCtrl-Shift-4',
Expand Down
2 changes: 1 addition & 1 deletion src/robotide/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
#
# Automatically generated by `tasks.py`.

VERSION = 'v2.1dev83'
VERSION = 'v2.1dev84'

0 comments on commit b1f9b08

Please sign in to comment.