Skip to content

Commit

Permalink
Release 2.4.3
Browse files Browse the repository at this point in the history
- Fix library loading issues in the Snap and macOS releases [#3247]
- Fix various keyboard navigation issues [#3248]
- Fix main window toggling regression when clicking the tray icon on KDE [#3258]
- Add documentation for keyboard shortcuts to source code distribution [#3215]
  • Loading branch information
phoerious committed Jun 11, 2019
2 parents a775031 + 9d7990b commit 5d6ef0c
Show file tree
Hide file tree
Showing 15 changed files with 1,170 additions and 1,250 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2.4.3 (2019-06-12)
=========================

- Fix library loading issues in the Snap and macOS releases [#3247]
- Fix various keyboard navigation issues [#3248]
- Fix main window toggling regression when clicking the tray icon on KDE [#3258]
- Add documentation for keyboard shortcuts to source code distribution [#3215]

2.4.2 (2019-05-31)
=========================

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ endif()

set(KEEPASSXC_VERSION_MAJOR "2")
set(KEEPASSXC_VERSION_MINOR "4")
set(KEEPASSXC_VERSION_PATCH "2")
set(KEEPASSXC_VERSION_PATCH "3")
set(KEEPASSXC_VERSION "${KEEPASSXC_VERSION_MAJOR}.${KEEPASSXC_VERSION_MINOR}.${KEEPASSXC_VERSION_PATCH}")
set(OVERRIDE_VERSION "" CACHE STRING "Override the KeePassXC Version for Snapshot builds")

Expand Down
97 changes: 0 additions & 97 deletions Dockerfile

This file was deleted.

5 changes: 1 addition & 4 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,10 +141,7 @@ DESTDIR=X
Packaging
=========

You can create a package to redistribute KeePassXC (zip, deb, rpm, dmg, etc..)
```
make package
```
You can create a package to redistribute KeePassXC (zip, deb, rpm, dmg, etc..). Refer to [keepassxc-packaging](https://github.com/keepassxreboot/keepassxc-packaging)


Testing
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ so please check out your distribution's package list to see if KeePassXC is avai
- Many bug fixes

For a full list of features and changes, read the [CHANGELOG](CHANGELOG) document.
For a full list of keyboard shortcuts, see [KEYBINDS](./docs/KEYBINDS.md)

## Building KeePassXC

Expand Down
95 changes: 0 additions & 95 deletions ci/trusty/Dockerfile

This file was deleted.

34 changes: 34 additions & 0 deletions docs/KEYBINDS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# List of Keyboard Shortcuts for KeepassXC

Actions | Keyboard Shortcuts
---------------------------|----------------------------
New Database | Ctrl + Shift + N
Open Database | Ctrl + O
Save Database | Ctrl + S
Save Database As | Ctrl + Shift + S
Close Database | Ctrl + W
Lock Databases | Ctrl + L
Quit | Ctrl + Q
New Entry | Ctrl + N
Edit Entry | Ctrl + E
Delete Entry | Ctrl + D
Clone Entry | Ctrl + K
Show TOTP | Ctrl + Shift + T
Copy TOTP | Ctrl + T
Copy Username | Ctrl + B
Copy Password | Ctrl + C
Trigger AutoType | Ctrl + Shift - V
Open Url | Ctrl + Shift - U
Copy Url | Ctrl + U
Show Minimized | Ctrl + M
Hide Window | Ctrl + Shift - M
Select Next Database Tab | Ctrl + Tab *OR* Ctrl + PGDN
Select Previous Datase Tab | Ctrl + Shift + Tab *OR* Ctrl + PGUP
Toggle Passwords Hidden | Ctrl + Shift + C
Toggle Usernames Hidden | Ctrl + Shift + B
Focus Search | Ctrl + F
Clear Search | ESC




10 changes: 10 additions & 0 deletions share/linux/org.keepassxc.KeePassXC.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,16 @@
</screenshots>

<releases>
<release version="2.4.3" date="2019-06-12">
<description>
<ul>
<li>Fix library loading issues in the Snap and macOS releases [#3247]</li>
<li>Fix various keyboard navigation issues [#3248]</li>
<li>Fix main window toggling regression when clicking the tray icon on KDE [#3258]</li>
<li>Add documentation for keyboard shortcuts to source code distribution [#3215]</li>
</ul>
</description>
</release>
<release version="2.4.2" date="2019-05-31">
<description>
<ul>
Expand Down
12 changes: 6 additions & 6 deletions share/translations/keepassx_ja.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3158,19 +3158,19 @@ Line %2, column %3</source>
</message>
<message>
<source>Disabled share %1</source>
<translation type="unfinished"/>
<translation>共有 %1 を無効にする</translation>
</message>
<message>
<source>Import from share %1</source>
<translation type="unfinished"/>
<translation>共有 %1 からインポートする</translation>
</message>
<message>
<source>Export to share %1</source>
<translation type="unfinished"/>
<translation>共有 %1 にエクスポートする</translation>
</message>
<message>
<source>Synchronize with share %1</source>
<translation type="unfinished"/>
<translation>共有 %1 と同期</translation>
</message>
</context>
<context>
Expand Down Expand Up @@ -5259,11 +5259,11 @@ Available commands:
</message>
<message>
<source>Multiple import source path to %1 in %2</source>
<translation type="unfinished"/>
<translation>%2 の %1 への複数のインポートソースパス</translation>
</message>
<message>
<source>Conflicting export target path %1 in %2</source>
<translation type="unfinished"/>
<translation>%2 のエクスポートターゲットパス %1 が競合しています</translation>
</message>
<message>
<source>Could not embed signature: Could not open file to write (%1)</source>
Expand Down

0 comments on commit 5d6ef0c

Please sign in to comment.