-
-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #120 from IJHack/develop
Cleanup and coding standards
- Loading branch information
Showing
29 changed files
with
2,803 additions
and
3,013 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
platform: linux | osx | ||
build: | ||
- qmake | ||
- make | ||
analyzers: | ||
- cpplint: true | ||
include: ["*.cpp", "*.h", "*.hpp", "*.c"] | ||
path: ./ | ||
filters: | ||
- -whitespace | ||
- +whitespace/braces | ||
style: google | ||
- markdownlint: true |
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,14 +1,18 @@ | ||
#FAQ | ||
# FAQ | ||
|
||
## Issues | ||
|
||
### Can't save a password | ||
* Is folder initialised? Easiest way is to use the [Users] button and make sure you can encrypt for someone (eg. yourself) | ||
|
||
* Is folder initialised? Easiest way is to use the [Users] button | ||
and make sure you can encrypt for someone (eg. yourself) | ||
* Are you using git? If not, make sure it is switched off. | ||
|
||
### I have an issue with GNOME keyring | ||
|
||
* Disable GNOME keyring | ||
* Create a `~/.gnupg/gpg-agent.conf` containing: | ||
|
||
``` | ||
enable-ssh-support | ||
write-env-file | ||
|
@@ -17,7 +21,8 @@ default-cache-ttl 600 | |
max-cache-ttl 7200 | ||
``` | ||
|
||
Also, the following is useful to add to your .bashrc if you are using Yubikey NEO on Ubuntu: | ||
Also, the following is useful to add to | ||
your .bashrc if you are using Yubikey NEO on Ubuntu: | ||
|
||
``` | ||
# OpenPGP applet support for YubiKey NEO | ||
|
@@ -31,28 +36,38 @@ fi | |
* More info: [issue 60](https://github.com/IJHack/qtpass/issues/60) and [issue 73](https://github.com/IJHack/qtpass/issues/73) | ||
|
||
### I don't get a passphrase / PIN dialog | ||
* You'll need to install pinentry-qt (or -qt4 or -qt5 or even -gtk) and possibly set the full path to that executable in your `~/.gnupg/gpg-agent.conf` for example: `pinentry-program /usr/bin/pinentry-qt4` | ||
* On some esotheric systems it might be necessary to create a symbolic link `/usr/bin/pinentry` to your pinentry application of choice eg: `ln -s /usr/bin/pinentry-qt5 /usr/bin/pinentry` | ||
|
||
* You'll need to install pinentry-qt (or -qt4 or -qt5 or even -gtk) and | ||
possibly set the full path to that executable in your `~/.gnupg/gpg-agent.conf` | ||
for example: `pinentry-program /usr/bin/pinentry-qt4` | ||
* On some esotheric systems it might be necessary to create a symbolic | ||
link `/usr/bin/pinentry` to your pinentry application of choice | ||
eg: `ln -s /usr/bin/pinentry-qt5 /usr/bin/pinentry` | ||
|
||
### Where can I ask for help? | ||
|
||
* Create an [issue](https://github.com/IJHack/qtpass/) issues on github. | ||
* Send an email to [[email protected]]([email protected]) | ||
|
||
### Can I import from KeePass, LastPass or X? | ||
* Yes, check [passwordstore.org/#migration](http://www.passwordstore.org/#migration) for more info. | ||
|
||
* Yes, check [passwordstore.org/#migration](http://www.passwordstore.org/#migration) | ||
for more info. | ||
|
||
### I don't like the design, what gives? | ||
|
||
* It's all on github, clone, change and send a pull request. | ||
* Open an issue and point out defects or better yet propose changes. | ||
|
||
## How can I help improve QtPass? | ||
|
||
###I would like to donate! | ||
### I would like to donate! | ||
|
||
* Time: | ||
* Read [contributing](CONTRIBUTING.md) documentation. | ||
* Fork, clone hack and send a pull request. | ||
* Find an [issue](https://github.com/IJHack/qtpass/issues) to work on.. | ||
* Participate in our bug bounty, you submit an issue and help us fix it, I send you a bounty. | ||
* Participate in our bug bounty, you submit an issue and help us | ||
fix it, I send you a bounty. | ||
* Money: | ||
IJhack takes donations in [bitcoin](https://blockchain.info/address/146dqz8zXn9iNZMv5s7JVqwZKjrmumHBfb) | ||
* IJhack takes donations in [bitcoin](https://blockchain.info/address/146dqz8zXn9iNZMv5s7JVqwZKjrmumHBfb) |
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.