summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* cleanup makefileGravatar Joey Hess2015-07-23
|
* capsGravatar Joey Hess2015-07-22
|
* rewordGravatar Joey Hess2015-07-22
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2015-07-22
|\
* | devblogGravatar Joey Hess2015-07-22
| |
* | split centralized_git_repository_tutorial into 3Gravatar Joey Hess2015-07-22
| |
| * weird sync bugGravatar anarcat2015-07-22
|/
* Added a commentGravatar CandyAngel2015-07-22
|
* commentGravatar Joey Hess2015-07-21
|
* (no commit message)Gravatar https://mathstuf.id.fedoraproject.org/2015-07-22
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2015-07-21
|\
* | remove new-time build flagGravatar Joey Hess2015-07-21
| | | | | | | | | | | | | | | | | | This caused problems building with stackage and ghc 7.6, since cabal assumes the flag means it wants a newer time. Since time is bundled with ghc, stackage doesn't pin it. Since this flag was only there to avoid a dep on old-locale, which is currently bundled with ghc, let's remove the flag.
* | reorder cabal configure after install of dependenciesGravatar Joey Hess2015-07-21
| | | | | | | | can't configure w/o all deps installed
* | a few cleanups, and point to the main cabal instructionsGravatar Joey Hess2015-07-21
| |
| * Added a comment: same problemGravatar threadshuffle2015-07-21
|/
* addurl now accepts --prefix and --suffix options to adjust the filenames usedGravatar Joey Hess2015-07-21
|
* fix typoGravatar Joey Hess2015-07-21
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2015-07-21
|\
| * Added a commentGravatar CandyAngel2015-07-21
| |
* | wordingGravatar Joey Hess2015-07-20
|/
* rewordGravatar Joey Hess2015-07-20
|
* looks like richih will maintain it in debianGravatar Joey Hess2015-07-20
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2015-07-20
|\
* | Adjust debian build deps: The webapp can now build on arm64, s390x and ↵Gravatar Joey Hess2015-07-20
| | | | | | | | hurd-i386. WebDAV support is also available on those architectures.
| * Added a commentGravatar fusionx86@2cab672ef75a8502e153ceb90177dde38985dba92015-07-20
|/
* Added a commentGravatar fusionx86@2cab672ef75a8502e153ceb90177dde38985dba92015-07-20
|
* updateGravatar Joey Hess2015-07-20
|
* responseGravatar Joey Hess2015-07-20
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2015-07-20
|\
| * Added a commentGravatar fusionx86@2cab672ef75a8502e153ceb90177dde38985dba92015-07-20
| |
* | correct old changelog entryGravatar Joey Hess2015-07-20
|/ | | | It looked at permalinks, not guids
* importfeed: Look at not only permalinks, but now also guids to identify ↵Gravatar Joey Hess2015-07-20
| | | | | | | | | | | | | | | | | previously downloaded files. I've seen rss feeds that have no permalinks, only guids (which are sometimes in the form of permalinks, argh/sigh). I had previously avoided trusting guids to be globally unique, because my survey of rss feeds that I subscribe to shows a lot of pretty bad "guids" like "2 at http://serialpodcast.org" or even worse "oth20150401-hq". Worry was that two podcasts that are generating guids so badly, that there's no guarantee they're actually globally unique. But, I'm seeing too many url changes that result in redundant files, so let's try this. If feeds are so broken that guids overlap, they could just as well incorrectly call them permalinks too.
* sync --content: Fix bug that caused files to be uploaded to eg, more archive ↵Gravatar Joey Hess2015-07-20
| | | | remotes than wanted copies, only to later be dropped to satisfy the preferred content settings.
* pingGravatar Joey Hess2015-07-20
|
* responseGravatar Joey Hess2015-07-20
|
* (no commit message)Gravatar fusionx86@2cab672ef75a8502e153ceb90177dde38985dba92015-07-20
|
* move to todoGravatar Joey Hess2015-07-20
|
* commentGravatar Joey Hess2015-07-20
|
* expandGravatar Joey Hess2015-07-20
|
* responseGravatar Joey Hess2015-07-20
|
* responseGravatar Joey Hess2015-07-20
|
* rewordGravatar Joey Hess2015-07-20
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2015-07-20
|\
* | responseGravatar Joey Hess2015-07-20
| |
| * Added a commentGravatar fusionx86@2cab672ef75a8502e153ceb90177dde38985dba92015-07-20
|/
* point to docsGravatar Joey Hess2015-07-20
|
* ancient git version detected..Gravatar Joey Hess2015-07-20
|
* responseGravatar Joey Hess2015-07-20
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2015-07-20
|\
* | fix bash completion of filenames containing spacesGravatar Joey Hess2015-07-20
| | | | | | | | | | | | | | | | | | | | | | | | | | Work around https://github.com/pcapriotti/optparse-applicative/issues/146 by not using action "file" and instead passing -o bashdefault -o default to complete. This way, when optparse fails to complete a filename, bash will fall back to regular filename completion. Unfortunately, optparse-applicative does not provide a way to control the options passed to complete, so I had to modify its generated completion script. Note that for "git annex" command completion, git's completion script already used -o bashdefault -o default, so that works too.