Skip to content

Commit e838836

Browse files
committed
version 1.4b3
1 parent 862597a commit e838836

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4b2
1+
1.4b3

src/robotide/application/releasenotes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def _create_view(self):
8686
# Release notes are updated automatically by package.py script whenever
8787
# a numbered distribution is created.
8888
RELEASE_NOTES = """
89-
<h2>Release notes for 1.4b2</h2>
89+
<h2>Release notes for 1.4b3</h2>
9090
<table border="1">
9191
<tr>
9292
<td><p><b>ID</b></p></td>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
from robotide.editor import grid
2+
3+
4+
class VariableTableEditor(grid.GridEditor):
5+
6+
def __init__(self, parent, tree, variables):
7+
super(VariableTableEditor, self).__init__(parent, 5, 5)
8+
self.SetRowLabelSize(0)
9+
#self.SetDefaultColSize(175)
10+
for row, var in enumerate(variables):
11+
self.write_cell(row, 0, var.name)
12+
for cell, v in enumerate(var.value):
13+
self.write_cell(row, cell + 1, v)
14+
#self.AutoSizeRows()
15+
16+
def close(self):
17+
pass

src/robotide/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Automatically generated by `pavement.py`.
2-
VERSION = '1.4b2'
2+
VERSION = '1.4b3'

0 commit comments

Comments
 (0)