update NEWS and VERSION

This commit is contained in:
Dag Heyman 2020-05-11 00:13:56 -07:00
parent fa0464f26d
commit 2e5c443c46
No known key found for this signature in database
GPG Key ID: 06FC004369E7D338
5 changed files with 15 additions and 6 deletions

9
NEWS
View File

@ -1,3 +1,12 @@
* Version 5.0.4 (unreleased)
** New app icons on all platforms
** Adjust the behaviour of the search bar, do not search accounts without having focus
** Bugfix: Fix keyboard shortcut to copy account code
** Bugfix: Show firmware version for YubiKey NEO correctly
** Windows: Show correct version number in .msi installers
** macOS: Fix issue with window positioning
** Linux: Fix the app icon and desktop entry for the Snap package.
* Version 5.0.3 (released 2020-04-14)
** macOS: Make the app available in the macOS App Store
** Windows: Make the app available in the Microsoft Store (for Windows 10 20.04 and higher)

View File

@ -19,7 +19,7 @@
<key>CFBundleName</key>
<string>Yubico Authenticator</string>
<key>CFBundleVersion</key>
<string>2</string>
<string>1</string>
<key>CFBundleShortVersionString</key>
<string>@FULL_VERSION@</string>
<key>LSApplicationCategoryType</key>

View File

@ -1,7 +1,7 @@
<?xml version="1.0"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
<?define ProductVersion="5.0.3" ?>
<?define ProductVersion="5.0.4" ?>
<?define ProductName="Yubico Authenticator" ?>
<Product Id="*" UpgradeCode="fcbafc57-6409-47b8-b861-20bda48cd4f6" Name="$(var.ProductName)" Version="$(var.ProductVersion)" Manufacturer="Yubico AB" Language="1033">

View File

@ -1,7 +1,7 @@
<?xml version="1.0"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
<?define ProductVersion="5.0.3" ?>
<?define ProductVersion="5.0.4" ?>
<?define ProductName="Yubico Authenticator" ?>
<Product Id="*" UpgradeCode="fcbafc57-6409-47b8-b861-20bda48cd4f6" Name="$(var.ProductName)" Version="$(var.ProductVersion)" Manufacturer="Yubico AB" Language="1033">

View File

@ -6,16 +6,16 @@ HEADERS += screenshot.h
# This is the internal verson number, Windows requires 4 digits.
win32|win64 {
VERSION = 5.0.3.0
VERSION = 5.0.4.0
QMAKE_TARGET_COMPANY = Yubico
QMAKE_TARGET_PRODUCT = Yubico Authenticator
QMAKE_TARGET_DESCRIPTION = Yubico Authenticator
QMAKE_TARGET_COPYRIGHT = Copyright (c) 2020 Yubico AB
} else {
VERSION = 5.0.3
VERSION = 5.0.4
}
# This is the version shown on the About page
DEFINES += APP_VERSION=\\\"5.0.3\\\"
DEFINES += APP_VERSION=\\\"5.0.4-beta1\\\"
message(Version of this build: $$VERSION)