Skip to content

Commit

Permalink
prepared to release 1.1.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@2210 c8fa975d-6fd4-4e76-b3b8-1a99b2ee3549
  • Loading branch information
mimecorg committed Aug 10, 2015
1 parent 1ff06d6 commit d050b55
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 11 deletions.
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
1.1.4 (2015-08-10)
* ported to Qt5
* fixed support for long TLDs in email addresses
* fixed internal links in exported HTML documents
* fixed handling large lists of drop down items
* updated prettify.js to newer version

1.1.3 (2015-03-11)
* added Chinese translation
* archiving projects
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.1.3 (2015-03-11)
Version 1.1.4 (2015-08-10)

Desktop Client for the WebIssues team collaboration system.

Expand Down
4 changes: 2 additions & 2 deletions packages/win32/build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

if "%1" == "" goto usage

set VERSION=1.1.3
set BUILDVERSION=1.1.3.5549
set VERSION=1.1.4
set BUILDVERSION=1.1.4.5701

set NSISDIR=C:\Program Files (x86)\NSIS\Unicode

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.1.3.5549
DisplayVersion=1.1.3
PackageVersion=1.1.4.5701
DisplayVersion=1.1.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.1.3</h2>
<h2 class="subtitle">Version 1.1.4</h2>
</div>
</div>
<div id="infobar">
Expand Down
2 changes: 1 addition & 1 deletion src/application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ void Application::openDownloads()

QString Application::version() const
{
return QString( "1.1.3" );
return QString( "1.1.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 @@
1 ICON "webissues.ico"

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,1,3,5549
PRODUCTVERSION 1,1,3,5549
FILEVERSION 1,1,4,5701
PRODUCTVERSION 1,1,4,5701
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.1.3"
VALUE "FileVersion", "1.1.4"
VALUE "LegalCopyright", "Copyright (C) 2007-2015 WebIssues Team"
VALUE "OriginalFilename", "webissues.exe"
VALUE "ProductName", "WebIssues Desktop Client"
VALUE "ProductVersion", "1.1.3"
VALUE "ProductVersion", "1.1.4"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit d050b55

Please sign in to comment.