Skip to content

Commit

Permalink
prepared for release 1.0.3
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@1744 c8fa975d-6fd4-4e76-b3b8-1a99b2ee3549
  • Loading branch information
mimecorg committed Aug 15, 2012
1 parent d5e4386 commit e135236
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 15 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.0.3 (2012-08-15)
* added Dutch and Spanish translations
* managing projects for the selected user
* fixed filtering issues with empty operands
* fixed showing main window after calling 'go to item' from tray

1.0.2 (2012-05-28)
* added Chinese translation
* remember last selected history filter
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.2 (2012-05-28)
Version 1.0.3 (2012-08-15)

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.2"
!define BUILDVERSION "1.0.2.4531"
!define VERSION "1.0.3"
!define BUILDVERSION "1.0.3.4610"

!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.2"
!define BUILDVERSION "1.0.2.4531"
!define VERSION "1.0.3"
!define BUILDVERSION "1.0.3.4610"

!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.2.4531
DisplayVersion=1.0.2
PackageVersion=1.0.3.4610
DisplayVersion=1.0.3

[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.2</h2>
<h2 class="subtitle">Version 1.0.3</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.2"
!define BUILDVERSION "1.0.1.4531"
!define VERSION "1.0.3"
!define BUILDVERSION "1.0.3.4610"

!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 @@ -293,7 +293,7 @@ void Application::openDownloads()

QString Application::version() const
{
return QString( "1.0.2" );
return QString( "1.0.3" );
}

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,2,4531
PRODUCTVERSION 1,0,2,4531
FILEVERSION 1,0,3,4610
PRODUCTVERSION 1,0,3,4610
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.2"
VALUE "FileVersion", "1.0.3"
VALUE "LegalCopyright", "Copyright (C) 2007-2012 WebIssues Team"
VALUE "OriginalFilename", "webissues.exe"
VALUE "ProductName", "WebIssues Desktop Client"
VALUE "ProductVersion", "1.0.2"
VALUE "ProductVersion", "1.0.3"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit e135236

Please sign in to comment.