-
-
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.
- Improve resilience against memory attacks - overwrite memory before free [#3020] - Prevent infinite save loop when location is unavailable [#3026] - Attempt to fix quitting application when shutdown or logout issued [#3199] - Support merging database custom data [#3002] - Fix opening URL's with non-http schemes [#3153] - Fix data loss due to not reading all database attachments if duplicates exist [#3180] - Fix entry context menu disabling when using keyboard navigation [#3199] - Fix behaviors when canceling an entry edit [#3199] - Fix processing of tray icon click and doubleclick [#3112] - Update group in preview widget when focused [#3199] - Prefer DuckDuckGo service over direct icon download (increases resolution) [#2996] - Remove apply button in application settings [#3019] - Use winqtdeploy on Windows to correct deployment issues [#3025] - Don't mark entry edit as modified when attribute selection changes [#3041] - Use console code page CP_UTF8 on Windows if supported [#3050] - Snap: Fix locking database with session lock [#3046] - Snap: Fix theming across Linux distributions [#3057] - Snap: Use SNAP_USER_COMMON and SNAP_USER_DATA directories [#3131] - KeeShare: Automatically enable WITH_XC_KEESHARE_SECURE if quazip is found [#3088] - macOS: Fix toolbar text when in dark mode [#2998] - macOS: Lock database on switching user [#3097] - macOS: Fix global Auto-Type when the database is locked [#3138] - Browser: Close popups when database is locked [#3093] - Browser: Add tests [#3016] - Browser: Don't create default group if custom group is enabled [#3127]
- Loading branch information
Showing
105 changed files
with
2,299 additions
and
1,241 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
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,41 +1,24 @@ | ||
# 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_LIBRARIES - List of QuaZip libraries | ||
# QUAZIP_ZLIB_INCLUDE_DIR - The include dir of zlib headers | ||
# 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_LIBRARIES - List of QuaZip libraries | ||
# QUAZIP_ZLIB_INCLUDE_DIR - The include dir of zlib headers | ||
|
||
IF(QUAZIP_INCLUDE_DIRS AND QUAZIP_LIBRARIES) | ||
# in cache already | ||
SET(QUAZIP_FOUND TRUE) | ||
ELSE(QUAZIP_INCLUDE_DIRS AND QUAZIP_LIBRARIES) | ||
IF(Qt5Core_FOUND) | ||
set(QUAZIP_LIB_VERSION_SUFFIX 5) | ||
ENDIF() | ||
IF(WIN32) | ||
FIND_PATH(QUAZIP_LIBRARY_DIR | ||
WIN32_DEBUG_POSTFIX d | ||
NAMES libquazip${QUAZIP_LIB_VERSION_SUFFIX}.dll | ||
HINTS "C:/Programme/" "C:/Program Files" | ||
PATH_SUFFIXES QuaZip/lib | ||
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) | ||
else() | ||
find_library(QUAZIP_LIBRARIES | ||
NAMES quazip5 quazip | ||
PATHS /usr/lib /usr/lib64 /usr/local/lib | ||
) | ||
FIND_LIBRARY(QUAZIP_LIBRARIES NAMES libquazip${QUAZIP_LIB_VERSION_SUFFIX}.dll HINTS ${QUAZIP_LIBRARY_DIR}) | ||
FIND_PATH(QUAZIP_INCLUDE_DIR NAMES quazip.h HINTS ${QUAZIP_LIBRARY_DIR}/../ PATH_SUFFIXES include/quazip5) | ||
FIND_PATH(QUAZIP_ZLIB_INCLUDE_DIR NAMES zlib.h) | ||
ELSE(WIN32) | ||
FIND_PACKAGE(PkgConfig) | ||
pkg_check_modules(PC_QUAZIP quazip) | ||
FIND_LIBRARY(QUAZIP_LIBRARIES | ||
WIN32_DEBUG_POSTFIX d | ||
NAMES quazip${QUAZIP_LIB_VERSION_SUFFIX} | ||
HINTS /usr/lib /usr/lib64 | ||
find_path(QUAZIP_INCLUDE_DIR quazip.h | ||
PATHS /usr/include /usr/local/include | ||
PATH_SUFFIXES quazip5 quazip | ||
) | ||
FIND_PATH(QUAZIP_INCLUDE_DIR quazip.h | ||
HINTS /usr/include /usr/local/include | ||
PATH_SUFFIXES quazip${QUAZIP_LIB_VERSION_SUFFIX} | ||
) | ||
FIND_PATH(QUAZIP_ZLIB_INCLUDE_DIR zlib.h HINTS /usr/include /usr/local/include) | ||
ENDIF(WIN32) | ||
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) | ||
ENDIF(QUAZIP_INCLUDE_DIRS AND QUAZIP_LIBRARIES) | ||
find_path(QUAZIP_ZLIB_INCLUDE_DIR zlib.h PATHS /usr/include /usr/local/include) | ||
endif() | ||
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) |
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.