summaryrefslogtreecommitdiffstats
path: root/tdeprint/ChangeLog
blob: 86f8bbf16510fe5f2215e837ee3dfddaee1ad2ed (plain)
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
Since 2.2 release, Michael Goffioul <tdeprint@swing.be>
  * automatic filtering: if the input file format is not directly supported
    by the print spooler, tdeprint will try to convert the file to the
    primary supported input format (usually PostScript). To achieve this, 
    tdeprint uses the available filters (defined in XML files) and tries to
    build up a filter chain.
  * mime type checking: when building a filter chain, tdeprint checks that
    each output format is supported as an input by the next filter
  * possibility to specify input file from the print dialog in StandAlone
    mode (like XPP)
  * kmvirtualmanager.cpp: KMPrinter::Virtual is only set for pure virtual
    printers (== non empty instance name). This makes KPrinter::isVirtual()
    more useful.
  * CUPS plugin:
  	- support for quotas and user access restrictions (in wizard and
	  print manager)
	- added missing options in server configuration tool
  * Possibility to use an external preview program (still need a GUI to
    configure this).
  * print dialog: possibility to select the files to print in standalone
    mode (like XPP).

27/08/2001 Michael Goffioul <tdeprint@swing.be>
  * implementation of "Schedule" tab in print dialog for the CUPS plugin
    (job-hold-until attribute).
  * Printer aliases are now handled gracefully in the LPR plugin (they
    are actually discarded)
  * kprinter.cpp: implementation of setPrintProgram() as:
  	setOption("kde-isspecial", "1");
	setOption("kde-special-command", cmd);

28/08/2001 Michael Goffioul <tdeprint@swing.be>
  * implementation of KPrintAction, which provides a quick access to
    a class of printers (special, regular or both). An application just
    needs to create a KPrintAction anc connect to print(KPrinter*).

31/08/2001 Michael Goffioul <tdeprint@swing.be>
  * CUPS plugin: fix crash for Qt3 port, must check if attr->name is NULL
    before comparing it with strcmp or strncmp.

12/09/2001 Michael Goffioul <tdeprint@swing.be>
  * Management library: set all toolbars non movable to avoid move handles

13/09/2001 Michael Goffioul <tdeprint@swing.be>
  * CUPS plugin: fix multiple showing of password dialog for password-
    protected printers (timer is now blocked when the password dialog is
    shown)

14/09/2001 Michael Goffioul <tdeprint@swing.be>
  * CUPS plugin: configuration wizard rewritten using the structure of
    ESP PrintPro: more consistent, less pages and widgets. Not used as
    default config wizard yet.
  * QList -> QPtrList

25/09/2001 Michael Goffioul <tdeprint@swing.be>
  * CUPS plugin: made the new configuration wizard as default one.
  * other QList -> QPtrList fixes (committed to CVS)
  * Avoid to call plugin functions "completePrinter<xxx>" for pseudo
    printers (to not confuse the CUPS daemon for example)
  * Improved how the default printer is selected in print dialog to
    work in any cases
  * General: make use of TDELocale::pageSize() to determine the default
    page size (used for example for pseudo printers and classes)
  * Wizard: fix buffer overflow when adding a remote LPD queue having
    a lot of jobs waiting

03/10/2001 Michael Goffioul <tdeprint@swing.be>
  * CUPS plugin: make use of GET/PUT request to handle configuration
    file. Possibility to admin a remote CUPS server (if allowed)
  * CUPS plugin: added "/jobs" in the available resources list

09/10/2001 Michael Goffioul <tdeprint@swing.be>
  * CUPS plugin: added 2 missing pages in stand-alone mode, "Image"
    and "Text".

10/10/2001 Michael Goffioul <tdeprint@swing.be>
  * CUPS plugin: "HP-GL/2" page added
  * General: added a GUI to configure the preview program, into the
    config dialog of the print manager

