diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2014-03-20 22:52:48 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2014-03-20 22:52:48 (GMT) |
commit | 18d6b808db6e31e867525d68f92d6f928a7ab5a7 (patch) | |
tree | d534c8e374004866696322a4c3f58ae2a7a545d9 /ChangeLog | |
parent | 84790a5b420d0a9ce658013573b180ce059db325 (diff) |
Created the first steps for a distributed storage.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@368 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 66 |
1 files changed, 66 insertions, 0 deletions
@@ -1,3 +1,69 @@ +14-03-20 Cyrille Bagard <nocbos@gmail.com> + + * configure.ac: + Include the libarchive and SQLite to the project. Add the new Makfile + from the 'src/analysis/db' directory to AC_CONFIG_FILES. + + * src/analysis/binary.c: + * src/analysis/binary.h: + * src/analysis/binary-int.h: + Load, save and handle the new storage features. + + * src/analysis/db/bookmark.c: + * src/analysis/db/bookmark.h: + * src/analysis/db/cdb.c: + * src/analysis/db/cdb.h: + * src/analysis/db/client.c: + * src/analysis/db/client.h: + * src/analysis/db/collection.c: + * src/analysis/db/collection.h: + * src/analysis/db/core.c: + * src/analysis/db/core.h: + * src/analysis/db/Makefile.am: + * src/analysis/db/protocol.h: + * src/analysis/db/server.c: + * src/analysis/db/server.h: + New entries: create the first steps for a distributed storage. + + * src/analysis/Makefile.am: + Add db/libanalysisdb.la to libanalysis_la_LIBADD and db to SUBDIRS. + + * src/common/io.c: + * src/common/io.h: + New entries: prepare safe networking input/output routines. + + * src/common/Makefile.am: + Add 'io.[ch]' to libcommon_la_SOURCES. + + * src/common/xdg.c: + * src/common/xdg.h: + Use G_DIR_SEPARATOR_S when handling paths for a more portable way. Create + a directory, with its parent directories as needed. + + * src/common/xml.c: + * src/common/xml.h: + Store an unsigned integer as value for the content of a node. + + * src/dialogs/Makefile.am: + Add the 'storage.[ch]' files to libdialogs_la_SOURCES. + + * src/dialogs/storage.c: + * src/dialogs/storage.h: + New entries: provide a dialog window to change the storage properties + of binaries. + + * src/gui/menus/binary.c: + Update menus for the storage dialog window. + + * src/main.c: + Introduce some new calls. + + * src/Makefile.am: + Update chrysalide_LDFLAGS with the new dependencies. + + * src/project.c: + Update/clean code. + 14-01-26 Cyrille Bagard <nocbos@gmail.com> * configure.ac: |