Skip to content

Commit

Permalink
ENH: updating version to 0.2.2
Browse files Browse the repository at this point in the history
FIX: Help/refs.html was removed earlier (can restore later if needed)
FIX: we now require vtk5.8 to avoid XML-escaping issues
  • Loading branch information
timhutton committed Mar 28, 2012
1 parent 7ba98c7 commit 780d29b
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Ready/BUILD.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Dependencies:
0) CMake: www.cmake.org
1) VTK: www.vtk.org
1) VTK (5.8+): www.vtk.org
2) wxWidgets (2.9.2+): www.wxwidgets.org
3) any OpenCL SDK.

Expand Down Expand Up @@ -124,7 +124,7 @@ For 64-bit builds:

=========================== Linux =================================

Install: libvtk, libwxgtk (2.9+), any OpenCL SDK.
Install: libvtk, libwxgtk, any OpenCL SDK.

mkdir Ready_build
cd Ready_build
Expand Down
2 changes: 1 addition & 1 deletion Ready/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ cmake_policy( SET CMP0003 NEW )

project( Ready )

set( READY_VERSION 0.2 )
set( READY_VERSION 0.2.2 ) # check matches Help/about.html
add_definitions( -D READY_VERSION=${READY_VERSION} )

if( APPLE OR WIN32 )
Expand Down
2 changes: 1 addition & 1 deletion Ready/Help/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<tr>
<td>
<center>
<font size=+1><br><br><b>Ready, version 0.2</b><br>
<font size=+1><br><br><b>Ready, version 0.2.2</b><br> <!-- check matches CMakeLists.txt -->
</font>
<font size=-1>
<br>&copy; 2011, 2012 The Ready Bunch:<br>
Expand Down
9 changes: 9 additions & 0 deletions Ready/Help/changes.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@
<p>
<h3>Changes</h3>

<p>
<font size=+1><b>Changes in version 0.2.2 (released March 2012)</b></font>

<p>
<ul>
<li> Fixed issue that gave 'Invalid work group size' and 'expecting CL_KERNEL_WORK_GROUP_SIZE to be a power of 2' errors on different graphics cards.
<li> Fixed XML-escaping issue that caused saved patterns to fail to load.
</ul>

<p>
<font size=+1><b>Changes in version 0.2 (released March 2012)</b></font>

Expand Down
1 change: 0 additions & 1 deletion Ready/IDs.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ namespace ID { enum {
HelpView,
HelpAction,
HelpHelp,
HelpRefs,
HelpFormats,
HelpProblems,
HelpChanges,
Expand Down
3 changes: 0 additions & 3 deletions Ready/frame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ BEGIN_EVENT_TABLE(MyFrame, wxFrame)
EVT_MENU(ID::HelpView, MyFrame::OnHelp)
EVT_MENU(ID::HelpAction, MyFrame::OnHelp)
EVT_MENU(ID::HelpHelp, MyFrame::OnHelp)
EVT_MENU(ID::HelpRefs, MyFrame::OnHelp)
EVT_MENU(ID::HelpFormats, MyFrame::OnHelp)
EVT_MENU(ID::HelpProblems, MyFrame::OnHelp)
EVT_MENU(ID::HelpChanges, MyFrame::OnHelp)
Expand Down Expand Up @@ -301,7 +300,6 @@ void MyFrame::InitializeMenus()
menu->Append(ID::HelpAction, _("Action Menu"));
menu->Append(ID::HelpHelp, _("Help Menu"));
menu->AppendSeparator();
menu->Append(ID::HelpRefs, _("References"));
menu->Append(ID::HelpFormats, _("File Formats"));
menu->Append(ID::HelpProblems, _("Known Problems"));
menu->Append(ID::HelpChanges, _("Changes"));
Expand Down Expand Up @@ -1111,7 +1109,6 @@ void MyFrame::OnHelp(wxCommandEvent& event)
case ID::HelpView: this->help_panel->ShowHelp(_("Help/view.html")); break;
case ID::HelpAction: this->help_panel->ShowHelp(_("Help/action.html")); break;
case ID::HelpHelp: this->help_panel->ShowHelp(_("Help/help.html")); break;
case ID::HelpRefs: this->help_panel->ShowHelp(_("Help/refs.html")); break;
case ID::HelpFormats: this->help_panel->ShowHelp(_("Help/formats.html")); break;
case ID::HelpProblems: this->help_panel->ShowHelp(_("Help/problems.html")); break;
case ID::HelpChanges: this->help_panel->ShowHelp(_("Help/changes.html")); break;
Expand Down

0 comments on commit 780d29b

Please sign in to comment.