mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
Bump version to 2.7.2
This commit is contained in:
parent
e3a3734bb6
commit
a73f5bc32e
53
CHANGELOG.md
53
CHANGELOG.md
@ -1,5 +1,58 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2.7.2 (2022-10-22)
|
||||||
|
|
||||||
|
### Changes
|
||||||
|
- Enhance Tags Support and Add Saved Searches [#8435, #8607]
|
||||||
|
- Significant improvements to entry preview panel [#7993]
|
||||||
|
- Add password strength indicator to all password fields [#7885]
|
||||||
|
- Limit zxcvbn entropy estimation length to 128 characters [#7748]
|
||||||
|
- Try full URL path when fetching favicon [#8565]
|
||||||
|
- Hide usernames in preview panel when hidden in entry view [#8608]
|
||||||
|
- Enable dark title bar on windows when accent color is not used [#8498]
|
||||||
|
- Add option to display passwords in color in preview panel [#7097]
|
||||||
|
- Add XML Export option to GUI [#8524]
|
||||||
|
- Increase entropy required for a "good" password rating to 75 [#8523]
|
||||||
|
- Add shortcut to copy password with TOTP appended [#8443]
|
||||||
|
- Show entry count in status bar [#8435]
|
||||||
|
- Allow KeePassXC to be built without X11 [#8147]
|
||||||
|
- Enable use of VivoKey Apex and Dangerous Things FlexSecure tokens [#8332]
|
||||||
|
- Add setting for number of recent files [#8239]
|
||||||
|
- Add Ctrl+Tab shortcut to cycle databases in unlock dialog [#8168]
|
||||||
|
- Replace offensive words in eff_large.wordlist [#7968]
|
||||||
|
- Auto-Type: PICKCHARS can specify attribute and ignore BEEP [#8118]
|
||||||
|
- Linux: Add isHardwareKeySupported and refreshHardwareKeys to DBus methods [#8055]
|
||||||
|
- Add config variable to specify default database file name [#8042]
|
||||||
|
- Support numeric aware sorting on Windows and macOS [#8363]
|
||||||
|
- CLI: Add `db-edit` command [#8400]
|
||||||
|
- CLI: Add option to display all attributes with `show` command [#8256]
|
||||||
|
- CLI: Show UUID and tags with `show` and `clip` commands [#8241]
|
||||||
|
- Browser: Move socket into separate directory on Linux [#8030]
|
||||||
|
- Browser: Add group setting to omit WWW subdomain when matching URLs [#7988]
|
||||||
|
- FdoSecrets: Ask to unlock the database when creating items [#8022, #8028]
|
||||||
|
- FdoSecrets: Skip entries in recycle bin when searching [#8021]
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
- Fix potential deadlock in UI when saving [#8606]
|
||||||
|
- Fix newlines when copying notes from preview panel [#8542]
|
||||||
|
- Fix dark mode detection on Linux [#8477]
|
||||||
|
- Fix crash when deleting items in recycle bin while searching [#8117]
|
||||||
|
- Fix crash when trying to close database during unlock [#8144]
|
||||||
|
- Fix tabbing around the interface [#8435, #8520]
|
||||||
|
- Fix OPVault import when there are multiple OTP fields [#8436]
|
||||||
|
- Fix various Windows Hello bugs [#8354]
|
||||||
|
- Fix use of Apple Watch for Quick Unlock [#8311]
|
||||||
|
- Better handling of "Lock on Minimize" setting [#8202]
|
||||||
|
- Check for write permission before entering portable mode [#8447]
|
||||||
|
- Correct regex escape logic to prevent parse errors [#7778]
|
||||||
|
- Normalize slashes and file case for last used databases [#7864, #7214]
|
||||||
|
- Link ykcore against pthread [#7807]
|
||||||
|
- Auto-Type: Fix menu entries in selection dialog on Windows [#7987]
|
||||||
|
- Auto-Type: Fix use of modifiers under macOS [#8111]
|
||||||
|
- CLI: Fix output when using clip with the -t flag [#8271]
|
||||||
|
- Browser: Use asynchronous access confirm dialog [#8273]
|
||||||
|
- Browser: Always send database locked/unlocked status [#8114]
|
||||||
|
|
||||||
## 2.7.1 (2022-04-05)
|
## 2.7.1 (2022-04-05)
|
||||||
|
|
||||||
### Changes
|
### Changes
|
||||||
|
@ -119,7 +119,7 @@ endif()
|
|||||||
|
|
||||||
set(KEEPASSXC_VERSION_MAJOR "2")
|
set(KEEPASSXC_VERSION_MAJOR "2")
|
||||||
set(KEEPASSXC_VERSION_MINOR "7")
|
set(KEEPASSXC_VERSION_MINOR "7")
|
||||||
set(KEEPASSXC_VERSION_PATCH "1")
|
set(KEEPASSXC_VERSION_PATCH "2")
|
||||||
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")
|
||||||
|
|
||||||
|
@ -59,6 +59,59 @@
|
|||||||
</screenshots>
|
</screenshots>
|
||||||
|
|
||||||
<releases>
|
<releases>
|
||||||
|
<release version="2.7.2" date="2022-10-22">
|
||||||
|
<description>
|
||||||
|
<ul>
|
||||||
|
<li>Enhance Tags Support and Add Saved Searches [#8435, #8607]</li>
|
||||||
|
<li>Significant improvements to entry preview panel [#7993]</li>
|
||||||
|
<li>Add password strength indicator to all password fields [#7885]</li>
|
||||||
|
<li>Limit zxcvbn entropy estimation length to 128 characters [#7748]</li>
|
||||||
|
<li>Try full URL path when fetching favicon [#8565]</li>
|
||||||
|
<li>Hide usernames in preview panel when hidden in entry view [#8608]</li>
|
||||||
|
<li>Enable dark title bar on windows when accent color is not used [#8498]</li>
|
||||||
|
<li>Add option to display passwords in color in preview panel [#7097]</li>
|
||||||
|
<li>Add XML Export option to GUI [#8524]</li>
|
||||||
|
<li>Increase entropy required for a "good" password rating to 75 [#8523]</li>
|
||||||
|
<li>Add shortcut to copy password with TOTP appended [#8443]</li>
|
||||||
|
<li>Show entry count in status bar [#8435]</li>
|
||||||
|
<li>Allow KeePassXC to be built without X11 [#8147]</li>
|
||||||
|
<li>Enable use of VivoKey Apex and Dangerous Things FlexSecure tokens [#8332]</li>
|
||||||
|
<li>Add setting for number of recent files [#8239]</li>
|
||||||
|
<li>Add Ctrl+Tab shortcut to cycle databases in unlock dialog [#8168]</li>
|
||||||
|
<li>Replace offensive words in eff_large.wordlist [#7968]</li>
|
||||||
|
<li>Auto-Type: PICKCHARS can specify attribute and ignore BEEP [#8118]</li>
|
||||||
|
<li>Linux: Add isHardwareKeySupported and refreshHardwareKeys to DBus methods [#8055]</li>
|
||||||
|
<li>Add config variable to specify default database file name [#8042]</li>
|
||||||
|
<li>CLI: Add `db-edit` command [#8400]</li>
|
||||||
|
<li>CLI: Add option to display all attributes with `show` command [#8256]</li>
|
||||||
|
<li>CLI: Show UUID and tags with `show` and `clip` commands [#8241]</li>
|
||||||
|
<li>Browser: Move socket into separate directory on Linux [#8030]</li>
|
||||||
|
<li>Browser: Add group setting to omit WWW subdomain when matching URLs [#7988]</li>
|
||||||
|
<li>FdoSecrets: Ask to unlock the database when creating items [#8022, #8028]</li>
|
||||||
|
<li>FdoSecrets: Skip entries in recycle bin when searching [#8021]</li>
|
||||||
|
<li>Fix potential deadlock in UI when saving [#8606]</li>
|
||||||
|
<li>Fix newlines when copying notes from preview panel [#8542]</li>
|
||||||
|
<li>Fix dark mode detection on Linux [#8477]</li>
|
||||||
|
<li>Fix crash when deleting items in recycle bin while searching [#8117]</li>
|
||||||
|
<li>Fix crash when trying to close database during unlock [#8144]</li>
|
||||||
|
<li>Fix tabbing around the interface [#8435, #8520]</li>
|
||||||
|
<li>Fix OPVault import when there are multiple OTP fields [#8436]</li>
|
||||||
|
<li>Fix various Windows Hello bugs [#8354]</li>
|
||||||
|
<li>Fix use of Apple Watch for Quick Unlock [#8311]</li>
|
||||||
|
<li>Better handling of "Lock on Minimize" setting [#8202]</li>
|
||||||
|
<li>Support numeric aware sorting on Windows and macOS [#8363]</li>
|
||||||
|
<li>Check for write permission before entering portable mode [#8447]</li>
|
||||||
|
<li>Correct regex escape logic to prevent parse errors [#7778]</li>
|
||||||
|
<li>Normalize slashes and file case for last used databases [#7864, #7214]</li>
|
||||||
|
<li>Link ykcore against pthread [#7807]</li>
|
||||||
|
<li>Auto-Type: Fix menu entries in selection dialog on Windows [#7987]</li>
|
||||||
|
<li>Auto-Type: Fix use of modifiers under macOS [#8111]</li>
|
||||||
|
<li>CLI: Fix output when using clip with the -t flag [#8271]</li>
|
||||||
|
<li>Browser: Use asynchronous access confirm dialog [#8273]</li>
|
||||||
|
<li>Browser: Always send database locked/unlocked status [#8114]</li>
|
||||||
|
</ul>
|
||||||
|
</description>
|
||||||
|
</release>
|
||||||
<release version="2.7.1" date="2022-04-05">
|
<release version="2.7.1" date="2022-04-05">
|
||||||
<description>
|
<description>
|
||||||
<ul>
|
<ul>
|
||||||
|
Loading…
Reference in New Issue
Block a user