https://github.com/kost/keepassz
Keepassz is improved Keepassx 0.x/1.x
https://github.com/kost/keepassz
Last synced: about 1 year ago
JSON representation
Keepassz is improved Keepassx 0.x/1.x
- Host: GitHub
- URL: https://github.com/kost/keepassz
- Owner: kost
- License: other
- Created: 2015-12-27T05:44:38.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-04-21T04:46:23.000Z (over 9 years ago)
- Last Synced: 2025-04-14T04:08:51.822Z (over 1 year ago)
- Language: C++
- Size: 1.21 MB
- Stars: 8
- Watchers: 7
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: changelog
- License: COPYING
Awesome Lists containing this project
README
[](https://travis-ci.org/kost/keepassz)
# keepassz
Keepassz is improved Keepassx 0.x/1.x
It is based on latest 0.4.4 source of keepassx.
## Features
- Modified to build with newer compilers
- added option to hide comments
- Renamed to keepassz in order to avoid conflicts
## Installing
Installing depends on platform and distribution.
### Ubuntu (LTS) from PPA
It is standard PPA way:
```
sudo add-apt-repository ppa:kost/ppa
sudo apt-get update
sudo apt-get install keepassz
```
### From source
You have basically two ways. Download release or git clone current master.
Check out building section for building and installing instructions.
You just need to say ```make install``` on the end in order to install binaries on the system.
## Building
In order to build you need to satisfy requirements.
### Requirements
You need QT4 for building. On Debian/Ubuntu, install following packages:
```apt-get install libqt4-dev cmake```
### Building
It is standard cmake build:
```
git clone https://github.com/kost/keepassz.git
cd keepassz
mkdir build
cd build
cmake ..
make
```