Skip to content

Commit

Permalink
Preparation for v3.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
marco-calautti committed Dec 30, 2023
1 parent b4054f2 commit 171560a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ Delta Patcher is a GUI software that is able to create and apply xdelta patches.
2. Changelog
-------------------------

v3.1.2:
- Log is now hidden by default: patch descriptions are shown in a tooltip when a patch is loaded.
- For common patching errors (most notably checksum mismatch), a more user friendly messages is shown to the user.

v3.1.1:
- Fixed message dialogs not showing in patch creation mode.

Expand Down
4 changes: 2 additions & 2 deletions app/include/common/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
#include <common/COPYING.h>

#ifdef __DP_DECODE_ONLY__
#define __DP_VERSION__ wxT("3.1.1 Lite")
#define __DP_VERSION__ wxT("3.1.2 Lite")
#else
#define __DP_VERSION__ wxT("3.1.1")
#define __DP_VERSION__ wxT("3.1.2")
#endif

#define __DP_DISCLAIMER__ _("This program is free software: you can redistribute it\nand/or modify it under the terms of the GNU General\nPublic License as published by the Free Software Foundation,\nversion 2.0.")
Expand Down
4 changes: 2 additions & 2 deletions app/mac_stuff/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>3.1.1</string>
<string>3.1.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>3.1.1</string>
<string>3.1.2</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.developer-tools</string>
<key>NSHumanReadableCopyright</key>
Expand Down
8 changes: 4 additions & 4 deletions app/win_stuff/resource.rc
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ mondrian ICON "icon.ico" //exe icon (Windows only)
#include <wx/msw/wx.rc> //Enables Windows Styles

VS_VERSION_INFO VERSIONINFO
FILEVERSION 3,1,1,0
PRODUCTVERSION 3,1,1,0
FILEVERSION 3,1,2,0
PRODUCTVERSION 3,1,2,0
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -20,12 +20,12 @@ BEGIN
BLOCK "000004b0"
BEGIN
VALUE "FileDescription", "XDelta patching Utility"
VALUE "FileVersion", "3, 1, 1, 0"
VALUE "FileVersion", "3, 1, 2, 0"
VALUE "InternalName", "DeltaPatcher"
VALUE "LegalCopyright", "Copyright (C) 2010+ Phoenix"
VALUE "OriginalFilename", "DeltaPatcher.exe"
VALUE "ProductName", "Delta Patcher"
VALUE "ProductVersion", "3, 1, 1, 0"
VALUE "ProductVersion", "3, 1, 2, 0"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 171560a

Please sign in to comment.