Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | hlint | Joey Hess | 2013-10-02 |
| | |||
* | fix windows build | Joey Hess | 2013-10-02 |
| | |||
* | fix windows build | Joey Hess | 2013-10-02 |
| | |||
* | Added a comment | http://joeyh.name/ | 2013-10-03 |
| | |||
* | Added a comment: Starting git-annex assistant | https://www.google.com/accounts/o8/id?id=AItOawlkA6XinbeOdnEDxEGQUWyjqPGh0kdMXr4 | 2013-10-02 |
| | |||
* | (no commit message) | volfyd | 2013-10-02 |
| | |||
* | Added a comment: confusion with bundled programs | https://www.google.com/accounts/o8/id?id=AItOawnyMzZZLS1xGW1raqc_9Md6Ksdkvx5rUJU | 2013-10-02 |
| | |||
* | Added a comment | https://www.google.com/accounts/o8/id?id=AItOawmKKg3Vmzk7KwRGRKjHVdtyoj1JfxLX6NM | 2013-10-02 |
| | |||
* | Added a comment | http://joeyh.name/ | 2013-10-02 |
| | |||
* | Merge branch 'master' of ssh://git-annex.branchable.com | Joey Hess | 2013-10-02 |
|\ | |||
| * | (no commit message) | https://www.google.com/accounts/o8/id?id=AItOawnyMzZZLS1xGW1raqc_9Md6Ksdkvx5rUJU | 2013-10-02 |
| | | |||
* | | prep release | Joey Hess | 2013-10-02 |
| | | |||
* | | prep relase4.20131002 | Joey Hess | 2013-10-02 |
| | | |||
* | | devblog | Joey Hess | 2013-10-02 |
| | | |||
* | | prep release | Joey Hess | 2013-10-02 |
|/ | |||
* | better name | Joey Hess | 2013-10-01 |
| | |||
* | ensure that hash representations don't change in future | Joey Hess | 2013-10-01 |
| | |||
* | Moved list of backends and remote types from status to version command. | Joey Hess | 2013-10-01 |
| | |||
* | Added SKEIN256 and SKEIN512 backends | Joey Hess | 2013-10-01 |
| | | | | | | | | | | | | | | | | | | | SHA3 is still waiting for final standardization. Although this is looking less likely given https://www.cdt.org/blogs/joseph-lorenzo-hall/2409-nist-sha-3 In the meantime, cryptohash implements skein, and it's used by some of the haskell ecosystem (for yesod sessions, IIRC), so this implementation is likely to continue working. Also, I've talked with the cryprohash author and he's a reasonable guy. It makes sense to have an alternate high security hash, in case some horrible attack is found against SHA2 tomorrow, or in case SHA3 comes out and worst fears are realized. I'd also like to support using skein for HMAC. But no hurry there and a new version of cryptohash has much nicer HMAC code, so I will probably wait until I can use that version. | ||
* | devblog | Joey Hess | 2013-10-01 |
| | |||
* | changelog | Joey Hess | 2013-10-01 |
| | |||
* | Merge branch 'sshgcrypt' | Joey Hess | 2013-10-01 |
|\ | |||
| * | gcrypt basically done | Joey Hess | 2013-10-01 |
| | | |||
| * | typoe and debug info | Joey Hess | 2013-10-01 |
| | | |||
| * | git-annex-shell gcryptsetup command | Joey Hess | 2013-10-01 |
| | | | | | | | | | | This was the least-bad alternative to get dedicated key gcrypt repos working in the assistant. | ||
| * | enabling ssh gcrypt now works | Joey Hess | 2013-10-01 |
| | | |||
| * | Disable receive.denyNonFastForwards when setting up a gcrypt special remote | Joey Hess | 2013-10-01 |
| | | | | | | | | | | | | gcrypt needs to be able to fast-forward the master branch. If a git repository is set up with git init --shared --bare, it gets that set, and pushing to it will then fail, even when it's up-to-date. | ||
| * | Merge branch 'master' of ssh://git-annex.branchable.com into sshgcrypt | Joey Hess | 2013-10-01 |
| |\ | |||
* | | | fix probing for local gcrypt repos | Joey Hess | 2013-10-01 |
| | | | |||
* | | | fix transferring to gcrypt repo from direct mode repo | Joey Hess | 2013-10-01 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | recvkey was told it was receiving a HMAC key from a direct mode repo, and that confused it into rejecting the transfer, since it has no way to verify a key using that backend, since there is no HMAC backend. I considered making recvkey skip verification in the case of an unknown backend. However, that could lead to bad results; a key can legitimately be in the annex with a backend that the remote git-annex-shell doesn't know about. Better to keep it rejecting if it cannot verify. Instead, made the gcrypt special remote not set the direct mode flag when sending (and receiving) files. Also, added some recvkey messages when its checks fail, since otherwise all that is shown is a confusing error message from rsync when the remote git-annex-shell exits nonzero. | ||
| * | | fix probing for local gcrypt repos | Joey Hess | 2013-10-01 |
| | | | |||
| | * | Added a comment | https://www.google.com/accounts/o8/id?id=AItOawmKKg3Vmzk7KwRGRKjHVdtyoj1JfxLX6NM | 2013-10-01 |
| | | | |||
| * | | fix transferring to gcrypt repo from direct mode repo | Joey Hess | 2013-10-01 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | recvkey was told it was receiving a HMAC key from a direct mode repo, and that confused it into rejecting the transfer, since it has no way to verify a key using that backend, since there is no HMAC backend. I considered making recvkey skip verification in the case of an unknown backend. However, that could lead to bad results; a key can legitimately be in the annex with a backend that the remote git-annex-shell doesn't know about. Better to keep it rejecting if it cannot verify. Instead, made the gcrypt special remote not set the direct mode flag when sending (and receiving) files. Also, added some recvkey messages when its checks fail, since otherwise all that is shown is a confusing error message from rsync when the remote git-annex-shell exits nonzero. | ||
| * | | webapp can now set up gcrypt repos on ssh servers | Joey Hess | 2013-10-01 |
| | | | |||
| | * | Added a comment | https://www.google.com/accounts/o8/id?id=AItOawmKKg3Vmzk7KwRGRKjHVdtyoj1JfxLX6NM | 2013-10-01 |
| | | | |||
| | * | Added a comment: Additional Comments | https://www.google.com/accounts/o8/id?id=AItOawkeJKC5Sy0stmcTWyePOLEVv0G-x1yaT_w | 2013-09-30 |
| |/ |/| | |||
* | | assistant: More robust inotify handling; avoid crashing if a directory ↵ | Joey Hess | 2013-09-30 |
| | | | | | | | | cannot be read. | ||
* | | Merge branch 'master' of ssh://git-annex.branchable.com | Joey Hess | 2013-09-30 |
|\ \ | |||
* | | | fix direct mode switch permissions problem | Joey Hess | 2013-09-30 |
| | | | | | | | | | | | | Similar to how a similar problem with indirect was earlier fixed. | ||
| * | | Added a comment | http://joeyh.name/ | 2013-09-30 |
| | | | |||
| * | | Added a comment | http://joeyh.name/ | 2013-09-30 |
|/ / | |||
* | | Added a comment | http://joeyh.name/ | 2013-09-30 |
| | | |||
* | | Added a comment | http://joeyh.name/ | 2013-09-30 |
| | | |||
* | | Added a comment: News page stopped listing latest releases? | http://cstork.org/ | 2013-09-30 |
| | | |||
* | | Added a comment: Thank you very much | Remy | 2013-09-30 |
| | | |||
* | | Added a comment | http://olivier.mehani.name/ | 2013-09-30 |
| | | |||
* | | Added a comment | http://olivier.mehani.name/ | 2013-09-30 |
| | | |||
* | | removed | http://olivier.mehani.name/ | 2013-09-30 |
| | | |||
* | | Added a comment | http://olivier.mehani.name/ | 2013-09-30 |
| | | |||
* | | devblog | Joey Hess | 2013-09-29 |
| | |