summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* vadd: Allow listing multiple desired values for a field.Gravatar Joey Hess2014-03-02
|
* view, vfilter: Add support for filtering tags and values out of a view, ↵Gravatar Joey Hess2014-03-02
| | | | | | | | | | using !tag and field!=value. Note that negated globs are not supported. Would have complicated the code to add them, without changing the data type serialization in a non-backwards-compatable way. This commit was sponsored by Denver Gingerich.
* simplifyGravatar Joey Hess2014-03-01
|
* windows build script back to normalGravatar Joey Hess2014-03-01
|
* retrying windows yesod-staticGravatar Joey Hess2014-03-01
|
* annex.listen can be configured, instead of using --listenGravatar Joey Hess2014-03-01
|
* Revert "force cabal rebuild on windows for warp-tls"Gravatar Joey Hess2014-02-28
| | | | This reverts commit ec4b8ef1f437c69a2e85e97134776162ec7693b8.
* force cabal rebuild on windows for warp-tlsGravatar Joey Hess2014-02-28
|
* devblogGravatar Joey Hess2014-02-28
|
* remove buggy --listen=host:port supportGravatar Joey Hess2014-02-28
|
* docs for remote webapp, securelyGravatar Joey Hess2014-02-28
|
* depend on warp-tls.. at least for nowGravatar Joey Hess2014-02-28
|
* use https when .git/annex/privkey.pem and .git/annex/certificate.pem exist ↵Gravatar Joey Hess2014-02-28
| | | | | | | (untested) I have not managed to generate a key that is accepted by the old version of warp-tls I have here.
* webapp: Don't list the public repository group when editing a git ↵Gravatar Joey Hess2014-02-28
| | | | repository; it only makes sense for special remotes.
* assistant --autostart: Refuse to start in a bare git repository.Gravatar Joey Hess2014-02-28
|
* webapp: Refuse to start in a bare git repository.Gravatar Joey Hess2014-02-28
|
* webapp: Filter out from Switch Repository list any repositories listed in ↵Gravatar Joey Hess2014-02-28
| | | | | | | | | autostart file that don't have a git directory anymore. Trying to start in such a repo will, obviously, fail. Note that assistant --autostart will try to start in such a repo, and fail, but does start successfully in the other autostart repos.
* show how to set up preferred content for IA like the webapp doesGravatar Joey Hess2014-02-28
|
* remove note about fedora being out of dateGravatar Joey Hess2014-02-28
| | | | It's pretty current.
* Probe for quvi version at run time.Gravatar Joey Hess2014-02-28
| | | | | Overhead: git annex addurl runs quvi --version once. And more bloat to Annex state..
* Added a commentGravatar EskildHustvedt2014-02-28
|
* Added a commentGravatar http://joeyh.name/2014-02-28
|
* Added a comment: xdg-openGravatar rupi2014-02-28
|
* (no commit message)Gravatar EskildHustvedt2014-02-28
|
* (no commit message)Gravatar https://me.yahoo.com/a/FHnTlSBo1eCGJRwueeKeB6.RCaPbGMPr5jxx8A--#ce0d82014-02-28
|
* (no commit message)Gravatar https://me.yahoo.com/a/FHnTlSBo1eCGJRwueeKeB6.RCaPbGMPr5jxx8A--#ce0d82014-02-28
|
* devblogGravatar Joey Hess2014-02-27
|
* updateGravatar Joey Hess2014-02-27
|
* updateGravatar Joey Hess2014-02-27
|
* more distributionupdate fixesGravatar Joey Hess2014-02-27
|
* Added a commentGravatar Hanno2014-02-27
|
* add news item for git-annex 5.20140227Gravatar Joey Hess2014-02-27
|
* prep release5.20140227Gravatar Joey Hess2014-02-27
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2014-02-27
|\
* | closeGravatar Joey Hess2014-02-27
| |
| * Added a commentGravatar http://joeyh.name/2014-02-27
| |
* | much less hacky windows XMPP library deps install methodGravatar Joey Hess2014-02-27
|/
* Added a commentGravatar EskildHustvedt2014-02-27
|
* (no commit message)Gravatar philm2014-02-27
|
* another pkg-configGravatar Joey Hess2014-02-26
|
* devblogGravatar Joey Hess2014-02-26
|
* progress on XMPP for windows, but not linking yetGravatar Joey Hess2014-02-26
|
* tiny process on XMPPGravatar Joey Hess2014-02-26
|
* move comment to better placeGravatar Joey Hess2014-02-26
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2014-02-26
|\
| * Added a commentGravatar http://joeyh.name/2014-02-26
| |
| * Added a comment: Are the ARM binaries ARMv6 or ARMv7?Gravatar https://www.google.com/accounts/o8/id?id=AItOawmUJBh1lYmvfCCiGr3yrdx-QhuLCSRnU5c2014-02-26
| |
* | document more .git/annex/ contentsGravatar Joey Hess2014-02-26
|/
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2014-02-26
|\
* | Put non-object tmp files in .git/annex/misctmp, leaving .git/annex/tmp for ↵Gravatar Joey Hess2014-02-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | only partially transferred objects. This allows eg, putting .git/annex/tmp on a ram disk, if the disk IO of temp object files is too annoying (and if you don't want to keep partially transferred objects across reboots). .git/annex/misctmp must be on the same filesystem as the git work tree, since files are moved to there in a way that will not work cross-device, as well as symlinked into there. I first wanted to put the tmp objects in .git/annex/objects/tmp, but that would pose transition problems on upgrade when partially transferred objects existed. git annex info does not currently show the size of .git/annex/misctemp, since it should stay small. It would also be ok to make something clean it out, periodically.