Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ipfs/kubo
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0b1d36966c9e
Choose a base ref
...
head repository: ipfs/kubo
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8ed08ab0fc4f
Choose a head ref
  • 7 commits
  • 24 files changed
  • 1 contributor

Commits on Jul 29, 2015

  1. updated goprocess (SetTeardown fix)

    License: MIT
    Signed-off-by: Juan Batiz-Benet <juan@benet.ai>
    jbenet committed Jul 29, 2015

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    7a41dcb View commit details
  2. fuse unmount fixes

    unmounting wasn't happening, mostly because of a recent bug in
    goprocess.SetTeardown. This commit bumps up some messages to
    log.Warnings, as users may want to see them, and makes sure to
    Unmount when a node shuts down.
    
    License: MIT
    Signed-off-by: Juan Batiz-Benet <juan@benet.ai>
    jbenet committed Jul 29, 2015
    Copy the full SHA
    578fd02 View commit details
  3. add -w: fix to work correctly with dirs.

    this commit changes the behavior of ipfs add -w:
    
    - it makes it able to work with ipfs add -r <dir>
    - instead of hacking around the add, we simply just add a wrapper
      directory around the whole result of the add. this means that
      ipfs add -w calls will output _two_ lines, but this is actually
      more correct than outputting one line, as two objects were added.
      this _may_ break scripts out there which expect the output to
      look a certain way. we should consider whether the old output is
      more _useful_ (even if less in-line with the model.)
    
    License: MIT
    Signed-off-by: Juan Batiz-Benet <juan@benet.ai>
    jbenet committed Jul 29, 2015
    Copy the full SHA
    6e6badf View commit details
  4. add -w improvement: wrap multiple files in one dir

      > ipfs add a b c
      added Qmbvkmk9LFsGneteXk3G7YLqtLVME566ho6ibaQZZVHaC9 a
      added QmR9pC5uCF3UExca8RSrCVL8eKv7nHMpATzbEQkAHpXmVM b
      added QmetGxZTgo8tYAKQH1KLsY13MxqeVHbxYVmvzBzJAKU6Z7 c
      added QmXg3WHLcjnz4ejeYF6FKVBkb4m1oKjQmF5fEWL9M1uQF3
    
      > ipfs ls QmXg3WHLcjnz4ejeYF6FKVBkb4m1oKjQmF5fEWL9M1uQF3
      Qmbvkmk9LFsGneteXk3G7YLqtLVME566ho6ibaQZZVHaC9 10 a
      QmR9pC5uCF3UExca8RSrCVL8eKv7nHMpATzbEQkAHpXmVM 10 b
      QmetGxZTgo8tYAKQH1KLsY13MxqeVHbxYVmvzBzJAKU6Z7 10 c
    
    License: MIT
    Signed-off-by: Juan Batiz-Benet <juan@benet.ai>
    jbenet committed Jul 29, 2015
    Copy the full SHA
    4a7c1cf View commit details
  5. added random-files tool for testing

    License: MIT
    Signed-off-by: Juan Batiz-Benet <juan@benet.ai>
    jbenet committed Jul 29, 2015
    Copy the full SHA
    431d6a5 View commit details
  6. add -w comprehensive tests

    made many more tests for ipfs add -w
    
    License: MIT
    Signed-off-by: Juan Batiz-Benet <juan@benet.ai>
    jbenet committed Jul 29, 2015
    Copy the full SHA
    5f59556 View commit details
  7. Merge pull request #1536 from ipfs/fix-add-w

    ipfs add -w directories (and FUSE fixes)
    jbenet committed Jul 29, 2015
    Copy the full SHA
    8ed08ab View commit details
6 changes: 5 additions & 1 deletion Godeps/Godeps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions Godeps/_workspace/src/github.com/jbenet/go-random-files/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

108 changes: 108 additions & 0 deletions Godeps/_workspace/src/github.com/jbenet/go-random-files/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

110 changes: 110 additions & 0 deletions Godeps/_workspace/src/github.com/jbenet/go-random-files/lib.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading