mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-02-23 07:59:54 -05:00
Correct zxcvbn build on windows & snap build
This commit is contained in:
parent
ea33caa1a8
commit
69283e83d8
@ -676,7 +676,7 @@ build() {
|
|||||||
# release.
|
# release.
|
||||||
cpack -G "NSIS;ZIP;${CPACK_GENERATORS}"
|
cpack -G "NSIS;ZIP;${CPACK_GENERATORS}"
|
||||||
|
|
||||||
mv "./${APP_NAME}-${RELEASE_NAME}-"*.* ../
|
mv "./${APP_NAME}-"*.* ../
|
||||||
else
|
else
|
||||||
mkdir -p "${OUTPUT_DIR}/bin-release"
|
mkdir -p "${OUTPUT_DIR}/bin-release"
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
name: keepassxc
|
name: keepassxc
|
||||||
version: 2.2.4
|
version: 2.3.0-beta1
|
||||||
grade: stable
|
grade: stable
|
||||||
summary: Community-driven port of the Windows application “KeePass Password Safe”
|
summary: Community-driven port of the Windows application “KeePass Password Safe”
|
||||||
description: |
|
description: |
|
||||||
@ -16,6 +16,9 @@ apps:
|
|||||||
cli:
|
cli:
|
||||||
command: keepassxc-cli
|
command: keepassxc-cli
|
||||||
plugs: [gsettings, home, removable-media, raw-usb]
|
plugs: [gsettings, home, removable-media, raw-usb]
|
||||||
|
proxy:
|
||||||
|
command: keepassxc-proxy
|
||||||
|
plugs: [home]
|
||||||
|
|
||||||
parts:
|
parts:
|
||||||
keepassxc:
|
keepassxc:
|
||||||
@ -26,10 +29,7 @@ parts:
|
|||||||
- -DCMAKE_INSTALL_PREFIX=/usr
|
- -DCMAKE_INSTALL_PREFIX=/usr
|
||||||
- -DKEEPASSXC_DIST_TYPE=Snap
|
- -DKEEPASSXC_DIST_TYPE=Snap
|
||||||
- -DWITH_TESTS=OFF
|
- -DWITH_TESTS=OFF
|
||||||
- -DWITH_XC_AUTOTYPE=ON
|
- -DWITH_XC_ALL=ON
|
||||||
- -DWITH_XC_HTTP=ON
|
|
||||||
- -DWITH_XC_YUBIKEY=ON
|
|
||||||
- -DWITH_XC_BROWSER=ON
|
|
||||||
build-packages:
|
build-packages:
|
||||||
- g++
|
- g++
|
||||||
- libgcrypt20-dev
|
- libgcrypt20-dev
|
||||||
|
@ -45,9 +45,11 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* For pre-compiled headers under windows */
|
/* For pre-compiled headers under windows */
|
||||||
|
#ifndef __MINGW32__
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
#include "stdafx.h"
|
#include "stdafx.h"
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Minimum number of characters in a incrementing/decrementing sequence match */
|
/* Minimum number of characters in a incrementing/decrementing sequence match */
|
||||||
#define MIN_SEQUENCE_LEN 3
|
#define MIN_SEQUENCE_LEN 3
|
||||||
|
Loading…
x
Reference in New Issue
Block a user