forked from Z1488/guake-svn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
264 lines (176 loc) · 9.07 KB
/
ChangeLog
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
2007-10-02 Lincoln de Sousa <[email protected]>
* src/guake.py (PrefsDialog):
* src/guake.py (PrefsDialog.load_configs): Widget spinHistorySize renamed
to historysize-spinbutton to follow the name of other widgets, because of
this, the callback on_spinHistorySize_value_changed was renamed to
on_historysize_spinbutton_value_changed. Removed animate flag button
changer.
* src/guake.py (PrefsDialog.load_configs): Adding warnings when unable to
parse a color.
* src/guake.py (PrefsDialog.on_show_scrollbar_checkbutton_toggled): Pep8'ed
* src/guake.py
(PrefsDialog.on_bgimage_filechooserbutton_selection_changed): little var
name clean.
* src/guake.py (Guake.refresh): Comment updated, misspell fixed.
* src/guake.py (Guake.show): Moving add_tab call to be called before
self.window.show, to avoid blank screens before adding a tab. And some
unuseful function calls removed. Not this method resizes and shows the main
window, see the next entry to understand why.
* src/guake.py (Guake.animate_hide, Guake.animate_show): Removed, we will
wait a better moment to implement animated things, now Guake.show and
Guake.hide makes the work alone.
* data/guake.glade: window-root is not a popup any more, now it's a
toplevel window, his type_hint is Normal by default, etc. The
notebook-terminals widget had his tabs hidden by default, now it can has
focus, all borders were set to 0, empty pages were removed, because it is
added by code, not in the glade file. toolbar widget height was set to 22.
* data/prefs.glade: spinHistorySize widget was renamed to
historysize-spinbutton (his change signall too), padding and spacing
changed in many places, misspell fixed in "Hide on lose focus" and remove
option to choose animated show/hide.
2007-06-21 Lincoln de Sousa <[email protected]>
* src/dialogs.py: Removed.
* src/Makefile.am: Removing dialog.py from extra dist list.
2007-06-20 Gabriel Falcao <[email protected]>
* src/guake.py: Added a filter to choose only image files in prefs dialog
* src/guake.py: Added a error handling for bg_filechooser in prefs dialog
2007-06-19 Lincoln de Sousa <[email protected]>
* src/common.py: Adding ShowableError class and test_gconf function.
* src/guake.py (Guake.add_tab): Improving logic that hiddes scrollbar.
* src/guake.py (Guake.show): Removing some unusefull code.
* src/guake.py: Adding a call to test_gconf in main section of module.
2007-06-17 Gabriel Falcao <[email protected]>
* data/guake.schema: Adding two more keys: scrollbar visibe (bool) and
history size(int)
* data/prefs.glade: Adding widget to setup scrollback lines (aka. history
size)
* data/prefs.glade: Adding widget to setup scrollbar visibility
* src/guake.py: Added respective methods to handle history size and
scrollbar visibility
2007-06-17 Lincoln de Sousa <[email protected]>
* src/globalhotkeys/keybinder.c: Removing a little test...
* src/globalhotkeys/globalhotkeys.c: Adding two lines to make the code
pretty =D
* src/globalhotkeys/testbinding.c: Adding license information (Never forget
this again!!!)
* src/common.py: Removing translation functions (using bindtextdomain
function in simpleglade.py)
* src/guake.py: Calling bindtextdomain function to setup translation,
changing guakeabt.png image name to guake.png, little code cleanup,
* src/guake.py (Guake): Some methods was moved to be nearer to methods that
does closed things (load_config and load_accelerators specifically). Added
accel_* methods to avoid Control caracters in terminal widget (these
methods are connected to a key action, and they returns True -- this is the
trick)
* src/guake.py (Guake.update_preview_cb): Changing number of params (self
was not there =/) and removing unecessary try/except and using a simple if.
The image size was changed too.
* src/guake.py (Guake.add_tab): Added a scrollbar in every new tab added.
* src/guake.py (guake.set_last_pos,add_tab): Improved the way to get the
current tab shown.
* src/guake.py (Guake.on_terminal_exited): Adding a new parameter (term) to
this callback. It was necessary because when a terminal exits the widget
sent is not a terminal, after the change above, it must be sent as
user_data to this callback.
* src/simplegladeapp.py: Commenting setlocale call to avoid problems with
languages with sufixes (as pt_BR.utf8)
* po-extact: Fixing a bug that was removing all .h files in project =/ no
it only removes *.glade.h files...
* data/pixmaps,
* data/pixmaps/Makefile.am: Added.
* data/*.png,
* data/*.svg: Moved to data/pixmaps
* configure.ac: Adding data/pixmaps/Makefile in output list.
* TODO: Updated.
2007-06-14 Lincoln de Sousa <[email protected]>
* src/globalhotkeys/example.py: Added
* src/globalhotkeys/keybinder.c,
* src/globalhotkeys/keybinder.h: Changing return type of keybinder_bind
from void to gboolean.
* src/globalhotkeys/globalhotkeys.c: Making _wrapped_keybinder_bind returns
bool python values depending on binding works properly.
2007-06-13 Lincoln de Sousa <[email protected]>
* src/common.py: Adding update_ui function (moved from utils.py)
* src/guake.py: Changing window_size from string to int, renaming
add_tab.svg to add_tab.png, adding keyboard bindings to add a new tab and
walk through tabs.
* src/guake.py (Guake): Renaming setTerminalFocus to set_terminal_focus,
animateHide to animate_hide, animateShow to animate_show, delete_page to
delete_tab. Adding load_accelerators.
Removing setOnTop, setAnimationProportions, getScreenSize.
* src/guake.py (Guake.refresh): Removed PrefsDialog instantiation, that was
unecessary.
* src/guake.py (Guake.load_configs): Removing too many unecessary code,
removing references from removed utils module.
* src/main.py,
* src/utils.py: Removed.
* src/Makefile.am: Removing references of main.py, utils.py and
guakeApplets.py.
* data/guake.glade: Adding more configuration of main window to glade file
and removing that from python code.
* data/Makefile.am: Removing references from add_tab.svg and addTerm.svg
and adding reference to add_tab.png.
* data/add_tab.svg: Resising the image.
* data/guake.schemas: Changing window_size type from string to int and
adding more keys (keybindings/local/new_tab,
keybindings/local/previous_tab, keybindings/local/next_tab)
* data/add_tab.png: Added
2007-06-03 Lincoln de Sousa <[email protected]>
* src/guakeApplet.py: Removed.
* TODO: Added more issues, this will be our standard roadmap before
using a tracker =)
2007-06-01 Lincoln de Sousa <[email protected]>
* src/guake.py: Code cleanup, renaming some methods, to remove the
mixedCase style and use the underscore_separated style.
2007-05-30 Lincoln de Sousa <[email protected]>
* src/guake.in: Became a shell script, to avoid problems with dbus.
* src/guake.py: Code cleanup and adding methods that will be called by
dbus. Renamed method addTerm to add_tab. Changed dbus object name.
* src/dbusiface.py: Changed name of object from DBus to DBusInterface, and
changed the way to inform user that dbus will not be available.
* data/add_tab.svg: Added -- This is a copy of addTerm.svg and was copied
only because addTerm method has its name changed in guake.py file,
addTerm.svg still in data dir and will only be removed when we do the
cleanup in image file names.
* data/Makefile.am: Added add_tab.svg file in data dir.
2007-05-30 Lincoln de Sousa <[email protected]>
* autogen.sh: Sending all parameters from this to gnome-autogen.sh.
* configure.ac: Adding more two expanded variables (BINDIR and DATADIR) and
adding more two output files.
* TODO: Updating with closed things.
* src/guake_globals.py.in: Changing paths to be more customizable by the
configure script.
* data/Makefile.am: Adding desktop file, dbus service file and schema file.
* data/guake.desktop.in,
* data/org.gnome.Guake.service.in: Added
2007-05-27 Lincoln de Sousa <[email protected]>
* data/guake.glade,
* data/prefs.glade,
* data/about.glade: Removing image path references, because libglade does
not have a parameter to set `pixmap dir', so we make it in python.
* src/guake: Renamed to src/guake.in
* src/guake.in: Added to be the main script instead of guake.py, it only calls
guake.run function.
* m4/*: Added.
* configure.ac: Adding m4 as macro dir, adding a call to AS_AC_EXPAND set
LIBDIR with libdir value and adding `src/guake' as an output file.
* src/Makefile.am: Changing guake dir from prefix/bin to bindir. It was
made to able the user to change bin dir with the `configure' script.
* src/common.py,
* src/guake.py: datapath function was splitted in pixmapfile and gladefile
functions because if this project doesn't stop to grow, we will separate
images from glade files in data dir.
* src/guake.py: Adding image references told above and some code cleanup.
2007-05-26 Lincoln de Sousa <[email protected]>
* AUTHORS,
* INSTALL,
* NEWS,
* autogen.sh,
* Makefile.am,
* configure.ac,
* data/Makefile.am,
* src/Makefile.am,
* src/globalhotkeys/Makefile.am,
* src/guake_globals.py.in,
* src/guake: Added
* setup.py: Removed