summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* install Jimmy's .app on OS XGravatar Joey Hess2012-09-23
| | | | | | | I'm guessing that ~/Desktop/git-annex.app will be visiable. For the system-wide installation, I don't know where to put it, though somewhere in /Library seems likely.
* fix copyrightGravatar Joey Hess2012-09-23
|
* Merge remote-tracking branch 'jcftang/master'Gravatar Joey Hess2012-09-23
|\
| * First attempt at creating a small .app launcher for OSXGravatar Jimmy Tang2012-09-23
| | | | | | | | | | The icons need to be resized and redone, the shell script in the MacOS directory assumes that git-annex is in the runtime path.
| * Ignore some OSX related files which should never end up in the repoGravatar Jimmy Tang2012-09-23
| |
| * poll vote (Box.com)Gravatar 95.34.39.272012-09-22
| |
| * poll vote (My phone (or MP3 player))Gravatar 95.34.39.272012-09-22
| |
| * Added a commentGravatar http://joeyh.name/2012-09-22
| |
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawmU_2tE75oyG0h2ZPN4lcroIKEMC8G-otE2012-09-22
| |
* | doneGravatar Joey Hess2012-09-21
|/
* Merge remote branch 'origin/master'Gravatar Joey Hess2012-09-22
|\
* | hooked up git-annex-shell transferinfoGravatar Joey Hess2012-09-21
| | | | | | | | Finally done with progressbars!
| * Added a commentGravatar sauluskahn2012-09-22
| |
| * Added a commentGravatar sauluskahn2012-09-22
| |
* | changelog updatesGravatar Joey Hess2012-09-21
| |
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawmBUR4O9mofxVbpb8JV9mEbVfIYv670uJo2012-09-22
|/
* fix logic error introduced yesterdayGravatar Joey Hess2012-09-21
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2012-09-21
|\
* | default annex.delayadd to 1 on OSXGravatar Joey Hess2012-09-21
| |
| * poll vote (Amazon Glacier)Gravatar 89.103.120.522012-09-21
| |
| * Added a commentGravatar http://joeyh.name/2012-09-21
| |
| * Added a commentGravatar http://joeyh.name/2012-09-21
| |
* | add nimbus.ioGravatar Joey Hess2012-09-21
| |
| * Added a commentGravatar basak2012-09-21
| |
| * Added a commentGravatar sauluskahn2012-09-21
| |
| * (no commit message)Gravatar sauluskahn2012-09-21
|/
* blog for the dayGravatar Joey Hess2012-09-21
|
* git-annex-shell transferinfo commandGravatar Joey Hess2012-09-21
| | | | | TODO: Use this when running sendkey, to feed back transfer info from the client side rsync.
* avoid updating transfer info file until another 1% of the total has been ↵Gravatar Joey Hess2012-09-21
| | | | transferred
* upload progress tracking for the directory special remoteGravatar Joey Hess2012-09-21
|
* unify typesGravatar Joey Hess2012-09-21
|
* poll vote (Tahoe-LAFS)Gravatar 24.52.233.1352012-09-21
|
* Added a commentGravatar http://www.davidhaslem.com/2012-09-21
|
* Added a comment: Mount detectionGravatar https://www.google.com/accounts/o8/id?id=AItOawlu-fdXIt_RF9ggvg4zP0yBbtjWQwHAMS42012-09-21
|
* Added a commentGravatar http://joeyh.name/2012-09-21
|
* updateGravatar Joey Hess2012-09-21
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2012-09-21
|\
* | fix breakage caught by test suiteGravatar Joey Hess2012-09-21
| | | | | | | | | | Can't use show-ref --tags --branches, as that omits remote branches. Instead, filter out the synced refs directly.
| * Added a comment: you rock! & roadmap update?Gravatar https://id.koumbit.net/anarcat2012-09-21
|/
* Added a commentGravatar http://joeyh.name/2012-09-21
|
* Added a commentGravatar http://www.davidhaslem.com/2012-09-21
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2012-09-20
|\
* | alernate, less crazy ideaGravatar Joey Hess2012-09-20
| |
* | a much crazier, but also more feasable ideaGravatar Joey Hess2012-09-20
| |
| * Added a commentGravatar http://joeyh.name/2012-09-20
|/
* ideaGravatar Joey Hess2012-09-20
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2012-09-20
|\
* | blog for the dayGravatar Joey Hess2012-09-20
| |
* | avoid calling the progress callback when the bytes sent have not changedGravatar Joey Hess2012-09-20
| | | | | | | | | | Does rsync stall and update its progress display? Dunno, but this was an easy optimisation to throw in.
* | watch for changes to transfer info files, to update progress bars on uploadGravatar Joey Hess2012-09-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This is handled differently for inotify, which can track modifications of existing files, and kqueue, which cannot (TTBOMK). On the inotify side, the TransferWatcher just waits for the file to be updated and reads the new bytesComplete. On the kqueue side, the TransferPoller has to re-read the file every update (currently 0.5 seconds, might need to increase that). I did think about working around kqueue's limitations by somehow creating a new file each time the size changed. But cleaning up all the files that would result seemed difficult. And really, this is not a lot worse than the TransferWatcher's behavior for downloads, which stats a file every 0.5 seconds. As long as the OS has decent file caching behavior..