-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added - Show search bar when toolbar is hidden or in overflow [#6279] - Show countdown for clipboard clearing in status bar [#6333] - Command line option to lock all open databases [#6511] - Allow CSV import of bare TOTP secrets [#6211] - Retain file creation time when saving database [#6576] - Set permissions of saved attachments to be private to the current user [#6363] - OPVault: Use Text instead of Name for attribute names [#6334] Changed - Reports: Allow resizing of reports columns [#6435] - Reports: Toggle showing expired entries [#6534] - Save Always on Top setting [#6236] - Password generator can exclude additional lookalike characters (6/G, 8/B) [#6196] Fixed - Allow setting MSI properties in unattended install [#6196] - Update MainWindow minimum size to enable smaller verticle space [#6196] - Use application font size when setting default or monospace fonts [#6332] - Fix notes not clearing in entry preview panel in some cases [#6481] - macOS: Correct window activation when restoring from tray [#6575] - macOS: Better handling of minimize after unlock when using browser integration [#6338] - Linux: Start after the system tray is available on LXQt [#6216] - Linux: Allow selection of modal dialogs on X11 in Auto-Type [#6204] - KeeShare: prevent crash when file extension is missing [#6174]
- Loading branch information
Showing
99 changed files
with
27,130 additions
and
2,194 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
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 |
---|---|---|
@@ -1,24 +1,33 @@ | ||
# QUAZIP_FOUND - QuaZip library was found | ||
# QUAZIP_INCLUDE_DIR - Path to QuaZip include dir | ||
# QUAZIP_INCLUDE_DIRS - Path to QuaZip and zlib include dir (combined from QUAZIP_INCLUDE_DIR + ZLIB_INCLUDE_DIR) | ||
# QUAZIP_INCLUDE_DIRS - Path to QuaZip include dir | ||
# QUAZIP_LIBRARIES - List of QuaZip libraries | ||
# QUAZIP_ZLIB_INCLUDE_DIR - The include dir of zlib headers | ||
|
||
if(MINGW) | ||
find_library(QUAZIP_LIBRARIES libquazip5) | ||
find_path(QUAZIP_INCLUDE_DIR quazip.h PATH_SUFFIXES quazip5) | ||
find_path(QUAZIP_ZLIB_INCLUDE_DIR zlib.h) | ||
find_path(QUAZIP_INCLUDE_DIRS quazip.h PATH_SUFFIXES quazip5) | ||
elseif(APPLE) | ||
find_library(QUAZIP_LIBRARIES quazip1-qt5) | ||
find_path(QUAZIP_INCLUDE_DIRS quazip.h PATH_SUFFIXES quazip) | ||
else() | ||
find_library(QUAZIP_LIBRARIES | ||
NAMES quazip5 quazip | ||
PATHS /usr/lib /usr/lib64 /usr/local/lib | ||
) | ||
find_path(QUAZIP_INCLUDE_DIR quazip.h | ||
PATHS /usr/include /usr/local/include | ||
PATH_SUFFIXES quazip5 quazip | ||
) | ||
find_path(QUAZIP_ZLIB_INCLUDE_DIR zlib.h PATHS /usr/include /usr/local/include) | ||
# Try pkgconfig first | ||
find_package(PkgConfig QUIET) | ||
if (PKG_CONFIG_FOUND) | ||
pkg_check_modules(QUAZIP QUIET quazip1-qt5) | ||
endif() | ||
if(NOT QUAZIP_FOUND) | ||
# Try to find QuaZip version 0.x | ||
find_library(QUAZIP_LIBRARIES | ||
NAMES quazip5 quazip | ||
PATHS /usr/lib /usr/lib64 /usr/local/lib | ||
) | ||
find_path(QUAZIP_INCLUDE_DIRS quazip.h | ||
PATHS /usr/include /usr/local/include | ||
PATH_SUFFIXES quazip5 quazip | ||
) | ||
endif() | ||
endif() | ||
|
||
mark_as_advanced(QUAZIP_LIBRARIES QUAZIP_INCLUDE_DIRS) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
set(QUAZIP_INCLUDE_DIRS ${QUAZIP_INCLUDE_DIR} ${QUAZIP_ZLIB_INCLUDE_DIR}) | ||
find_package_handle_standard_args(QUAZIP DEFAULT_MSG QUAZIP_LIBRARIES QUAZIP_INCLUDE_DIR QUAZIP_ZLIB_INCLUDE_DIR QUAZIP_INCLUDE_DIRS) | ||
find_package_handle_standard_args(QuaZip DEFAULT_MSG QUAZIP_LIBRARIES QUAZIP_INCLUDE_DIRS) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Oops, something went wrong.