12/10/2001 Michael Goffioul <tdeprint@swing.be>
  * general: added the possibility for a plugin to add new actions
    to the toolbar and context menu (main use = export driver in
    CUPS).
  * CUPS plugin: added support to export driver to Windows client
    through samba. Threaded operation with progress bar to notify
    the user. Graphical equivalent to cupsaddsmb from cups-1.1.11.

16/10/2001 Michael Goffioul <tdeprint@swing.be>
  * CUPS plugin: removed the "file" backend as it doesn't seem to
    be available since a couple of releases, and added a "Other"
    page to the wizard for any third-party backend (like pdf).

18/10/2001 Michael Goffioul <tdeprint@swing.be>
  * tdeprintfax: don't hardcode program path, use the $PATH variable
    first to find the program. Default to /usr/bin if not found.

02/11/2001 Michael Goffioul <tdeprint@swing.be>
  * CUPS plugin:
  	. fix for remote printers when there's also a local
	  printer with the same name: the printer-uri-supported
	  is not used by default anymore
	. implementation of IPP report for installed printers
	  as well as detected IPP printers on the network (in
	  the wizard)

05/11/2001 Michael Goffioul <tdeprint@swing.be>
  * tdeprintfax: added possibility to view files being faxed and
    file action (remove and view) are enabled only when needed.
  * KPrinter: when printing to a file, support encoding and spaces
    in file names + system --> TDEProcess.

07/11/2001 Michael Goffioul <tdeprint@swing.be>
  * tdeprint: fixed some problems:
	. collate entirely handled by tdeprint, even in the case
	  of page selection on application-side.
	. set KPrinter object in KPrintDialog before adding other
	  dialog pages (some pages may need it)
  * wizard: changed button layout and added a side graphic. Not
    committed as the graphic comes from HP driver (copyright).

08/11/2001 Michael Goffioul <tdeprint@swing.be>
  * CUPS plugin:
  	. complete IPP report for job added
	. implementation of dynamically added plugin menus for
	  jobs in the job viewer (used for IPP report)
	. printer infos are now retrieved from the correct host
	  for remote printers and classes (idem for IPP report)
  * general: implementation of a DCOP signal communication to
    synchronize all tdeprint apps, a plugin change in one app is
    notified to all other opened apps (via DCOP).
  * kicker extension: made extension aware of plugin change in
    other apps (using new DCOP signal comm).

09/11/2001 Michael Goffioul <tdeprint@swing.be>
  * CUPS plugin: added the possibility to list jobs on remote
    printers. No management is allowed on remote jobs (yet?).

10/11/2001 Michael Goffioul <tdeprint@swing.be>
  * general: use KShellProcess::quote() for any quoting. Normally,
    all quoting problem should be fixed now.
    
12/11/2001 Michael Goffioul <tdeprint@swing.be>
  * CUPS: redesigned the "cups-add-smb" dialog to make it more
    user-driendly.

13/11/2001 Michael GOffioul <tdeprint@swing.be>
  * general: implementation of a KActiveLabel class to embed active
    links in labels. Clicking on it "exec" the associated URL.
  * general: make use of KActiveLabel in the first page of the
    "add-printer" wizard.
  * CUPS: make use of KActiveLabel in the "cups-add-smb" wizard.
  * wizard: SMB printers with space in their name are now shown
    correctly when scanning the network (however it should be
    avoided as smbspool seems to be unable to handle it).

