Skip to content

Commit

Permalink
preparation for 2.4.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
akeddy committed Aug 27, 2015
1 parent cade852 commit d5a23d7
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 8 deletions.
14 changes: 13 additions & 1 deletion bin/release_notes.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,23 @@
<body>
<img src="images/CrazyEye/linux/CrazyEye_Run_32x32.png" width="32" height="32" alt="CrazyEye_Run_32x32"/>

<p>Copyright &copy 2009, 2010, 2011, 2012, 2013, 2014 Robert Beiko (beiko@cs.dal.ca)</p>
<p>Copyright &copy 2009, 2010, 2011, 2012, 2013, 2014, 2015 Robert Beiko (beiko@cs.dal.ca)</p>
<p><i>An application for merging geographic data with information about biological sequences collected from the environment.</i></p>
<h3>New Features</h3>
<p>See <b>kiwi.cs.dal.ca/GenGIS/Revision_History</b> for all bug fixes.</p>

<h4>Version 2.4.1 (August 27, 2015)</h4>

<ul>
<li> Updated GBIF plugin to work with new API.<\li>
<li> Improved error handling for MG-RAST plugin.<\li>
<li> Added the option to save all images when using ShowSpread.<\li>
<li> Functional speedup to Gridding.<\li>
<li> Bug fixes in CCA plugin.<\li>

</ul>


<h4>Version 2.4.0 (November 13, 2014)</h4>

<ul>
Expand Down
2 changes: 1 addition & 1 deletion src/core/App.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ App::App():
m_bCurrentlySerializing( false ),
m_bSaveIsUpToDate( true ),
m_bIsEmptySession( true ),
m_appVersion( wxT( "2.4.0" ) )
m_appVersion( wxT( "2.4.1" ) )
{
m_colourMapManager.reset(new ColourMapManager());
std::wstring colourMapPath = (GetExeDir() + wxT("colourMaps")).c_str();
Expand Down
5 changes: 3 additions & 2 deletions src/core/App.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,10 @@ namespace GenGIS
V2_30Pre1 = 11,
V2_30 = 12,
V2_40 = 13,
//V2_41
V2_41 = 14,
//V2_42 = 15,
//
GENGIS_VERSION = V2_40,
GENGIS_VERSION = V2_41,
SAVE_VERSION = V2_40 /* For serialization: The last version of GenGIS
whose session file is compatible with this release. */
};
Expand Down
8 changes: 4 additions & 4 deletions win32/InnoInstaller/GenGIS.iss
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
; NOTE: The value of AppId uniquely identifies this application.
; Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{40FCE293-A3EA-4CDC-9230-5767069AF088}
AppId={{F8901CDF-C145-4EDF-B76D-0E53F8408F5F}
AppName=GenGIS
AppVerName=GenGIS v2.4.0
AppVerName=GenGIS v2.4.1
; Remember to update the APP_VERSION::CURRENT enum in 'App.hpp' to match the AppVerName number
AppPublisher=Beiko Lab
AppPublisherURL=http://kiwi.cs.dal.ca/GenGIS
AppSupportURL=http://kiwi.cs.dal.ca/GenGIS
AppUpdatesURL=http://kiwi.cs.dal.ca/GenGIS
DefaultDirName={pf}\GenGIS2.4.0
DefaultGroupName=GenGIS2.4.0
DefaultDirName={pf}\GenGIS2.4.1
DefaultGroupName=GenGIS2.4.1
AllowNoIcons=yes
LicenseFile=..\..\bin\license.txt
OutputDir=..\..\win32\InnoInstaller\Setup
Expand Down

0 comments on commit d5a23d7

Please sign in to comment.