Skip to content

Commit

Permalink
Updated version strings & ChangeLog for 3.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-ter committed Feb 22, 2015
1 parent 272e2b0 commit 134513c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion forms/frmmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1812,7 +1812,7 @@ void frmMain::OnSecureAddVarClick(wxCommandEvent& WXUNUSED(event)){
void frmMain::OnAboutClick(wxCommandEvent& WXUNUSED(event)){
wxAboutDialogInfo info;
info.SetName(wxT("Toucan"));
info.SetVersion(wxT("3.1.3-pre.1"));
info.SetVersion(wxT("3.1.3"));
info.SetDescription(wxString::Format(wxT("Built on %s at %s"), __TDATE__, __TTIME__));
info.SetCopyright(wxT("(C) 2006-2013 Steven Lamerton \nName by Danny Mensingh\nMain icons by Neorame\nOther icons by the Oxygen Project\n7Zip and ccrypt are by their respective teams.\nAll items (C) their owners."));
info.SetWebSite(wxT("http://portableapps.com/toucan"));
Expand Down
6 changes: 6 additions & 0 deletions help/source/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Changelog
=========

3.1.3 (3014-01-19)
==================

- Fixed "--log" option not working when used with non-GUI mode (`bug #7 <https://sourceforge.net/p/alt-toucan/tickets/7/>`_)
- Minor documentation fixes (Toucan version strings mostly)

3.1.2 (2013-11-17)
==================

Expand Down
2 changes: 1 addition & 1 deletion help/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
# The short X.Y version.
version = '3.1'
# The full version, including alpha/beta/rc tags.
release = '3.1.3-pre.1'
release = '3.1.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion luathread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ LuaThread::LuaThread(const wxString &line) : wxThread(), m_Command(line){
}

void *LuaThread::Entry(){
OutputProgress("Toucan 3.1.3-pre.1", StartingLine);
OutputProgress("Toucan 3.1.3", StartingLine);
OutputProgress(_("Date:") + " " + m_StartTime.FormatISODate(), StartingInfo);
OutputProgress(_("Computer Name:") + " " + wxGetHostName(), StartingInfo);
OutputProgress(_("Operating System:") + " " + wxGetOsDescription(), StartingInfo);
Expand Down

0 comments on commit 134513c

Please sign in to comment.