14/11/2001 Michael Goffioul <tdeprint@swing.be>
  * ioslave: uploaded new templates from Chris (which adds support
    for pseudo printers
  * manager: modified RootOnly message for better consistency between
    "root" and "administrator" concepts
  * print dialog: updated accels (general, Qt, copies and other CUPS
    pages)
  * print dialog:
  	. file selection: line edit -> listview
	. file selection made as print dialog page and inserted at
	  the same level than "Copies"
	. added hiding mechanism to make the dialog more compact
	  (show/hide button can probably be improved)

15/11/2001 Michael Goffioul <tdeprint@swing.be>
  * CUPS: drivers are now downloaded from the actual server for remote
    printers. This allows to have access to all options set for any
    printer (even remote ones). However remote printer's drivers are
    kept read-only.

16/11/2001 Michael Goffioul <tdeprint@swing.be>
  * print dialog: instances are now presented in a tree structure in
    the combo box -> cleaner view.
  * general: ported the use of a global instance file to 2.2 branch
    (file is /etc/cups/lpoptions).
  * CUPS: added support for Adobe PPD file compliance (foomatic will
    introduce them very soon in normal distributions), where numerical
    options are mapped into enum options. KDEPrint still uses the 
    numerical option and update the corresponding enum one with the
    closest value.

21/11/2001 Michael Goffioul <tdeprint@swing.be>
  * job viewer: clicking on 'x' button only hide the job viewer but
    doesn't quit the app. To quit, either use menu item (from window
    or system tray) or accel when job viewer is visible.
  * general: print preview has been embedded in a real dialog, so that
    it is always centered on its parent now. It also have the dialog
    buttons in title bar (no minimize).

23/11/2001 Michael Goffioul <tdeprint@swing.be>
  * job management: the job management has been re-engineered to follow
    the paradigm "1 window == 1 queue". There's still the possibility to
    view jobs for all printers within a single window. This should enhance
    the usability of job management tools (I hope).

26/11/2001 Michael Goffioul <tdeprint@swing.be>
  * job management: job type (active/completed) is now handled on a 
    printer basis instead of a global property of the manager. This allows
    different windows to show different job type, and also ease the 
    management of "All Printers" windows.
  * job management: sorting jobs on numerical values is fixed (ID,
    size, ...)
  * job management: added the possibility to customize (from the plugin)
    what's shown as job attributes. New attributes can be added. This
    will be used for priority support in CUPS plugin.
  * job management: re-engineered how dynamic plugin actions are handled
    internally to fix problems when dealing with several windows opened.
    This new mechanism should also be applied to print management dynamic
    actions (more consistent).

28/11/2001 Michael Goffioul <tdeprint@swing.be>
  * special printers: added the possibility to have configurable options
    in pseudo-printers. Options are described in an additional XML file
    (like filters) and configured through an "Advanced" tab in the property
    dialog. TODO: graphical configuration widget + apply KXmlCommand to
    normal filters.

29/11/2001 Michael Goffioul <tdeprint@swing.be>
  * general: fixed sorting of options in driver view. They should be shown
    in order of appearance now.
  * general: make use of the new KXmlCommand class for filters too.
  * filters: removed the "Page Size" from the options of enscript filter,
    this is taken from the KPrinter object now.

04/12/2001 Michael Goffioul <tdeprint@swing.be>
  * general: finalized the new XML command mechanism:
  	. graphical command builder
	. pseudo-printers and filters are completely based on new XML
	  object, though old style is supported (only requirements from
	  previous mechanism are not used).
	. KPrintFilter and KMFilterManager are now obsolete and replaced
	  by KXmlCommand and KXmlCommandManager respectively.
  * tdeprintfax: made the log window a "real" log window. It is dynamically
    refreshed on new debug output arrival (suggested by user).

10/12/2001 Michael Goffioul <tdeprint@swing.be>
  * general: make use of "Detail" mechanism of KDialogBase in XML command
    editor.

11/12/2001 Michael Goffioul <tdeprint@swing.be>
  * instances: for root, instances are saved in global file 
    /etc/cups/lpoptions. This allows to easily create global instances
    (just be root and create the instance).
  * pseudo-printers: for root, pseudo printers are saved in a global
    file, such that root is able to manage global pseudo printers. Locale
    pseudo printers still override global ones if they have the same name.

12/12/2001 Michael Goffioul <tdeprint@swing.be>
  * general: added error messages when the printer list cannot be retrieved
    in print manager and print dialog. With CUPS, if the server is not
    running, an error message is shown to the user.
  * CUPS: disabled all backends if no server is running.

13/12/2001 Michael Goffioul <tdeprint@swing.be>
  * general: preleminary support for external printer tool. Only escputil
    at this moment.

