diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2012-12-18 22:44:24 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2012-12-18 22:44:24 (GMT) |
commit | f4dbbab3190d13e61f125eea51a0ecec2ab9e897 (patch) | |
tree | 2362579b428c363e2cca94e0fa89b1e39b7a50e7 /ChangeLog | |
parent | 64e09a6c3e39785975b5322973ed83734cedb82e (diff) |
Created a proper panel for the Android permissions in the editor.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@305 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 75 |
1 files changed, 75 insertions, 0 deletions
@@ -1,3 +1,78 @@ +12-12-18 Cyrille Bagard <nocbos@gmail.com> + + * configure.ac: + Add the new Makfile from the 'plugins/pychrysa/gtkext directory to + AC_CONFIG_FILES. + + * plugins/pychrysa/glibext/module.c: + Typo. + + * plugins/pychrysa/gtkext/Makefile.am: + * plugins/pychrysa/gtkext/module.c: + * plugins/pychrysa/gtkext/module.h: + * plugins/pychrysa/gtkext/viewpanel.c: + * plugins/pychrysa/gtkext/viewpanel.h: + New entries: introduce a little support of view panels in Python. + + * plugins/pychrysa/gui/editem.c: + * plugins/pychrysa/gui/editem.h: + New entries: create editor items in Python. + + * plugins/pychrysa/gui/Makefile.am: + Add the 'editem.[ch]' files to libpychrysagui_la_SOURCES. + + * plugins/pychrysa/gui/module.c: + Load the EditorItem type. + + * plugins/pychrysa/gui/panels/panel.c: + * plugins/pychrysa/gui/panels/panel.h: + Clean and update the code. + + * plugins/pychrysa/helpers.c: + * plugins/pychrysa/helpers.h: + New entries: provide a simple public way to run Python methods from C code. + + * plugins/pychrysa/Makefile.am: + Add the 'helpers.[ch]' files to pychrysa_la_SOURCES, + 'gtkext/libpychrysagtkext.la' to and pychrysa_la_LIBADD and + 'gtkext' to SUBDIRS. + + * plugins/pychrysa/plugin.c: + Clean the code and init Python plugins as the real ones. + + * plugins/pychrysa/pychrysa.c: + Load the gtkext module. + + * plugins/pychrysa/quirks.c: + * plugins/pychrysa/quirks.h: + Add a dirty function to retrieve the Python object of an already + converted GLib object, without using the creation method of PyGObject. + + * plugins/python/androperms/androperms.py: + Create a proper panel for the Android permissions in the editor. + + * plugins/python/androperms/db.py: + New entry: group database access here. + + * plugins/python/androperms/Makefile.am: + Add the 'db.py' file to androperms_DATA. + + * plugins/python/androperms/panel.py: + Create a proper panel for the Android permissions in the editor. + + * src/analysis/blocks/flow.c: + * src/analysis/disass/disassembler.c: + * src/analysis/disass/macro.c: + Disable debug output. + + * src/plugins/pglist.c: + * src/plugins/plugin.c: + * src/plugins/plugin.h: + Init the plugins in a single place: before adding them to the main list. + + * src/plugins/plugin-int.h: + Typo. Store the plugin filename. + 12-12-16 Cyrille Bagard <nocbos@gmail.com> * src/analysis/binary.c: |