forked from gotcha/vimpdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES.txt
174 lines (94 loc) · 3.15 KB
/
CHANGES.txt
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
Changelog
=========
0.4.6 (unreleased)
------------------
- Nothing changed yet.
0.4.5 (2011-04-28)
------------------
- fix highlighting of current line.
0.4.4 (2010-11-29)
------------------
- tests cleanup : get rid of helper class and functions.
- code cleanup : improve imports style.
- code cleanup : use ``vim_bridge`` to bridge VIM script and python.
- after ``c(ontinue)``, key mapping was broken (again :-().
0.4.3.2 (2010-11-27)
--------------------
- fix Linux default values in documentation.
- document ``PDBxx`` commands.
- less noise on VIM command-line.
- better highlighting of current line.
0.4.3 (2010-11-26)
------------------
- fix launch of VIM server when server names collide like VIM and GVIM.
- fix detection of VIM support.
- fix **vimpdb** buffer creation.
- fix and tune Linux default values.
0.4.2 (2010-11-26)
------------------
- ``PDBEval`` (mapped to ``?`` key) to ask for a Python expression to evaluate.
- ``PDBClear`` (mapped to ``B`` key) to clear a previously set breakpoint.
- open new tab only if there is already an opened file in VIM.
- close **vimpdb** buffer when ``continue`` (``c``), ``reset`` (``x``) or quit
(``q``).
- launch VIM server also if another server is running.
0.4.1.2 (2010-11-26)
--------------------
- polish documentation.
0.4.1.1 (2010-11-26)
--------------------
- tune documentation.
0.4.1 (2010-11-26)
------------------
- check ``python`` and ``clientserver`` support; gives a chance to provide right
configuration if support is missing.
- try to launch a VIM server instance if none is running.
0.4.0 (2010-07-29)
------------------
- tested with Python 2.7.
- UDP port is now an option.
- configuration through ``~/.vimpdbrc`` instead of environment variables.
0.3.8 (2010-06-17)
------------------
- fix: some versions of VIM need explicit import of vim module
even though most don't.
(http://github.com/gotcha/vimpdb/issues/issue/5)
0.3.7 (2010-05-20)
------------------
- fix: could not go ``down`` after switching from ``pdb`` to
**vimpdb** after having gone ``up``.
(http://github.com/gotcha/vimpdb/issues/issue/4)
0.3.6 (2010-04-17)
------------------
- fix: ``continue`` command was broken after breakpoint has been set.
(http://github.com/gotcha/vimpdb/issues/issue/3)
- fix: Key mappings were left broken after ``continue`` command.
(http://github.com/gotcha/vimpdb/issues/issue/2)
0.3.5 (2010-03-22)
------------------
- better documentation, especially for Windows.
- fix: capture of output was broken for Python 2.5 and 2.6.
- Windows compatibility (at least XP)
0.3.4 (2010-03-15)
------------------
- close socket to allow debugging session to start again.
0.3.3 (2010-03-04)
------------------
- avoid leaving mappings in debugged buffers.
0.3.2 (2010-03-03)
------------------
- more documentation
0.3.1 (2010-03-02)
------------------
- fix setup.py metadata so that it does not hold non ascii chars.
This avoided actual release to PyPI.
0.3 (2010-03-02)
----------------
- fully rewritten.
0.2.1 (2008-06-27)
------------------
- added ``vimpdb`` script.
- added "exit" callback.
0.2 (2008-06-17)
----------------
- first release to PyPI.