3ec29d3b52
use absolute path to database file |
||
---|---|---|
.github | ||
.tx | ||
cmake | ||
share | ||
src | ||
tests | ||
utils | ||
.gitattributes | ||
.gitignore | ||
.travis.yml | ||
CHANGELOG | ||
CMakeLists.txt | ||
COPYING | ||
INSTALL | ||
LICENSE.BOOST-1.0 | ||
LICENSE.BSD | ||
LICENSE.CC0 | ||
LICENSE.GPL-2 | ||
LICENSE.GPL-3 | ||
LICENSE.LGPL-2.1 | ||
LICENSE.LGPL-3 | ||
LICENSE.NOKIA-LGPL-EXCEPTION | ||
README.md |
KeePassX Reboot
About
Fork of KeePassX that aims to incorporate stalled Pull Requests, features, and bug fixes that are not being incorporated into the main KeePassX baseline.
Additional Reboot Features
- keepasshttp support for use with PassIFox for Mozilla Firefox and chromeIPass for Google Chrome.
KeePassHttp implementation has been forked from jdachtera's repository, which in turn was based on code from code with Francois Ferrand's keepassx-http repository.
This is a rebuild from denk-mal's keepasshttp that brings it forward to Qt5 and KeePassX v2.x.
Build Dependencies
The following tools must exist within your PATH:
- make
- cmake (>= 2.8.12)
- g++ (>= 4.7) or clang++ (>= 3.0)
The following libraries are required:
- Qt 5 (>= 5.2): qtbase and qttools5
- libgcrypt (>= 1.6)
- zlib
- libmicrohttpd
- libxi, libxtst, qtx11extras (optional for auto-type on X11)
On Debian/Ubuntu you can install them with:
sudo apt-get install build-essential cmake libmicrohttpd-dev libxi-dev libxtst-dev qtbase5-dev libqt5x11extras5-dev qttools5-dev qttools5-dev-tools libgcrypt20-dev zlib1g-dev
On Fedora/RHEL/CentOS you can install them with:
sudo dnf install make automake gcc gcc-c++ cmake libmicrohttpd-devel libXi-devel libXtst-devel qt5-qtbase-devel qt5-qtx11extras qt5-qttools libgcrypt-devel zlib-devel
Build Steps
To compile from source:
mkdir build
cd build
cmake -DWITH_TESTS=OFF ..
make [-jX]
You will have the compiled KeePassX binary inside the ./build/src/
directory.
To install this binary execute the following:
sudo make install
More detailed instructions available in the INSTALL file.
Clone Repository
Clone the repository to a suitable location where you can extend and build this project.
git clone https://github.com/keepassxreboot/keepassx.git
Note: This will clone the entire contents of the repository at the HEAD revision.
To update the project from within the project's folder you can run the following command:
git pull
Contributing
We're always looking for suggestions to improve our application. If you have a suggestion for improving an existing feature, or would like to suggest a completely new feature for KeePassX Reboot, please use the Issues section or our Google Groups forum.
Please review the CONTRIBUTING document for further information.