Skip to content
This repository has been archived by the owner on Oct 5, 2023. It is now read-only.

can i ask you about this project #1

Open
wants to merge 52 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
2e6c661
No longer crashes settings screen with syntax errors.
galaxor Jan 21, 2018
50b6866
Try to redo the js to use yarn and webpack.
galaxor Jan 21, 2018
f5b3de1
I was wrong; I can get it to compile and run in browser.
galaxor Jan 21, 2018
9745daa
Key generator works (importer doesn't).
galaxor Jan 21, 2018
d6407cd
You can generate a key and import it.
galaxor Jan 22, 2018
cc9051b
Much of the public key table works.
galaxor Jan 22, 2018
1872c5a
The "Status" column of pubkey table.
galaxor Jan 22, 2018
355aa73
Export and delete public keys works.
galaxor Jan 22, 2018
0b3e655
Import public key works.
galaxor Jan 22, 2018
427644d
Display all persons in a pubkey.
galaxor Jan 22, 2018
547f65c
When everything goes well, pubkey search works.
galaxor Jan 22, 2018
02f8715
Errors from key search are displayed to user.
galaxor Jan 22, 2018
4f63925
Display hkp search errors a little more prettily.
galaxor Jan 22, 2018
745f043
You can hit enter to search for keys.
galaxor Jan 23, 2018
9dc15df
Key search happens on form submit instead of click.
galaxor Jan 23, 2018
8532224
Show correct text if multiple search results.
galaxor Jan 23, 2018
062a486
Remove debugging printout.
galaxor Jan 23, 2018
feed893
Private key pane fills, import private key works.
galaxor Jan 23, 2018
5e52cb2
Encrypt-only, to recip, doesn't send.
galaxor Mar 26, 2018
b002981
Generate keys works again.
galaxor Apr 7, 2018
437373c
Oops, that fix actually broke it. Revert.
galaxor Apr 8, 2018
6e2aa2a
The state machine works for the "encrypt only" branch.
galaxor Apr 16, 2018
b264452
gitignore
galaxor Apr 16, 2018
61ee235
Don't artificially wait 2 seconds when encrypting.
galaxor Apr 16, 2018
16c509e
Don't allow exceptions to get people killed IRL.
galaxor Apr 16, 2018
f9ca498
Clarified my comment about a workaround.
galaxor Apr 16, 2018
6ea78e4
Send blank messages if an exception occurred.
galaxor Apr 16, 2018
fa5dae9
I'm going to refactor it to use promises more heavily.
galaxor Apr 20, 2018
7cf9c2f
The pubkey_save callback knows where the file's at.
galaxor Apr 20, 2018
5e98953
"Enc only" is done in the new Promises style.
galaxor Apr 20, 2018
9f8de8e
pubkey_save is back to being a single handler.
galaxor Apr 20, 2018
8d7803c
key_select is a form with onsubmit.
galaxor Apr 21, 2018
4906f21
Tinkering with the flow for signing.
galaxor Apr 21, 2018
1035fde
Signing works now.
galaxor Apr 22, 2018
f546036
Gracefully handle when user cancels key select.
galaxor Apr 22, 2018
67acbfc
Working: Encrypt, Sign, Encrypt+Sign.
galaxor Apr 24, 2018
1f4e777
Encrypt+Sign actually encrypts, not just signs.
galaxor Apr 25, 2018
24bf6dd
Unified Encrypt Only with S/E+S.
galaxor Apr 25, 2018
f7a40d2
Key selector shows all persons.
galaxor Apr 27, 2018
f368f22
It should, but doesn't, show a spinner while decrypting secret key.
galaxor Apr 27, 2018
f82b02d
Don't stop showing spinner until encryption is done.
galaxor Apr 27, 2018
a23900e
Make code clearer, comments less verbose.
galaxor Apr 27, 2018
f0884de
Switching key select to use keyId
galaxor Apr 29, 2018
967f7b2
Only decrypt the private key once.
galaxor Apr 29, 2018
9e436c0
Key Manager: Deleting private keys works.
galaxor Apr 29, 2018
63fd767
Remember key selection/passphrase for the session.
galaxor Apr 29, 2018
4b1465d
We should have a UI to forget remembered keys.
galaxor Apr 29, 2018
808c44d
A little more tooltip text.
galaxor Apr 29, 2018
56194db
A little styling for the remembered key
galaxor Apr 30, 2018
d41b4ea
We show the remembered signing key.
galaxor May 1, 2018
4054c26
You can forget a previously remembered key/passphrase.
galaxor May 1, 2018
192ca68
Only require a private key if you are signing.
galaxor May 2, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.*.swp
474 changes: 0 additions & 474 deletions js/openpgp.min.js

This file was deleted.

10 changes: 10 additions & 0 deletions js/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"dependencies": {
"openpgp": "^2.6.1",
"promise-polyfill": "^7.0.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"webpack": "^3.10.0"
}
}
Loading