| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-05-06 | Odb: use a callback instead of a channel for ForEach | Carlos Martín Nieto | |
| A channel provides no way to specify whether we stopped sending data because of an error or because there is no more data. Therefore, make Odb.ForEach() take a callback with which the user is free to do whatever they need, letting us return en error. | |||
| 2014-04-03 | update for upstream changes | Aidan Nulman | |
| 2014-04-03 | Merge branch 'master' into custom_odb | Aidan Nulman | |
| Conflicts: odb.go wrapper.c | |||
| 2014-04-03 | explicit returns | Aidan Nulman | |
| 2014-02-26 | Convert the rest of the errors | Carlos Martín Nieto | |
| 2014-02-26 | Added git error code to the error object. | Jesper Hansen | |
| 2014-02-24 | Merge branch 'master' into custom_odb | Aidan Nulman | |
| Conflicts: git.go reference.go repository.go submodule.go | |||
| 2014-01-29 | add OdbBackend.Free() and the C it wraps; go fmt odb.go | Aidan Nulman | |
| 2014-01-28 | Merge branch 'master' into custom_odb | Aidan Nulman | |
| 2014-01-26 | Remove unnecessary cast. | Claudiu-Vlad Ursache | |
| 2014-01-25 | Add Odb hash function. | Claudiu-Vlad Ursache | |
| 2013-12-20 | remove unnecessary comment | Aidan Nulman | |
| 2013-12-20 | Add OdbBackend constructor | Aidan Nulman | |
| 2013-12-19 | Rename constructor functions to New... | Aidan Nulman | |
| 2013-12-19 | Refactor InitRepositoryWCustomOdbBackend() into component functions | Aidan Nulman | |
| 2013-12-18 | Stop assuming ODB backend includes wrapping routine; wrap in git2go instead | Aidan Nulman | |
| 2013-12-18 | Lock the OS thread when acessing errors | Carlos Martín Nieto | |
| The library stores error information in thread-local storage, which means we need to make sure that the Go runtime doesn't switch OS threads between the time we call a function and th time we attempt to retrieve the error information. | |||
| 2013-11-14 | Don't repeat the pkg-config line | Carlos Martín Nieto | |
| This is only needed once per package. Having it on every file makes the build system ask about it n times, which is silly. | |||
| 2013-09-17 | Merge pull request #38 from libgit2/odb-stream | Vicent Martí | |
| Wrap the odb streams | |||
| 2013-09-11 | Object types are constants | Carlos Martín Nieto | |
| Define the object type values as constants | |||
| 2013-09-11 | Wrap the odb streams | Carlos Martín Nieto | |
| The interface to these streams should be what you expect from Go, and both have Write and Close functions so they implement Reader/ReadCloser and Write/WriteCloser respectively. | |||
| 2013-06-13 | Merge pull request #13 from libgit2/polymorphism-take-2 | Vicent Martí | |
| My take on polymorphism | |||
| 2013-05-21 | Implement git_odb_foreach | Axel Wagner | |
| 2013-04-16 | Take 2 on polymorphism | Vicent Marti | |
| 2013-03-06 | Properly wrap ODB objects | Vicent Marti | |
| 2013-03-06 | Free Git objects via finalizers or manually | Carlos Martín Nieto | |
| Provide a manual way of freeing objects, but set finalizers for them in case the user does not want to worry about memory management, which would be useful for commits or trees, which sare typically small. When the objects are freed manually, the finalizer is unset to avoid double-freeing, mimicking what the go runtime does. | |||
| 2013-03-05 | Initial commit | Vicent Marti | |
