mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-01-22 20:51:23 -05:00
Version Bump and Deployment Fixes
* Use KeePassXC executable icon for the start menu shortcut on Windows to prevent the icon from being deleted on installation of a new version. Fixes #4226 * Support improvements to windeployqt in Qt 5.14.1+
This commit is contained in:
parent
b2c2f42f30
commit
4ff781fa48
@ -1,6 +1,6 @@
|
||||
# Changelog
|
||||
|
||||
## 2.6 (unreleased)
|
||||
## 2.6.0 (unreleased)
|
||||
|
||||
### Added
|
||||
- Added CLI db-info command [#4231]
|
||||
|
@ -99,8 +99,8 @@ if(NOT WITH_XC_NETWORKING AND WITH_XC_UPDATECHECK)
|
||||
endif()
|
||||
|
||||
set(KEEPASSXC_VERSION_MAJOR "2")
|
||||
set(KEEPASSXC_VERSION_MINOR "5")
|
||||
set(KEEPASSXC_VERSION_PATCH "3")
|
||||
set(KEEPASSXC_VERSION_MINOR "6")
|
||||
set(KEEPASSXC_VERSION_PATCH "0")
|
||||
set(KEEPASSXC_VERSION "${KEEPASSXC_VERSION_MAJOR}.${KEEPASSXC_VERSION_MINOR}.${KEEPASSXC_VERSION_PATCH}")
|
||||
set(OVERRIDE_VERSION "" CACHE STRING "Override the KeePassXC Version for Snapshot builds")
|
||||
|
||||
|
@ -50,6 +50,11 @@
|
||||
</screenshots>
|
||||
|
||||
<releases>
|
||||
<release version="2.6.0" date="2020-04-01">
|
||||
<description>
|
||||
<ul><li>TBD</li></ul>
|
||||
</description>
|
||||
</release>
|
||||
<release version="2.5.3" date="2020-01-19">
|
||||
<description>
|
||||
<ul>
|
||||
|
@ -64,7 +64,6 @@
|
||||
<Shortcut Id="ApplicationStartMenuShortcut"
|
||||
Name="KeePassXC"
|
||||
Target="[#CM_FP_KeePassXC.exe]"
|
||||
Icon="ProductIcon.ico"
|
||||
WorkingDirectory="INSTALL_ROOT"/>
|
||||
<RemoveFolder Id="ApplicationProgramsFolder" On="uninstall"/>
|
||||
<RegistryValue Root="HKCU" Key="Software\KeePassXC" Name="installed" Type="integer" Value="1" KeyPath="yes"/>
|
||||
|
@ -1,5 +1,5 @@
|
||||
name: keepassxc
|
||||
version: 2.5.3
|
||||
version: 2.6.0
|
||||
grade: stable
|
||||
summary: Community-driven port of the Windows application “KeePass Password Safe”
|
||||
description: |
|
||||
|
@ -465,9 +465,11 @@ if(MINGW)
|
||||
COMPONENT Runtime)
|
||||
|
||||
# Use windeployqt.exe to setup Qt dependencies
|
||||
set(WINDEPLOYQT_MODE "--release")
|
||||
if(CMAKE_BUILD_TYPE_LOWER STREQUAL "debug")
|
||||
set(WINDEPLOYQT_MODE "--debug")
|
||||
if(Qt5Core_VERSION VERSION_LESS "5.14.1")
|
||||
set(WINDEPLOYQT_MODE "--release")
|
||||
if(CMAKE_BUILD_TYPE_LOWER STREQUAL "debug")
|
||||
set(WINDEPLOYQT_MODE "--debug")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
install(CODE "execute_process(COMMAND ${WINDEPLOYQT_EXE} ${PROGNAME}.exe ${WINDEPLOYQT_MODE} WORKING_DIRECTORY \${CMAKE_INSTALL_PREFIX} OUTPUT_QUIET)"
|
||||
|
Loading…
Reference in New Issue
Block a user