Skip to content

Commit

Permalink
prepared for release 1.0.4
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://svn.code.sf.net/p/webissues/code/trunk/client@1777 c8fa975d-6fd4-4e76-b3b8-1a99b2ee3549
  • Loading branch information
mimecorg committed Nov 27, 2012
1 parent 2fd80ec commit 962e602
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 16 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion INSTALL
Original file line number Diff line number Diff line change
@@ -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/)

Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
4 changes: 2 additions & 2 deletions packages/win32/launcher.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
**************************************************************************/

!define VERSION "1.0.3"
!define BUILDVERSION "1.0.3.4610"
!define VERSION "1.0.4"
!define BUILDVERSION "1.0.4.4714"

!define SRCDIR "..\.."

Expand Down
4 changes: 2 additions & 2 deletions packages/win32/portable.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
**************************************************************************/

!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"
Expand Down
4 changes: 2 additions & 2 deletions packages/win32/portable/appinfo.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/win32/portable/help.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<h1><img src="App/WebIssues/doc/en/common/webissues.png" alt="WebIssues" id="logo" />WebIssues Portable Client</h1>
</div>
<div id="header-right">
<h2 class="subtitle">Version 1.0.3</h2>
<h2 class="subtitle">Version 1.0.4</h2>
</div>
</div>
<div id="infobar">
Expand Down
4 changes: 2 additions & 2 deletions packages/win32/webissues.nsh
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
**************************************************************************/

!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"
Expand Down
2 changes: 1 addition & 1 deletion src/application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions src/webissues.rc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down

0 comments on commit 962e602

Please sign in to comment.