From 15695ce396ce7cb54585f6e276d3793f151f15a5 Mon Sep 17 00:00:00 2001 From: John Preston Date: Fri, 1 Nov 2019 21:23:13 +0300 Subject: [PATCH] Version 0.9.2. - Floating dates in transaction history. - Bug fixes. --- Wallet/Resources/win/Wallet.rc | 8 ++++---- Wallet/SourceFiles/core/version.h | 4 ++-- Wallet/build/version | 6 +++--- changelog.txt | 5 +++++ 4 files changed, 14 insertions(+), 9 deletions(-) diff --git a/Wallet/Resources/win/Wallet.rc b/Wallet/Resources/win/Wallet.rc index 48de3b4..99f9f80 100644 --- a/Wallet/Resources/win/Wallet.rc +++ b/Wallet/Resources/win/Wallet.rc @@ -33,8 +33,8 @@ IDI_ICON1 ICON "..\\art\\icon256.ico" // VS_VERSION_INFO VERSIONINFO - FILEVERSION 0,9,1,0 - PRODUCTVERSION 0,9,1,0 + FILEVERSION 0,9,2,0 + PRODUCTVERSION 0,9,2,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -51,10 +51,10 @@ BEGIN BEGIN VALUE "CompanyName", "Telegram FZ-LLC" VALUE "FileDescription", "Gram Wallet" - VALUE "FileVersion", "0.9.1.0" + VALUE "FileVersion", "0.9.2.0" VALUE "LegalCopyright", "Copyright (C) 2019" VALUE "ProductName", "Gram Wallet" - VALUE "ProductVersion", "0.9.1.0" + VALUE "ProductVersion", "0.9.2.0" END END BLOCK "VarFileInfo" diff --git a/Wallet/SourceFiles/core/version.h b/Wallet/SourceFiles/core/version.h index 623dcc5..f23c580 100644 --- a/Wallet/SourceFiles/core/version.h +++ b/Wallet/SourceFiles/core/version.h @@ -6,5 +6,5 @@ // #pragma once -inline constexpr auto AppVersion = 9001; -inline constexpr auto AppVersionStr = "0.9.1"; +inline constexpr auto AppVersion = 9002; +inline constexpr auto AppVersionStr = "0.9.2"; diff --git a/Wallet/build/version b/Wallet/build/version index 3a69802..6f8984e 100644 --- a/Wallet/build/version +++ b/Wallet/build/version @@ -1,4 +1,4 @@ -AppVersion 9001 +AppVersion 9002 AppVersionStrMajor 0.9 -AppVersionStrSmall 0.9.1 -AppVersionStr 0.9.1 +AppVersionStrSmall 0.9.2 +AppVersionStr 0.9.2 diff --git a/changelog.txt b/changelog.txt index eb6cac5..8cbbe4c 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,8 @@ +0.9.2 (01.11.19) + +- Floating dates in transaction history. +- Bug fixes. + 0.9.1 (31.10.19) - Initial release.