03/01/2002 Michael Goffioul <tdeprint@swing.be>
  * general:
  	. added a "ID name" label to the first dialog for command editing
	. put "View Printer Infos" in front of orientation and view type
	  change (more logical)
	. added a confirmation dialog before sending a test page to a
	  printer (printer and instance test)
	. added a short summary below the command selector containing the
	  ID and the output type ("not allowed" if no output supported).
	. added a WhatsThis help to the "Instances" tab briefly explaining
	  what's an instance.

09/01/2002 Michael Goffioul <tdeprint@swing.be>
  * general: when filtering, the file type is checked against supported
    formats. If the format is not supported, a warning is issued and the
    user has the possibility to auto-convert the file to a supported
    format. Consequence: you can now safely perform page selection on any
    file type with any printer and any spooler, tdeprint will try to convert
    the file to PS.
  * preview dialog: rewrote the code in a cleaner way, avoiding the use
    of a non toplevel main window. Preview dialog looks simpler now. New
    issue: toolbuttons overlap the toolbar border (only for toolbar not
    children of main window).
  * general: made the "Files" page a standard page in KPrinter. Modified
    kprinter's code to add that page -> will be easier to remove it when
    implementing a "--stdin" option.
  * kprinter:
  	. added a "--stdin" option. If this option is set, only printing
	  from stdin is allowed and the "Files" tab is hidden. Can be used in
	  Netscape. If files are given on the command line, this option is
	  forced unset.
	. added a "--nodialog" option for quick print.
	. added the persistent feature (with some code rewrite in tdeprint
	  library)

10/01/2002 Michael Goffioul <tdeprint@swing.be>
  * general: added (temporary) workaround for drawing problems in fixed
    toolbars, until a real fix gets implemented:
    	static_cast<QWidget*>(tb)->layout()->setMargin(1);
  * general: started to used new icons provided by Bogdan, for the toolbar
  * general: added KPrinter::autoConfigure(), to automatically configure
    a KPrinter object without the need for a print dialog.

14/01/2002 Michael Goffioul <tdeprint@swing.be>
  * slave: made case-insensitive for backward compatibility (old URLs may
    come from history). Now print:/Classes should work OK.
  * CUPS: moved the IPP report to an separate dialog and added the
    possibility to print the result.

15/01/2002 Michael Goffioul <tdeprint@swing.be>
  * started the implementation of a new LPR/LPRng plugin: this implementation
    is designed to be modular to provide support for various systems like
    Foomatic, APSFilter, GNUlpr or Printtool(RH).

17/01/2002 Michael Goffioul <tdeprint@swing.be>
  * LPR: first implementation of a job manager. Make use of asynchronous
    lpc and lpq processes. Major problem: delay between new state and
    screen update due to the fact that data are started to be updated when
    the info is needed for showing. As data are retrieved asynchronously,
    they are not available for the update.
  * general: clean up refresh code of the job viewer
  * KPrinter: added the DocFileName feature (suggested by David) to define
    the default basename for output file.
  * test: updated to Qt3 and demonstrate the use of the DocFileName feature

21/01/2002 Michael Goffioul <tdeprint@swing.be>
  * LPR: added basic implementation of a KPrinterImpl object -> plugin is
    functional (though far from complete...)

22/01/2002 Michael Goffioul <tdeprint@swing.be>
  * tdeprintfax: make use of new address book (libkabc) instead of the old
    one (libkab).

29/01/2002 Michael Goffioul <tdeprint@swing.be>
  * LPR: enhancement of the APSFilter handler. Still missing: setup the
    options in the print command line
  * wizard: removed the garbage '&' in last page
  * general: added SMB util functions -> to be used whenever it's
    possible (CUPS plugin, Foomatic handler => TO BE DONE)

30/01/2002 Michael Goffioul <tdeprint@swing.be>
  * general: use QGuardedPtr to keep KPrinterImpl object in KPrinter, this
    should avoid some crashes.
  * LPR:
  	. added print options for APSFilter handler
	. make use of smb-url conversion functions in Foomatic handler
	. fix problem with rmote lpd queues: force lp=<empty string> in
	  printcap entry

07/02/2002 Michael Goffioul <tdeprint@swing.be>
  * job viewer: fix crash when switching the print plugin elsewhere and
    there's some jobs shown + fix refresh problem when switching plugin
  * general: fix small bug when removing a filter in "Filters" page
  * general: discard the toolbar use in the "Instances" page to avoid the
    problem with non-docked vertical toolbars. Use plain QPushButton
    instead, but this has some drawing problems in HighColor style.

11/02/2002 Michael Goffioul <tdeprint@swing.be>
  * LPR: added support for LPRngTool+IFHP (not complete yet though)
  * general: various fixes for crashes, inconsistencies, ...

12/02/2002 Michael Goffioul <tdeprint@swing.be>
  * tdeprintfax: added %email to possible command tags. The e-mail address
    is retrieved from standard settings in KControl module. The tag can
    also be used in the "Name" field of the options dialog
  * LPR: completion of the LPRngTool handler + implementation of dynamic
    driver directories (to be done: should also be configurable in the
    options dialog)
  * general: Fixed bug -> XML commands couild not be saved
  * CUPS: FontPath directive is now considered as a string list, multiple
    directives are supported and a listview is used in the GUI
  * CUPS: configuration tool now handles gracefully unrecognized options,
    a warning is issued, and they are restored as-is on file saving.

13/02/2002 Michael Goffioul <tdeprint@swing.be>
  * CUPS: added support for job-billing and page-label, and put them
    along with the scredule option into a single "Advanced" tab.
  * CUPS: added job billing info to the job viewer
  * CUPS: added job priority selection in the Advanced tab of the print
    dialog
  * general: allow multi selection in the file list of print dialog

14/02/2002 Michael Goffioul <tdeprint@swing.be>
  * CUPS: added the possibility to edit job attributes on-the-fly using
    a dialog similar to the printer properties dialog. Still the be fixed:
    page ranges (problem with option encoding in CUPS).

15/02/2002 Michael Goffioul <tdeprint@swing.be>
  * general: fixed infinite recursion bug in TDEIconSelectAction
  * CUPS: temporarily disabled edition of page-ranges as it seems CUPS is
    buggy. I should find a workaround.
  * general (CUPS): enable some actions for jobs on remote hosts. It seems
    to work OK between my local LM-8.1 and a remote LM-7.2.

16/02/2002 Michael Goffioul <tdeprint@swing.be>
  * CUPS: added direct Foomatic driver support (no need the all PPD package
    from foomatic anymore, driver are loaded directly from Foomatic)

17/02/2002 Michael GOffioul <tdeprint@swing.be>
  * preview:
  	. better algorithm to find a preview object
	. more comprehensive error report
	. possibility to cancel printing even with external PS viewers
  * general: added the backend stuff for printer filtering, needs GUI
    -> allows to only show a selected set of printers

18/02/2002 Michael Goffioul <tdeprint@swing.be>
  * general: simple printer filtering mechanism based on printer name
    and location regexp. Graphical configuration for printer name.

19/02/2002 Michael Goffioul <tdeprint@swing.be>
  * general:
  	. completion of the printer filtering mechanism (added location
	  string filter)
	. notification system between applications when config file has
	  changed
	. possibility to open the main option dialog from print dialog
	  (for example to change the filter or default preview program)
	. added icon on push buttons when useful
	. changed plugin names to tdeprint_* (stripped the leading "lib")

20/02/2002 Michael Goffioul <tdeprint@swing.be>
  * slave: prevent konqueror to consider a trailing slash as a directory
    specification (simply add a config entry in protocol file)
  * general: large UI standardization by making use of KDialogBase along
    with KGuiItem
  * kicker menu: possibility to open main Options Dialog from the menu

