diff options
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 84 |
1 files changed, 84 insertions, 0 deletions
@@ -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: |