]> Dogcows Code - chaz/tint2/blob - ChangeLog
New import
[chaz/tint2] / ChangeLog
1
2
3 2008-09-30
4 - change tintrc format
5 background and border can use linear gradiant
6 - update documentation
7
8 2008-09-24
9 - change tintrc format
10 user can define a list of background and border at the beginning of tintrc
11 and each object (panel, taskbar, task, clock, systray) get a background number.
12 the background number 0 is reserved by tint2 for full transparency.
13 user's background start with number 1, 2, ...
14
15 2008-09-22
16 - better control on icon opacity
17 icon opacity use the same value as text opacity
18
19 2008-09-21
20 - new parameter task_text = 0 or 1
21 so you can show task's icon without text
22 - remove task_icon_size parameter because icon_size is calculate with task->padding_y
23
24 2008-09-19
25 - improve clock drawing on 2 lines
26 - new design : object oriented
27 clock inherit Area (with draw_background)
28 - rename parameter 'panel_mode' in 'taskbar_mode'
29
30 2008-09-17
31 - change name from tint to tint2 because debian has already a package named tint
32 - new design : object oriented
33 tasks inherit Area
34 taskbars inherit Area
35
36 2008-09-16
37 - new design : object oriented
38 remove task_margin parameter, replaced by taskbar_padding
39 fixed segfault with new layout
40
41 2008-09-04
42 - new design : object oriented
43 all objects inherit from Area : panel, taskbar, task, clock
44
45 2008-09-02 licence changed to GPL V2
46 > Hi Pål,
47 > Since latest release (tint-0.6), I try to merge a systray in tint.
48 > The code I would like to merge is under GPL V2 licence.
49 > So are you agree to change the licence of tint to GPL V2 ?
50 Pål Staurland answer :
51 Yeah no problem::)
52
53 2008-08-17 patch from i...@noctus.net
54 - fixed bug : "Task button titles do not update"
55
56 2008-08-12
57 - code cleanup : Taskbar use GSLIST from glib
58
59 2008-08-07
60 - add 1 space between task title and icon
61
62 2008-07-25
63 - fixed bug when (task_rounded > panel_height/2)
64
65
66 ----------------------------------------------------------------
67 2008-07-20 thil7 <lorthiois@bbsoft.fr>
68 released tint-0.6
69
70 2008-07-19
71 - backward compatibility : save new config file
72
73 2008-07-18
74 - bug fixed with multi-monitor : memory leak, move task on the same monitor
75
76 2008-07-12
77 - multi_monitor : added window_get_monitor(win)
78
79 2008-07-05
80 - multi_monitor : changed taskbar allocation when add/remove a monitor
81 - update documentation
82
83 2008-07-04
84 - changed in config file, panel_show_all_desktop
85 replaced by panel_mode = single_desktop / multi_desktop / multi_monitor
86 - with panel_mode = multi_monitor, tint show one taskbar by monitor
87
88 2008-07-02
89 - add xinerama dependency
90 - read monitors configuration
91 - tint will run in 'sleep_mode'
92 if you specify 'panel_monitor' on an unplug monitor
93 - tint 'wake up' when the monitor is detected or resolution changed
94
95 2008-06-30 patch from goo...@dougbarton.us
96 - tint wait for window manager on startup
97
98 2008-06-29
99 - specify monitor with parameter 'panel_monitor'
100 - panel_position is relative to your monitor
101 panel_monitor = 1
102 panel_position = bottom center
103
104 2008-06-24
105 - fixed bug : show tint on all desktop with fluxbox
106
107 2008-06-23
108 - task_width = 0 to get full taskbar width
109 - added documentation in /doc
110
111 2008-06-16
112 - renamed parameter panel_margin to panel_padding
113 - added parameter panel_margin = vertical_margin horizontal_margin
114
115 2008-06-15
116 - fixed bug : icon position changed when clock adjust width
117 - removed boolean parameter panel_background and task_background
118 replaced with opacity (alpha) = 0
119 - removed task_active_border_width parameter
120 identical to task_border_width
121 - fixed bug : draw task below panel border
122
123 2008-06-11
124 - removed the need of desktop margin.
125 tint specify margin to window magager (_NET_WM_STRUT)
126
127 2008-06-10
128 - fixed bug : time/date vertical and horizontal center
129
130 2008-06-10 patch from benjaminfranzke
131 - fixed bug : draw icon on 64bit system.
132
133 2008-06-08
134 - fixed bug : in draw border and fill background
135
136 2008-06-04
137 - allow config file on the command line : tint -c ./tintrc2
138 - allow 2 value in config file : key = value1 value2
139 - panel_margin can get 2 values : vertical_margin horizontal_margin
140 panel_margin = 8 4
141
142 2008-05-30
143 - put panel below other window
144 - set locale LANG
145
146 2008-05-28
147 - clock_width adjust automatically
148 - configure : time2_format see 'man strftime'
149
150 2008-05-27
151 - configure : time1_format see 'man strftime'
152 - cleanup code : refresh_pos()
153
154 2008-05-26
155 - catch time event in main loop
156 - draw clock fixed format %H:%M
157
158 2008-05-24
159 - removed boolean parameter task_icon
160 task_icon_size = 0 replace task_icon = 0
161 - all colors parameters can get 2 values : color and opacity (alpha)
162 font_color = #ffffff 70
163
164 2008-05-23
165 - cpu optimisation : limit call to visual_refresh()
166
167 2008-05-22
168 - configure clock : clock_font, clock_font_color
169
170
171 ----------------------------------------------------------------
172 2008-05-20 thil7 <lorthiois@bbsoft.fr>
173 released tint-0.5
174
175 2008-05-19
176 - improve usability in mode 'show_all_desktop'
177 -> don't switch desktop when close a task of another desktop
178 -> allow to drag and drop task between desktop
179 - change panel_position : you can now specify top or bottom.
180 values : bottom left, bottom right, bottom center, top left, top right, top center
181 keep compatibility with old tintrc files
182 - change Makefile :
183 add $PREFIX and $DESTDIR
184 install default config file in /etc/xdg/tint/tintrc
185 - on startup, tint copy $XDG_CONFIG_DIR/tint/tintrc in ~/.config/tint/tintrc
186 so each user can customize tintrc
187 - fixed : name of task in fluxbox
188 - improve focus detection (TransientForHint)
189 - cleanup code : send_event
190
191
192 ----------------------------------------------------------------
193 2008-05-14 thil7 <lorthiois@bbsoft.fr>
194 released tint-0.4
195
196 2008-05-12
197 - boolean option 'show_all_desktop'
198 0 : tint panel show one taskbar (from current desktop)
199 1 : tint panel show all taskbars (from all desktops)
200 - clic on a task switch to the desktop
201 - clic on a taskbar (if empty) switch to the desktop
202 - add layout for taskbar : panel -> taskbar -> task
203 - cleanup code : state 'active' in Task replaced by task_active in Panel
204 - hide some window : _NET_WM_WINDOW_TYPE_DIALOG, _NET_WM_STATE_MODAL
205 - change project to 'MIT licence'
206 because Pål Staurland put 'MIT licence' in all file source
207
208
209 ----------------------------------------------------------------
210 2008-05-10 thil7 <lorthiois@bbsoft.fr>
211 released tint-0.3
212
213 2008-05-10
214 - manage events : 'send to desktop' and 'send to all desktop'
215 - bug solved : 'close' action now send _NET_CLOSE_WINDOW
216 so openoffice ask 'save document...' if needed
217 - cpu optimisation :
218 -> don't redraw panel background on all events. just when desktop change.
219 -> don't remove/add all tasks when switch between desktop. remove 'task_new_desktop()'.
220 - small bug on _NET_WM_STATE_SKIP_TASKBAR corrected
221 - memory leak on g_build_filename
222
223
224 ----------------------------------------------------------------
225 2008-05-09 thil7 <lorthiois@bbsoft.fr>
226 released tint-0.2
227
228 2008-05-08
229 - panel : add rounded and border (color and alpha)
230 - remove option 'panel_tasks_centered'
231 - user can configure mouse event on task
232 (none, toggle, iconify, shade, close, toggle_iconify)
233
234 2008-05-07
235 - cpu optimisation : resize_tasks only when add/remove task,
236 compute pos_y at startup
237
238 2008-05-04
239 - task width adjust when too many task
240
241 2008-05-01
242 - task : add rounded and border (color and alpha)
243 - panel position (left, right, center) thank to ak47izatool
244 - cleanup code : vertical position (icon and text),
245 better refresh after delete task, memory leak *font
246 - panel : changed panel_margin and task_margin
247
248 2008-04-22
249 - fork ttm projet from p://code.google.com/p/ttm/ (by Pål Staurland staura@gmail.com)
250 while the projet is no longer in developpement, have not changed the name of 'tint'.
251
252
This page took 0.048752 seconds and 5 git commands to generate.