summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2012-11-19 21:26:51 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2012-11-19 21:26:51 (GMT)
commit5a70286f7f56cc72a0249fcaf404afabfb033956 (patch)
treeef2b94b04a3e84b93832749ccf6cd9b9cc370d3c /ChangeLog
parent760e2e7346518dd1264126c1696f9ad88884d64c (diff)
Handled Dalvik exception handlers in the graphic view.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@285 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog84
1 files changed, 84 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 3153a68..159f811 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,87 @@
+12-11-19 Cyrille Bagard <nocbos@gmail.com>
+
+ * configure.ac:
+ Add the new Makfiles from the 'plugins/androhelpers' and
+ 'plugins/pychrysa/format/dex' directories to AC_CONFIG_FILES.
+ Remove the old 'plugins/dexresolver' one.
+
+ * plugins/androhelpers/androhelpers.c:
+ * plugins/androhelpers/androhelpers.h:
+ * plugins/androhelpers/Makefile.am:
+ * plugins/androhelpers/try_n_catch.c:
+ * plugins/androhelpers/try_n_catch.h:
+ New entries: handle Dalvik exception handlers in the graphic view.
+
+ * plugins/Makefile.am:
+ Add androhelpers to SUBDIRS.
+
+ * plugins/pychrysa/analysis/binary.c:
+ Improve a little bit the Python interface.
+
+ * plugins/pychrysa/format/dex/class.c:
+ * plugins/pychrysa/format/dex/class.h:
+ * plugins/pychrysa/format/dex/dex.c:
+ * plugins/pychrysa/format/dex/dex.h:
+ * plugins/pychrysa/format/dex/Makefile.am:
+ * plugins/pychrysa/format/dex/module.c:
+ * plugins/pychrysa/format/dex/module.h:
+ New entries: define the Dex format for Python.
+
+ * plugins/pychrysa/format/executable.c:
+ * plugins/pychrysa/format/executable.h:
+ Improve a little bit the Python interface.
+
+ * plugins/pychrysa/format/format.c:
+ * plugins/pychrysa/format/format.h:
+ New entries: define formats for Python.
+
+ * plugins/pychrysa/format/Makefile.am:
+ * plugins/pychrysa/format/module.c:
+ Improve a little bit the Python interface.
+
+ * src/analysis/disass/links.c:
+ Create all links between instructions here.
+
+ * src/analysis/type-int.h:
+ New entry: add a missing file.
+
+ * src/arch/instruction.c:
+ * src/arch/instruction.h:
+ * src/arch/instruction-int.h:
+ Provide the previous instruction when asked. Extend links between
+ instructions (with something to fix ?).
+
+ * src/common/leb128.h:
+ Improve leb128 support.
+
+ * src/format/dex/class.c:
+ * src/format/dex/class.h:
+ * src/format/dex/dex.c:
+ * src/format/dex/dex_def.h:
+ * src/format/dex/dex.h:
+ * src/format/dex/dex-int.c:
+ * src/format/dex/dex-int.h:
+ * src/format/dex/method.c:
+ * src/format/dex/method.h:
+ Load more Dex/Dalvik structures and provides access to them.
+
+ * src/gtkext/graph/dot.c:
+ Handle more kinds of links. Compare colors using strcmp().
+
+ * src/gtkext/graph/layout.c:
+ Handle more kinds of links. Do not create virtual links for the expected
+ excution flow anymore.
+
+ * src/gtkext/gtkgraphview.c:
+ Fix a bug in case of return instruction.
+
+ * src/gtkext/gtklinkrenderer.c:
+ * src/gtkext/gtklinkrenderer.h:
+ Handle more kinds of links.
+
+ * src/plugins/plugin.c:
+ Update code.
+
12-11-13 Cyrille Bagard <nocbos@gmail.com>
* src/arch/dalvik/instruction.c: