forked from keepassxreboot/keepassxc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag '2.7.5' into perlover-2.7.x
Release 2.7.5 - Add menu option to allow screenshots [keepassxreboot#8841] - Add support for Botan 3 [keepassxreboot#9388] - Increase max TOTP step to 24 hours [keepassxreboot#9149] - Improve HTML export layout [keepassxreboot#8987] - Turn search reset off by default [keepassxreboot#9153] - Use QClipboard::clear() instead of setting blank text [keepassxreboot#9148] - Hide group column header choice when not in search [keepassxreboot#9171] - Improve look of KeePassXC logo and icons [keepassxreboot#9355] - Add keyboard shortcuts for app and database settings [keepassxreboot#9007] - Hide rename button from attachments preview panel [keepassxreboot#8842] - Linux: Set SingleMainWindow in .desktop file [keepassxreboot#7430] - Fix crash when search clears while creating new entry [keepassxreboot#9230] - Fix crash when using Windows Hello in a Remote Desktop session [keepassxreboot#9006] - Fix crash in Group Edit after enabling Browser Integration [keepassxreboot#8778] - Fix canceling quick unlock when it is unavailable [keepassxreboot#9034] - Set password input field font correctly [keepassxreboot#8732] - Greatly improve performance when rendering entry view [keepassxreboot#9398] - Fix various accessibility issues [keepassxreboot#9138] - Fix arrows size when expand/collapse a group [keepassxreboot#9096] - Select the clone instead of the original after cloning an entry [keepassxreboot#9070] - Fix bugs with preview widget [keepassxreboot#9170] - Fix status bar update when switching to other DB [keepassxreboot#9073] - Fix database settings spin box bug [keepassxreboot#9101] - Fix Ctrl+Tab shortcut to cycle databases in unlock dialog [keepassxreboot#8839] - Fix TOTP QR code maintaining square ratio [keepassxreboot#9027] - Fix Auto-Type configuration page on custom sequence selection [keepassxreboot#8752] - Fix unexpected behavior of `--lock` when KeePassXC is not running [keepassxreboot#8889] - Make open folder icon exempt from "Apply group icon to entry" [keepassxreboot#9205] - Allow setting default file open directory with env var [keepassxreboot#9192] - SSH Agent: Fix support for AES-256/GCM openssh keys [keepassxreboot#8968] - Browser: Fix Native Messaging script path with BSD OS's [keepassxreboot#8835] - MacOS: Fix text selection for Auto-Type clear field [keepassxreboot#9066] - MacOS: Don't rely on AppleInterfaceStyle for theme switching [keepassxreboot#8615] - Windows: Remove registry detection of desktop shortcut [keepassxreboot#9380]
- Loading branch information
Showing
203 changed files
with
45,585 additions
and
18,123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
[main] | ||
host = https://www.transifex.com | ||
host = https://app.transifex.com | ||
|
||
[keepassxc.share-translations-keepassxc-en-ts--develop] | ||
source_file = share/translations/keepassxc_en.ts | ||
file_filter = share/translations/keepassxc_<lang>.ts | ||
source_lang = en | ||
type = QT | ||
[o:keepassxc:p:keepassxc:r:share-translations-keepassxc-en-ts--develop] | ||
file_filter = share/translations/keepassxc_<lang>.ts | ||
source_file = share/translations/keepassxc_en.ts | ||
type = QT | ||
minimum_perc = 0 | ||
resource_name = keepassxc_en.ts (develop) | ||
|
||
[o:keepassxc:p:keepassxc:r:share-translations-keepassxc-en-ts--master] | ||
file_filter = share/translations/keepassxc_<lang>.ts | ||
source_file = share/translations/keepassxc_en.ts | ||
type = QT | ||
minimum_perc = 0 | ||
resource_name = keepassxc_en.ts (2.7.x stable) | ||
|
||
[keepassxc.share-translations-keepassxc-en-ts--master] | ||
source_file = share/translations/keepassxc_en.ts | ||
file_filter = share/translations/keepassxc_<lang>.ts | ||
source_lang = en | ||
type = QT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# - Find botan | ||
# Find the botan cryptographic library | ||
# | ||
# This module defines the following variables: | ||
# BOTAN_FOUND - True if library and include directory are found | ||
# If set to TRUE, the following are also defined: | ||
# BOTAN_INCLUDE_DIRS - The directory where to find the header file | ||
# BOTAN_LIBRARIES - Where to find the library files | ||
# | ||
# This file is in the public domain (https://github.com/vistle/vistle/blob/master/cmake/Modules/FindBOTAN.cmake) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
|
||
set(BOTAN_VERSIONS botan-3 botan-2) | ||
set(BOTAN_NAMES botan-3 botan-2 botan) | ||
set(BOTAN_NAMES_DEBUG botand-3 botand-2 botand botan) | ||
|
||
find_path( | ||
BOTAN_INCLUDE_DIR | ||
NAMES botan/build.h | ||
PATH_SUFFIXES ${BOTAN_VERSIONS} | ||
DOC "The Botan include directory") | ||
if(BOTAN_INCLUDE_DIR) | ||
file(READ "${BOTAN_INCLUDE_DIR}/botan/build.h" build) | ||
string(REGEX MATCH "BOTAN_VERSION_MAJOR ([0-9]*)" _ ${build}) | ||
set(BOTAN_VERSION_MAJOR ${CMAKE_MATCH_1}) | ||
string(REGEX MATCH "BOTAN_VERSION_MINOR ([0-9]*)" _ ${build}) | ||
set(BOTAN_VERSION_MINOR ${CMAKE_MATCH_1}) | ||
string(REGEX MATCH "BOTAN_VERSION_PATCH ([0-9]*)" _ ${build}) | ||
set(BOTAN_VERSION_PATCH ${CMAKE_MATCH_1}) | ||
set(BOTAN_VERSION "${BOTAN_VERSION_MAJOR}.${BOTAN_VERSION_MINOR}.${BOTAN_VERSION_PATCH}") | ||
endif() | ||
|
||
find_library( | ||
BOTAN_LIBRARY | ||
NAMES ${BOTAN_NAMES} | ||
PATH_SUFFIXES release/lib lib | ||
DOC "The Botan (release) library") | ||
if(MSVC) | ||
find_library( | ||
BOTAN_LIBRARY_DEBUG | ||
NAMES ${BOTAN_NAMES_DEBUG} | ||
PATH_SUFFIXES debug/lib lib | ||
DOC "The Botan debug library") | ||
find_package_handle_standard_args( | ||
Botan | ||
REQUIRED_VARS BOTAN_LIBRARY BOTAN_LIBRARY_DEBUG BOTAN_INCLUDE_DIR | ||
VERSION_VAR BOTAN_VERSION) | ||
else() | ||
find_package_handle_standard_args( | ||
Botan | ||
REQUIRED_VARS BOTAN_LIBRARY BOTAN_INCLUDE_DIR | ||
VERSION_VAR BOTAN_VERSION) | ||
endif() | ||
|
||
if(BOTAN_FOUND) | ||
set(BOTAN_INCLUDE_DIRS ${BOTAN_INCLUDE_DIR}) | ||
if(MSVC) | ||
set(BOTAN_LIBRARIES optimized ${BOTAN_LIBRARY} debug ${BOTAN_LIBRARY_DEBUG}) | ||
else() | ||
set(BOTAN_LIBRARIES ${BOTAN_LIBRARY}) | ||
endif() | ||
endif() | ||
|
||
mark_as_advanced(BOTAN_INCLUDE_DIR BOTAN_LIBRARY BOTAN_LIBRARY_DEBUG) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
= KeePassXC - Auto-Type | ||
= KeePassXC – Auto-Type | ||
:imagesdir: ../images | ||
|
||
// tag::content[] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
= KeePassXC - Browser Plugin | ||
= KeePassXC – Browser Plugin | ||
include::.sharedheader[] | ||
:imagesdir: ../images | ||
|
||
|
Oops, something went wrong.