mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-03-03 11:49:29 -05:00
Bump version to 2.7.0
This commit is contained in:
parent
cd519e1bf3
commit
fb8423fdca
@ -1,5 +1,13 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2.7.0 (in development)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
## 2.6.2 (2020-10-21)
|
## 2.6.2 (2020-10-21)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -99,8 +99,8 @@ if(NOT WITH_XC_NETWORKING AND WITH_XC_UPDATECHECK)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
set(KEEPASSXC_VERSION_MAJOR "2")
|
set(KEEPASSXC_VERSION_MAJOR "2")
|
||||||
set(KEEPASSXC_VERSION_MINOR "6")
|
set(KEEPASSXC_VERSION_MINOR "7")
|
||||||
set(KEEPASSXC_VERSION_PATCH "2")
|
set(KEEPASSXC_VERSION_PATCH "0")
|
||||||
set(KEEPASSXC_VERSION "${KEEPASSXC_VERSION_MAJOR}.${KEEPASSXC_VERSION_MINOR}.${KEEPASSXC_VERSION_PATCH}")
|
set(KEEPASSXC_VERSION "${KEEPASSXC_VERSION_MAJOR}.${KEEPASSXC_VERSION_MINOR}.${KEEPASSXC_VERSION_PATCH}")
|
||||||
set(OVERRIDE_VERSION "" CACHE STRING "Override the KeePassXC Version for Snapshot builds")
|
set(OVERRIDE_VERSION "" CACHE STRING "Override the KeePassXC Version for Snapshot builds")
|
||||||
|
|
||||||
|
@ -21,21 +21,22 @@ message(STATUS "Using asciidoctor: ${ASCIIDOCTOR_EXE}")
|
|||||||
|
|
||||||
set(DOC_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
set(DOC_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
||||||
set(OUT_DIR ${CMAKE_CURRENT_BINARY_DIR})
|
set(OUT_DIR ${CMAKE_CURRENT_BINARY_DIR})
|
||||||
|
set(REV -a revnumber=${KEEPASSXC_VERSION})
|
||||||
|
|
||||||
# Build html documentation on all platforms
|
# Build html documentation on all platforms
|
||||||
file(GLOB html_depends ${DOC_DIR}/topics/* ${DOC_DIR}/styles/* ${DOC_DIR}/images/*)
|
file(GLOB html_depends ${DOC_DIR}/topics/* ${DOC_DIR}/styles/* ${DOC_DIR}/images/*)
|
||||||
add_custom_command(OUTPUT KeePassXC_GettingStarted.html
|
add_custom_command(OUTPUT KeePassXC_GettingStarted.html
|
||||||
COMMAND ${ASCIIDOCTOR_EXE} -D ${OUT_DIR} -o KeePassXC_GettingStarted.html ${DOC_DIR}/GettingStarted.adoc
|
COMMAND ${ASCIIDOCTOR_EXE} -D ${OUT_DIR} -o KeePassXC_GettingStarted.html ${REV} ${DOC_DIR}/GettingStarted.adoc
|
||||||
DEPENDS ${html_depends} ${DOC_DIR}/GettingStarted.adoc
|
DEPENDS ${html_depends} ${DOC_DIR}/GettingStarted.adoc
|
||||||
VERBATIM)
|
VERBATIM)
|
||||||
add_custom_command(OUTPUT KeePassXC_UserGuide.html
|
add_custom_command(OUTPUT KeePassXC_UserGuide.html
|
||||||
COMMAND ${ASCIIDOCTOR_EXE} -D ${OUT_DIR} -o KeePassXC_UserGuide.html ${DOC_DIR}/UserGuide.adoc
|
COMMAND ${ASCIIDOCTOR_EXE} -D ${OUT_DIR} -o KeePassXC_UserGuide.html ${REV} ${DOC_DIR}/UserGuide.adoc
|
||||||
DEPENDS ${html_depends} ${DOC_DIR}/UserGuide.adoc
|
DEPENDS ${html_depends} ${DOC_DIR}/UserGuide.adoc
|
||||||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
VERBATIM)
|
VERBATIM)
|
||||||
file(GLOB styles_depends ${DOC_DIR}/styles/*)
|
file(GLOB styles_depends ${DOC_DIR}/styles/*)
|
||||||
add_custom_command(OUTPUT KeePassXC_KeyboardShortcuts.html
|
add_custom_command(OUTPUT KeePassXC_KeyboardShortcuts.html
|
||||||
COMMAND ${ASCIIDOCTOR_EXE} -D ${OUT_DIR} -o KeePassXC_KeyboardShortcuts.html ${DOC_DIR}/topics/KeyboardShortcuts.adoc
|
COMMAND ${ASCIIDOCTOR_EXE} -D ${OUT_DIR} -o KeePassXC_KeyboardShortcuts.html ${REV} ${DOC_DIR}/topics/KeyboardShortcuts.adoc
|
||||||
DEPENDS ${DOC_DIR}/topics/KeyboardShortcuts.adoc ${styles_depends}
|
DEPENDS ${DOC_DIR}/topics/KeyboardShortcuts.adoc ${styles_depends}
|
||||||
VERBATIM)
|
VERBATIM)
|
||||||
|
|
||||||
@ -50,11 +51,11 @@ install(FILES
|
|||||||
# Build Man Pages on Linux and macOS
|
# Build Man Pages on Linux and macOS
|
||||||
if(UNIX)
|
if(UNIX)
|
||||||
add_custom_command(OUTPUT keepassxc.1
|
add_custom_command(OUTPUT keepassxc.1
|
||||||
COMMAND ${ASCIIDOCTOR_EXE} -D ${OUT_DIR} -b manpage -a revnumber=${KEEPASSXC_VERSION} ${DOC_DIR}/man/keepassxc.1.adoc
|
COMMAND ${ASCIIDOCTOR_EXE} -D ${OUT_DIR} -b manpage ${REV} ${DOC_DIR}/man/keepassxc.1.adoc
|
||||||
DEPENDS ${DOC_DIR}/man/keepassxc.1.adoc
|
DEPENDS ${DOC_DIR}/man/keepassxc.1.adoc
|
||||||
VERBATIM)
|
VERBATIM)
|
||||||
add_custom_command(OUTPUT keepassxc-cli.1
|
add_custom_command(OUTPUT keepassxc-cli.1
|
||||||
COMMAND ${ASCIIDOCTOR_EXE} -D ${OUT_DIR} -b manpage -a revnumber=${KEEPASSXC_VERSION} ${DOC_DIR}/man/keepassxc-cli.1.adoc
|
COMMAND ${ASCIIDOCTOR_EXE} -D ${OUT_DIR} -b manpage ${REV} ${DOC_DIR}/man/keepassxc-cli.1.adoc
|
||||||
DEPENDS ${DOC_DIR}/man/keepassxc-cli.1.adoc
|
DEPENDS ${DOC_DIR}/man/keepassxc-cli.1.adoc
|
||||||
VERBATIM)
|
VERBATIM)
|
||||||
add_custom_target(manpages ALL DEPENDS keepassxc.1 keepassxc-cli.1)
|
add_custom_target(manpages ALL DEPENDS keepassxc.1 keepassxc-cli.1)
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
= KeePassXC: Getting Started Guide
|
= KeePassXC: Getting Started Guide
|
||||||
KeePassXC Team <team@keepassxc.org>
|
KeePassXC Team <team@keepassxc.org>
|
||||||
v2.6.0
|
|
||||||
:data-uri:
|
:data-uri:
|
||||||
:linkcss!:
|
:linkcss!:
|
||||||
:homepage: https://keepassxc.org
|
:homepage: https://keepassxc.org
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
= KeePassXC: User Guide
|
= KeePassXC: User Guide
|
||||||
KeePassXC Team <team@keepassxc.org>
|
KeePassXC Team <team@keepassxc.org>
|
||||||
v2.6.0
|
|
||||||
:data-uri:
|
:data-uri:
|
||||||
:homepage: https://keepassxc.org
|
:homepage: https://keepassxc.org
|
||||||
:icons: font
|
:icons: font
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
= keepassxc-cli(1)
|
= keepassxc-cli(1)
|
||||||
|
KeePassXC Team <team@keepassxc.org>
|
||||||
:docdate: 2020-08-31
|
:docdate: 2020-08-31
|
||||||
:doctype: manpage
|
:doctype: manpage
|
||||||
:mansource: KeePassXC {revnumber}
|
:mansource: KeePassXC {revnumber}
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
= keepassxc(1)
|
= keepassxc(1)
|
||||||
|
KeePassXC Team <team@keepassxc.org>
|
||||||
:docdate: 2020-08-31
|
:docdate: 2020-08-31
|
||||||
:doctype: manpage
|
:doctype: manpage
|
||||||
:mansource: KeePassXC {revnumber}
|
:mansource: KeePassXC {revnumber}
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
KeePassXC Team <team@keepassxc.org>
|
KeePassXC Team <team@keepassxc.org>
|
||||||
v2.6.0
|
|
||||||
:data-uri:
|
:data-uri:
|
||||||
:homepage: https://keepassxc.org
|
:homepage: https://keepassxc.org
|
||||||
:stylesheet: ../styles/dark.css
|
:stylesheet: ../styles/dark.css
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
name: keepassxc
|
name: keepassxc
|
||||||
version: 2.6.2
|
version: 2.7.0
|
||||||
grade: stable
|
grade: stable
|
||||||
summary: Community-driven port of the Windows application “KeePass Password Safe”
|
summary: Community-driven port of the Windows application “KeePass Password Safe”
|
||||||
description: |
|
description: |
|
||||||
|
Loading…
x
Reference in New Issue
Block a user