21/02/2002 Michael Goffioul <tdeprint@swing.be>
  * general: splitted the printer state into enable/disable and start/stop
    and modified the GUI to reflect this
  * general: removed the KMManager::configure(), obsoleted by the complete
    options dialog being shown
  * kicker extension: extension of the menu plugin to allow access to the
    server configuration tool as well as the "kprinter" utility.

25/02/2002 Michael Goffioul <tdeprint@swing.be>
  * LPR: added printer testing support

26/02/2002 Michael Goffioul <tdeprint@swing.be>
  * general: printer filtering specs are now ORed instead of ANDed
  * general: changed "Advanced" to "Driver Settings"
  * CUPS: fixed RIPCache problem, added support for possible suffixes

27/02/2002 Michael Goffioul <tdeprint@swing.be>
  * CUPS: workaround to allow special characters in login/password without
    breaking security. Possible now to use safely chars like '@' and '/'
    in login.
  * general: added a check box in the config dialog to enable/disable
    font embedding into PS data (compatible with Qt settings).

28/02/2002 Michael Goffioul <tdeprint@swing.be>
  * general: job viewer updated correctly on plugin reload -> additional
    columns and "history" action state
  * general: internal *Settings objects are synchonized on config changes
    (CupsInfos and LprSettings)
  * general: improved feedback to user when creating driver DB
  * CUPS: speed optimization when creating driver DB (simple hack to avoid
    to parse the entire PPD file each time => much better)
  * tdeprintfax: added "-n" and "-f %email" by default for the Hylafax
    system
  * general: various small UI improvements (suggested by Thomas)

02/03/2002 Michael Goffioul <tdeprint@swing.be>
  * general: modified the driver structure to support dynamic options
    as in SuSE
  * LPR: more management support for SuSE handler -> drver settings can
    be modified now.
  * general: needed stuff to provide translations for filters (Coolo will
    now extract the strings from XML files for translators)

10/03/2002 Michael Goffioul <tdeprint@swing.be>
  * CUPS: allow any integer value for RIPCache + don't upload the cupsd.conf
    with wrong settings

*****************
* KDE-3 RELEASE *
*****************

(CeBIT) Michael Goffioul <tdeprint@swing.be>
  * Fix various crashes:
  	. when changing the CUPS server (notify registered object before
	  reloading)
	. when building the driver DB: don't destroy the progress dlg
  * job viewer: possibility to view only the jobs of the current user
  * CUPS: "dynamic" changing of the text margins in the preview using
    rubber bands
  * general: started generealization of a margin widget to configure the
    margins of the KPrinter object

25/03/2002 Michael Goffioul <tdeprint@swing.be>
  * general: do not use pointers in various views, to avoid dangling
    pointers (and crashes) when changing something (plugin, config file, ...).
    This makes the aboutToReload functions quite useless, but it has to
    be tested.
  * general: finished the generic print margins widget to be used in non
    full page mode. Requires a patched Qt (hope TrollTech will add the
    missing setMargins soon) -> cannot be committed.
  * general: added help button to the wizard and the print dialog. They
    are connected to the main help (should probably add an anchor to go
    directly to the associated part).
  * tdeprintfax: more support/sync with standard addressbook:
  	. possibility to start the ab editor from tdeprintfax
	. make use of the "Organization" field as enterprise
	. fix problem with empty phone number (ex: no business fax).

26/03/2002 Michael Goffioul <tdeprint@swing.be>
  * tdeprintfax:
  	. added support for Mgetty-sendfax
  	. added support for page size in filters
	. make use of the localized page size as default
	. regrouped the options in the option dialog for more
	  consistency
	. added support for scheduling in HylaFax and Mgetty-sendfax
	. bugfix in logview: behaves safely when closed using the title
	  bar button

27/03/2002 Michael Goffioul <tdeprint@swing.be>
  * general: created a separate "Fonts" section in the KDEPrint settings
    dialog and removed the "Embed Fonts" option from the general section
    (moved to the new section).
  * tdeprintfax: fixed disabled background for "Comment" widget, use QBrush
    instead of QColor. OK with styles like Liquid.

