File: ChangeLog

package info (click to toggle)
dissy 7-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 240 kB
  • ctags: 308
  • sloc: python: 1,299; xml: 20; makefile: 6; sh: 5
file content (72 lines) | stat: -rw-r--r-- 2,209 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
Dissy (7)
	* Workaround for a objdump bug on (at least) some MIPS binaries,
	where addresses are internally 64 bits. If dissy finds no
	instructions in a function, it will therefore try to sign-extend
	the value and use that

	* Support for setting the OBJDUMP environment variable to set the
	objdump to use (idea from Joseph E. Garvey)

	* Initial ARM support (i.e., support for visualizing jumps -
	disassembly has always worked)

	* Better support for PowerPC (instruction regexp + handling of
	more branch instructions)

	* History handling has changed to more match that of a
	web-browser, overwriting the "current" entry instead of appending
	after it

	-- Simon Kagstrom <simon.kagstrom@gmail.com>, Fri Jan 25 13:10:25 CET 2008

Dissy (6)
	* New ChangeLog format

	* Better "location bar" behavior: Allow multiple words to be
	pasted and do more intelligent handling of numbers

	* Added navigation history with back/forward (like in web
	browsers)

	* Fixed MIPS register regexp to handle k registers

	* Added manpage written by the Varun Hiremath of the Debian
	project, and documented the new features

	* Fixed bug where the -t option made it impossible to search
	  for addresses

	-- Simon Kagstrom <simon.kagstrom@gmail.com>, Sun Aug  5 12:54:21 CEST 2007

2007-03-11 Simon Kgstrm <simon.kagstrom@gmail.com> (5)
	* Don't parse symbols eagerly (this improves performance a lot)

	* Added some missing jump instructions on IA-32

2006-11-25 Simon Kgstrm <ska@bth.se> (4)
	* Added PPC support (Andrew May)

	* Added a text entry for marking certain patterns, e.g., to
	highlight certain registers and so in the text. The pattern is a
	regular expression

	* Fixed checks to avoid a few non-fatal exceptions

	* Added tooltips

	* Setting of colors is now possible in the preferences dialogue

2006-10-14 Simon Kgstrm <ska@bth.se> (3)
	* Added ability to search for instructions and registers

	* Fixed bug in label lookup

2006-09-03 Simon Kgstrm <ska@bth.se> (2)
	* Much faster loading of files. Only load a list of symbols and
	then load and links each function on demand.

	* More clever use of objdump, nm and readelf

	* Added reload menu option

	* Better IA-32 architecture support