diff --git a/ChangeLog b/ChangeLog index 30ba7e8..d130b5d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +1.0.4 (2012-11-27) + * simplified issue properties and history + * added settings and preferences for history order and filter + * added initial view for issue type + * added Today button when adding and editing an issue + 1.0.3 (2012-08-15) * added Dutch and Spanish translations * managing projects for the selected user diff --git a/INSTALL b/INSTALL index 293a946..653a871 100644 --- a/INSTALL +++ b/INSTALL @@ -1,7 +1,7 @@ Requirements ============ - * Qt framework, version 4.4.2 or newer (http://qt.nokia.com/products) + * Qt framework, version 4.4.2 or newer (http://qt.digia.com/product/) * Optional: OpenSLL toolkit (http://www.openssl.org/) diff --git a/README b/README index 1afd6e7..9b93e0f 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ WebIssues Desktop Client -Version 1.0.3 (2012-08-15) +Version 1.0.4 (2012-11-27) Desktop Client for the WebIssues team collaboration system. diff --git a/packages/win32/launcher.nsi b/packages/win32/launcher.nsi index 440f9d0..e1e2f45 100644 --- a/packages/win32/launcher.nsi +++ b/packages/win32/launcher.nsi @@ -19,8 +19,8 @@ * along with this program. If not, see . **************************************************************************/ -!define VERSION "1.0.3" -!define BUILDVERSION "1.0.3.4610" +!define VERSION "1.0.4" +!define BUILDVERSION "1.0.4.4714" !define SRCDIR "..\.." diff --git a/packages/win32/portable.nsi b/packages/win32/portable.nsi index 347b1d9..9981883 100644 --- a/packages/win32/portable.nsi +++ b/packages/win32/portable.nsi @@ -19,8 +19,8 @@ * along with this program. If not, see . **************************************************************************/ -!define VERSION "1.0.3" -!define BUILDVERSION "1.0.3.4610" +!define VERSION "1.0.4" +!define BUILDVERSION "1.0.4.4714" !define SRCDIR "..\.." !define BUILDDIR "bin" diff --git a/packages/win32/portable/appinfo.ini b/packages/win32/portable/appinfo.ini index b8acfa4..ccb3a33 100644 --- a/packages/win32/portable/appinfo.ini +++ b/packages/win32/portable/appinfo.ini @@ -16,8 +16,8 @@ Freeware=true CommercialUse=true [Version] -PackageVersion=1.0.3.4610 -DisplayVersion=1.0.3 +PackageVersion=1.0.4.4714 +DisplayVersion=1.0.4 [Control] Icons=1 diff --git a/packages/win32/portable/help.html b/packages/win32/portable/help.html index 0d032dc..014d4ea 100644 --- a/packages/win32/portable/help.html +++ b/packages/win32/portable/help.html @@ -14,7 +14,7 @@

WebIssues Portable Client

-

Version 1.0.3

+

Version 1.0.4

diff --git a/packages/win32/webissues.nsh b/packages/win32/webissues.nsh index a5b366b..793d32d 100644 --- a/packages/win32/webissues.nsh +++ b/packages/win32/webissues.nsh @@ -17,8 +17,8 @@ * along with this program. If not, see . **************************************************************************/ -!define VERSION "1.0.3" -!define BUILDVERSION "1.0.3.4610" +!define VERSION "1.0.4" +!define BUILDVERSION "1.0.4.4714" !define SRCDIR "..\.." !define BUILDDIR "..\..\release" diff --git a/src/application.cpp b/src/application.cpp index 2fbd264..5153da2 100644 --- a/src/application.cpp +++ b/src/application.cpp @@ -294,7 +294,7 @@ void Application::openDownloads() QString Application::version() const { - return QString( "1.0.3" ); + return QString( "1.0.4" ); } QString Application::protocolVersion() const diff --git a/src/webissues.rc b/src/webissues.rc index b824526..e82a2ef 100644 --- a/src/webissues.rc +++ b/src/webissues.rc @@ -3,8 +3,8 @@ IDI_ICON1 ICON DISCARDABLE "webissues.ico" VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,0,3,4610 - PRODUCTVERSION 1,0,3,4610 + FILEVERSION 1,0,4,4714 + PRODUCTVERSION 1,0,4,4714 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -21,11 +21,11 @@ BEGIN BEGIN VALUE "CompanyName", "WebIssues Team" VALUE "FileDescription", "WebIssues Desktop Client" - VALUE "FileVersion", "1.0.3" + VALUE "FileVersion", "1.0.4" VALUE "LegalCopyright", "Copyright (C) 2007-2012 WebIssues Team" VALUE "OriginalFilename", "webissues.exe" VALUE "ProductName", "WebIssues Desktop Client" - VALUE "ProductVersion", "1.0.3" + VALUE "ProductVersion", "1.0.4" END END BLOCK "VarFileInfo"