28/03/2002 Michael Goffioul <tdeprint@swing.be>
  * general: added a user feedback mechanism in the form of a dialog showgin
    status messages, including initialization, number of the page currently
    generated, filtering and sending to the printer.

29/03/2002 Michael Goffioul <tdeprint@swing.be>
  * general: enhanced the status feedback mechanism
  	. possibility to have multiple status boxes (one for each app)
	. added an icon (eye-candy) and the document name being printed
	. made it configurable in the options dialog
  * general: possibility to use the default printer on first print instead
    of the last printer used. Configurable in the options dialog. Now, I
    should probably re-add the "Set as default" button.
  * print dialog: re-added the "Set as default" button in the case the
    user default printer is used on first print instead of the last used
    printer (it does make sense again to have it)
  * general: added a small (but useful) information string about the
    current plugin below the plugin combobox (ex: in CUPS, shows the current
    server:port).

02/04/2002 Michael Goffioul <tdeprint@swing.be>
  * general:
  	. fixed various conflicting shortcuts
	. made KMVirtualManager inherit from KPReloadObject to force instance
	  reloading when something has changed
  * print dialog: added buttons to move files up and down
  * CUPS: added a generic job tagging mechanism in the form of an additional
    tab in the print dialog. It contain a 2-columns table where custom tags
    can be added. Read-only in job editing mode (hope to change that soon).

03/04/2002 Michael Goffioul <tdeprint@swing.be>
  * manager: show instances as children of the real printer in the tree view.
    No instance management is possible from the tree view itself. The user
    still has to use the "Instances" tab.
  * ioslave: added support for print jobs browsing, per printer or for all
    printers together (-> print:/jobs)

04/04/2002 Michael Goffioul <tdeprint@swing.be>
  * ioslave: added support to view the driver of a printer in HTML form
    (print:/printers/lp1?driver)
  * CUPS: allows editing of page-ranges for pending jobs, work around
    small problem in CUPS.
  * LPR:
  	. added a "ppdfile" field in printcap file for Foomatic drivers
	  with LPRng. This should make printers created with KDEPrint
	  work with gpr (from GNUlpr)
	. added support for "bool" directives in Foomatic drivers

23/05/2002 Michael Goffioul <tdeprint@swing.be>
  * job manager: added the possibility to control the username for jobs
    filtering, and the possibility to limit the number of jobs shown.

16/08/2002 Michael Goffioul <tdeprint@swing.be>
  * filters/command: added the possibility to have comments about a specific
    command, including clickable URL's. Modified the command selector to use
	those comments.
  * commands: added the "poster" command, but based on a modified version
    of the original program. Still need to publish it somehow.
  * job viewer: added possibility to drop files on the job viewer to print
    them.
  * print dialog: use the correct extension for output file in all cases,
    even on first dialog showing (call slotPrinterSelected after setting
	the output file name).

20/08/2002 Michael Goffioul <tdeprint@swing.be>
  * print dialog:
	  . added a method to disable a page in the main dialog
	  . make the filename persistent in the SaveFile dialog
	  . use a rename dialog if the output file already exists

26/08/2002 Michael Goffioul <tdeprint@swing.be>
  * general: added a generic PS driver to (missing for too long)

02/09/2002 Michael Goffioul <tdeprint@swing.be>
  * print dialog: added graphical interface to the poster XML command
    (still to be committed)
  * manager: added a condensed toolbar with actions grouped by topics in
    sub-menus.

03/09/2002 Michael Goffioul <tdeprint@swing.be>
  * print dialog: enabled preview even in standalone mode, either the
    internal PS viewer or any other registered app will be used, 
    according to the user preferences.

04/09/2002 Michael Goffioul <tdeprint@swing.be>
  * commands: make unavailability of a command more visual by showing a
    red text, and disabling the OK button of the current dialog (only
    if needed).

05/09/2002 Michael Goffioul <tdeprint@swing.be>
  * CUPS: shows all possible URI detected by CUPS when selecting the "Others"
    printer type in the wizard, like the web interface is doing.