summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog59
1 files changed, 59 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6d9709f..fadf8f6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,62 @@
+09-08-30 Cyrille Bagard <nocbos@gmail.com>
+
+ * configure.ac:
+ Enable AM_SILENT_RULES and disable GTK_DISABLE_DEPRECATED.
+
+ * plugins/stackvars/stackvars.c:
+ Update call (is_x86_register_...() -> g_x86_register_is_...()).
+
+ * src/analysis/exporter.c:
+ * src/analysis/exporter.h:
+ * src/analysis/exporter-int.h:
+ New entries: define a new interface for rendering/exporting disassembly.
+
+ * src/analysis/line.c:
+ * src/analysis/line_code.c:
+ * src/analysis/line_comment.c:
+ * src/analysis/line-int.h:
+ * src/analysis/line_prologue.c:
+ Follow the new way of rendering.
+
+ * src/analysis/Makefile.am:
+ Add exporter*.[ch] to libanalysis_la_SOURCES.
+
+ * src/analysis/roptions.h:
+ Define the ShowingArea enumeration (may be removed).
+
+ * src/arch/archbase.c:
+ New entry: provide one function to translate addresses into strings.
+
+ * src/arch/archbase.h:
+ Define VMPA_MAX_SIZE for translating into strings.
+
+ * src/arch/immediate.c:
+ * src/arch/instruction.c:
+ * src/arch/instruction-int.h:
+ Follow the new way of rendering and remove some unused code.
+
+ * src/arch/Makefile.am:
+ Add archbase.c to libarch_la_SOURCES.
+
+ * src/arch/operand.c:
+ * src/arch/operand-int.h:
+ * src/arch/x86/operand.c:
+ * src/arch/x86/operand.h:
+ Follow the new way of rendering and remove some unused code.
+
+ * src/arch/x86/registers.c:
+ * src/arch/x86/registers.h:
+ Make GLib objects from registers and follow the new way of rendering.
+
+ * src/gtkext/gtkblockview.c:
+ Render using the GTK buffer (crappy version).
+
+ * src/gtkext/gtkextstatusbar.c:
+ Fix one bug relative to threads.
+
+ * src/main.c:
+ Load the tag table for the GTK rendering.
+
09-08-12 Cyrille Bagard <nocbos@gmail.com>
* src/analysis/binary.c: