-
-
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.
- Show all URL schemes in entry view [#1768] - Disable merge when database is locked [#1975] - Fix intermittent crashes with favorite icon downloads [#1980] - Provide potential crash warning to Qt 5.5.x users [#2211] - Disable apply button when creating new entry/group to prevent data loss [#2204] - Allow for 12 hour timeout to lock idle database [#2173] - Multiple SSH Agent fixes [#1981, #2117] - Multiple Browser Integration enhancements [#1993, #2003, #2055, #2116, #2159, #2174, #2185] - Fix browser proxy application not closing properly [#2142] - Add real names and Patreon supporters to about dialog [#2214] - Add settings button to toolbar, Donate button, and Report a Bug button to help menu [#2214] - Enhancements to release-tool to appsign intermediate build products [#2101]
- Loading branch information
Showing
60 changed files
with
5,819 additions
and
1,150 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,5 @@ release*/ | |
*.swp | ||
|
||
.DS_Store | ||
.version | ||
.version | ||
\.scannerwork/ |
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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# KeePassXC Linux Release Build Dockerfile | ||
# Copyright (C) 2017-2018 KeePassXC team <https://keepassxc.org/> | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 2 or (at your option) | ||
# version 3 of the License. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
FROM snapcore/snapcraft | ||
|
||
ENV REBUILD_COUNTER=1 | ||
|
||
ENV QT5_VERSION=510 | ||
ENV QT5_PPA_VERSION=5.10.1 | ||
|
||
RUN set -x \ | ||
&& apt update -y \ | ||
&& apt -y install software-properties-common | ||
|
||
RUN set -x \ | ||
&& add-apt-repository ppa:phoerious/keepassxc | ||
|
||
RUN set -x \ | ||
&& apt update -y \ | ||
&& apt-get -y --no-install-recommends install \ | ||
build-essential \ | ||
cmake \ | ||
libgcrypt20-18-dev \ | ||
libargon2-0-dev \ | ||
libsodium-dev \ | ||
qtbase5-dev \ | ||
qttools5-dev \ | ||
qttools5-dev-tools \ | ||
zlib1g-dev \ | ||
libyubikey-dev \ | ||
libykpers-1-dev \ | ||
libxi-dev \ | ||
libxtst-dev \ | ||
xvfb | ||
|
||
RUN set -x \ | ||
&& apt-get autoremove --purge | ||
|
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.