Update README.txt
[GitSharp.git] / ChangeLog
blob6df01f790bece2e5a3ad54857bad9afb50649507
1 2008-12-06  Miguel de Icaza  <miguel@novell.com>
3         * Lib/Constants.cs: Add a handful of extra contants.
5         * Lib/Codec.cs: Put here the coding/encoding routines that were
6         originally in egit's lib/Constants.java class
8         * Lib/*: Align some API doc comments, add some API docs.
10         * Lib/RefDatabase.cs (Peel): Implement.
12         * Lib/Constants.cs: Put all the constants here (not sure where
13         some new constants should have gone). 
15         * Lib/Ref.cs: Update to support `Peeled' property and
16         `OriginalName' from newer eGits.
18 2008-12-03  Miguel de Icaza  <miguel@novell.com>
20         * test.cs: make the sample program dump all the refs.
22         * Lib/Repository.cs: Expose GetAllRefs.
24         * Lib/RefDatabase.cs (ReadOneLooseRef): Do not crash if the
25         refName is not present in the looseKeys.
27         (RefreshPackedRefs): If the packed-refs file does not exist, do
28         not try to continue, it would otherwise crash.
30         * Lib/WindowedFile.cs: Implement another file from the original
31         Java implementation.
33         * Lib/PackIndex.cs: Fix indentation of comment.
35         * Lib/WindowCursor.cs: Implement.
37 2008-12-02  Miguel de Icaza  <miguel@novell.com>
39         * Lib/ByteArrayWindow.cs: Implement the functionality for
40         ByteArrayWindow, do not derive from ByteWindow which is a design
41         in the original Java implementation to use two different backends
42         for storage.
44         We could achieve the same in a cleaner way than the original
45         implementation if we choose to do so using an interface.