-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
1333 lines (958 loc) · 46.8 KB
/
ChangeLog
File metadata and controls
1333 lines (958 loc) · 46.8 KB
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
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Version 3.0.17 (27th March 2008)
--------------
Replace thread-unsafe use of sigc::slot where relevant with thread
safe callback classes (efax_controller.cpp, fax_list.cpp,
mainwindow.cpp, socket_server.cpp, utils/thread.h,
utils/thread.cpp and utils/Makefile.am and add new file
utils/callback.h).
Compile fixes for gcc-4.3 (file_list.cpp and socket_list.cpp).
Fix '=' for '==' error (settings.cpp).
Remove unnecessary debugging code (main.cpp).
Update config.guess, config.sub, install-sh, missing and
mkinstalldirs to automake-1.9.
Correct comments in pipes.h (utils/pipes.h).
Update documentation in utils/gobj_handle.h,
utils/intrusive_handle.h and utils/notifier.h.
Version 3.0.16 (14th November 2007)
--------------
Provide an option for prepending a standard prefix on dialling
(prog_defs.h, main.cpp, mainwindow.cpp, settings.h, settings.cpp,
settings_help.h and settings_help.cpp).
Implement start_iowatch() without a sigc::signal object (that is,
using only a sigc::slot object for the callback)
(utils/io_watch.cpp).
Corrections to syntax of efax-gtk.1 (man file) and
efax-gtk.desktop. (Lior Kaplan).
Add reference to -e option in efax man file.
Add more robust checking of whether an existing instance of
efax-gtk is running when another instance is started (main.cpp).
Correct conditional compilation for use of GTK+ printing system to
check for version 2.10 (mainwindow.cpp).
Update comments on threading in prog_defs.h.
Update Catalan translation (Jordi Sayol).
Update README file.
Version 3.0.15 (15th July 2007)
--------------
Add provision for printing and viewing the logfile (src/logger.h,
src/logger.cpp, src/mainwindow.h, src/mainwindow.cpp,
src/Makefile.and src/Makefile.in).
Make the expose event handler for the drawing area of the "Fax
from socket" notifier more efficient (mainwindow.h and
mainwindow.cpp).
Move PrintManager class to utils sub-directory as FilePrintManager
class and provide new TextPrintManager class
(utils/file_print_manager.h,utils/file_print_manager.cpp,
utils/text_print_manager.h and utils/text_print_manager.cpp,
utils/pango_layout_iter_handle.h; print_manager.h and
print_manager.cpp removed).
Correctly show help dialog for GTK+ print system checkbox in
settings dialog (settings.cpp).
Explicitly forbid copying of IntrusiveCounter and
IntrusiveLockCounter class objects (utils/intrusive_ptr.h).
Do not initialise the pthread_cond_t object in a Thread::Cond
object if the call to pthread_condattr_setclock() fails (this
avoids a possible resource leak) (utils/mutex.h).
Improve GError handling where relevant (main.cpp, mainwindow.cpp,
utils/utf8utils.cpp and utils/gerror_handle.h).
Change use of g_list_append() to g_list_prepend()
(mainwindow.cpp).
Greek translation updated.
Version 3.0.14 (16th March 2007)
--------------
Cater for postscript viewers such as evince which, if an instance
of the program is already running, will return before the file to
be viewed is displayed (fax_list.h and fax_list.cpp).
Version 3.0.13 (10th March 2007)
--------------
Use GtkToolItem interface where compiled against GTK+ >= 2.4
(fax_list.cpp, file_list.cpp, socket_list.cpp,
utils/toolbar_append_widget.h utils/toolbar_append_widget.cpp).
Use Glib atomic functions for locked reference counting where
compiled against glib >= 2.4 (utils/intrusive_ptr.h,
utils/shared_handle.h and utils/shared_ptr.h).
Improve robustness of referencing of PrintManager class
(print_manager.cpp).
Don't allow GtkEntry objects to select contents automatically when
acquiring focus (mainwindow.cpp) and update copyright notice
(main.cpp, mainwindow.cpp and efax-gtk.1).
Take some miscellaneous thread functions/objects out of global
namespace (utils/thread.h and utils/thread.cpp).
Refer to evince rather than ggv as the Gnome ps file viewer
(efax-gtkrc and settings_help.cpp).
Modify interface of AsyncQueue class (utils/async_queue.h).
In the README file, refer to using rpmbuild and not rpm to build
rpm packages.
Version 3.0.12 (8th November 2006)
--------------
Update Catalan translation (Jordi Sayol) and Hebrew translation
(Assaf Gillat).
Correct failure to clear the list of permitted client addresses
for the socket interface after changing settings from the settings
dialog (main.cpp).
Hostname addresses permitted to connect to the socket server may
now be specified in numeric dot notation. Numeric dot notation
may also contain a trailing * as a wildcard. (efax-gtkrc,
prog_defs.h, settings_help.cpp, socket_server.h and
socket_server.cpp).
Make memory management of the PrintManager class easier/safer for
the user (fax_list.h, fax_list.cpp, main.cpp, mainwindow.cpp,
print_manager.h, print_manager.cpp, utils/intrusive_ptr.h,
src/Makefile.am and src/Makefile.in).
Revise method for passing of arguments to threads
(fax_list.h, fax_list.cpp, sigc_compatibility.h and
utils/async_queue.h).
Correct second paragraph of documentation comments in
utils/notifier.h and add further paragraph about the use of the
Notifier::connect() method (utils/notifier.h).
Correct threading explanation for the program (prog_defs.h).
Correct format of efax-gtk man page (efax-gtk.1).
Upgrade configuration files to automake-1.9.6 and gettext-0.15
(Makefile.in, aclocal.m4, config.rpath,
efax-gtk-faxfilter/Makefile.in, po/Makefile.in.in,
src/Makefile.in, src/utils/Makefile.in).
Provide full quoting of aclocal macros (acinclude.m4, aclocal.m4).
Revise the 'mail_fax' script to refer to Heirloom mailx rather
than nail.
Update the copyright dates in the efax-gtk man file (efax-gtk.1).
Version 3.0.11 (19th August 2006)
--------------
Correct file descriptor leak when viewing a fax (fax_list.h and
fax_list.cpp).
Implement printing of faxes in fax lists via the GTK+ print system
where compiled against GTK+2.10 or higher (acinclude.m4,
aclocal.m4, configure.ac, configure, efax-gtkrc, po/POTFILES.in,
src/Makefile.am, src/Makefile.in, dialogs.h, fax_list.h,
fax_list.cpp, main.cpp, print_manager.h, print_manager.cpp,
prog_defs.h, settings.h, settings.cpp, settings_help.h,
settings_help.cpp, utils/window.cpp).
Improve handling of user locales with streams (acinclude.m2,
configure.ac, efax_controller.cpp, fax_list.cpp, main.cpp,
mainwindow.cpp, settings.cpp and socket_server.cpp).
Use AC_COMPILE_IFELSE/AC_LANG_PROGRAM autoconf macros instead of
the AC_TRY_COMPILE macro when configuring the program
(acinclude.m4 and aclocal.m4).
Correct derivation of fdistream class for wide characters (not
relevant to efax-gtk) (utils/fdstream.h).
Mention the need to call g_thread_init() before Notifier::init()
in the Notifier documentation (utils/notifier.h).
Correct help information concerning sending faxes via socket and
pop-up dialog (settings_help.cpp).
Explicitly include <ios> header where relevant (addressbook.cpp,
efax_controller.cpp, fax_list.cpp, fax_list_manager.cpp, main.cpp,
mainwindow.cpp, socket_list>cpp, socket_notify.cpp,
socket_server.cpp and tray_icon.cpp).
Version 3.0.10 (10th June 2006)
--------------
Update Albanian translation (Besnik Bleta) and Catalan translation
(Jordi Sayol).
Add Traditional Chinese translation (including efax-gtk.desktop)
(Wei-Lun Chao).
Make the sort direction of the fax lists selectable
(fax_list_manager.h, fax_list_manager.cpp and mainwindow.cpp).
Improve time reporting to main window and to logfile
(mainwindow.h, mainwindow.cpp and efax/efaxmsg.c).
Have GobjHandle<> sink objects with floating references, and with
GTK+-2.9 and above use g_object_ref_sink() instead of
g_object_ref()/gtk_object_sink() (utils/gobj_handle.h,
utils/widget.h, utils/widget.cpp, dialogs.cpp and mainwindow.cpp).
Have consistent keys shortcuts for the closing of dialogs
(addressbook.cpp, dialogs.h, dialogs.cpp, fax_list.cpp and
helpfile.cpp).
Use in_addr_t type explicitly where relevant (socket_server.cpp,
prog_defs.h, configure.ac, acinclude.m4 and aclocal.m4).
Move initialisation of std::string prog_fifo_name (previously
std::string fifo_name) from MainWindow::pipe_thread() to
MainWindow::start_pipe_thread() to prevent read access of
ProgConfig::working_dir by more than one thread (mainwindow.h and
mainwindow.cpp).
Explicitly define _XOPEN_SOURCE where relevant (src/Makefile.am,
src/Makefile.in, src/utils/Makefile.am and src/utils/Makefile.in).
Break up the string literal making up the GPL copyright notice
into smaller chunks to accommodate compilers which will not accept
large string literals (gpl.h and dialogs.cpp).
Use the GTK_CHECK_VERSION macro where relevant (dialogs.cpp,
fax_list_manager.cpp, main.cpp and mainwindow.cpp).
Amend copyright notice (COPYING and gpl.h).
Update copyright notice when the program is started with the
--version option (main.cpp).
Documentation improvements, including explaining in README how to
use CUPS lpadmin to set up a virtual printer for efax-gtk as an
alternative to using the CUPS web interface and updating the man
file (settings_help.cpp, README and efax-gtk.1).
Version 3.0.9 (11th March 2006)
-------------
Swedish translation added (Daniel Nylander).
Catalan translation added (Jordi Sayol Salomo).
Use gtk_widget_queue_draw() to update the drawing area which
indicates whether a fax is in the "faxes to send" queue via an
expose event rather than doing it directly (mainwindow.cpp).
Cater for serial port devices in sub-directories of /dev
(main.cpp).
Have Notifier objects detect whether the signalling thread is the
same one as the thread in which the slot will execute and if so
by-pass the Notifier pipe, and implement Notifier objects without
using a map and object IDs. (main.cpp, socket_server.cpp,
utils/notifier.h and utils/notifier.cpp).
Correctly handle case of constructor of SharedPtr and SharedHandle
objects throwing (utils/shared_ptr.h and utils/shared_handle.h)
Allow the program to compile without X (configure.ac,
acinclude.m4, aclocal.m4, main.cpp, tray_icon.h, tray_icon.cpp and
libegg/eggtrayicon.c).
Document the use of G_IO_HUP with iowatches (utils/io_watch.h).
Correct comments about the use of PipeFifo::connect_to_stdout()
and PipeFifo::connect_to_stderr() (utils/pipes.h).
Improve text for translation about modem classes (efax.c).
Include <ostream> and <istream> headers file where relevant
(configure.ac, include.m4, aclocal.m4, addressbook.cpp,
efax_controller.cpp, fax_list.cpp, fax_list_manager.cpp, main.cpp,
mainwindow.cpp, socket_list.cpp, socket_notify.cpp,
socket_server.cpp and tray_icon.cpp).
Revise locking of prog_config objects (dialogs.cpp,
efax_controller.cpp and fax_list.cpp).
Version 3.0.8 (14th January 2006)
-------------
Update Greek translation (Hellenic Linux Users Group).
Add German translation (po/de.po and mainwindow.cpp) (Steffen
Wagner).
Destroy thread attribute object correctly (utils/thread.h and
utils/thread.cpp).
Use GtkSpinButton objects in the settings dialog where relevant
(settings.h, settings.cpp and settings_help.cpp).
Improve documentation/commenting of write_error() function
(mainwindow.cpp).
Update gettext tools to latest version (gettext-0.14.5)
(po/Makevars and po/Rules-quot).
Move typedef of InstanceMap into the Notifier class
(utils/notifier.h and utils/notifier.cpp).
Provide specific CFLAGS and CXXFLAGS specification in rpm spec
file (efax-gtk.spec.in and efax-gtk.spec).
Version 3.0.7 (23rd November 2005)
-------------
NOTE: Fax descriptions in the fax lists are now stored in UTF-8
rather than the locale codeset. This means that any fax
descriptions previously stored in a codeset other than ASCII or
UTF-8 by efax-gtk will not be shown in version 3.0.7. Sorry about
that, but the former method of storing them in the locale codeset
was bound to lead to trouble, because in due course Unix-like
systems will adopt UTF-8 as their standard codeset and on changing
codesets, previously entered file description were bound to be
broken anyway. This gets it over with. To show these fax
descriptions again, the contents of all the files with the name
Description in the $HOME/[WORK_SUBDIR]/faxin/[faxnumber] and
$HOME/[WORK_SUBDIR]/faxsent/[faxnumber] directories will need to
be changed from the locale codeset to UTF-8. gedit can do this
manually, although it will be a bit tedious.
Corrections to man pages (Lior Kaplan) (efax-gtk.1, efax.1 and
efix.1).
Enable file names to be used in locale codesets other than ASCII
or UTF-8 (efax_controller.cpp, fax_list_manager.cpp,
mainwindow.cpp, efax/efax.c, efax/efaxio.c and efax/efaxlib.c).
Make keyboard navigation of FileReadSelectDialog class work
correctly where implemented with a GtkFileDhooserDialog object
(dialogs.cpp).
Update the README file to explain the setting of the
G_FILENAME_ENCODING environmental variable for file systems using
other than the ASCII or UTF-8 codesets (README).
Add some stray missing std namespace scope qualifiers so that the
program compiles without a using-directive for std namespace
(file_list.cpp, main.cpp, socket_list.h, socket_list.cpp and
socket_server.cpp).
Make the methods of the Thread::CancelBlock class explicitly
static (utils/thread.h).
Update Russian translation (Pavel Vainerman) (po/ru.po and
mainwindow.cpp).
Version 3.0.6 (16th October 2005)
-------------
Add simplified Chinese translation (Kite Lau).
Provide internationalisation support for the efax program to which
efax-gtk is a front end (configure.ac, efax_controller.h,
efax_controller.cpp, main.cpp, mainwindow.h, mainwindow.cpp,
efax/Makefile.am, efax/efax.c, efax/efaxio.c, efax/efaxlib.h,
efax/efaxlib.c, efax/efaxmsg.h, efax/efaxmsg.c, utils/utf8_utils.h
and utils/utf8_utils.cpp; man file efax/efax.1).
Make the fax top header line of a sent fax charset independent,
and remove some incorrect codeset conversions
(efax_controller.cpp, main.cpp, settings.h, settings.cpp and
settings_help.cpp).
Deal with two minor timing/race issues (efax_controller.h and
efax_controller.cpp).
Make Notifier::make_id() a static method, since it only uses local
or static objects (notifier.h).
Instead of omitting the call to setlocale() in efax/efix.c, after
setting the locales to match their environment, reset LC_NUMERIC
to the "C" locale (efax/efix.c).
Update Hungarian translation (Gergely Szakats).
Version 3.0.5 (11th September 2005)
-------------
Provide a further explicit cast to void* in sentinel for elipsis
arguments, for 64-bit systems (mainwindow.cpp).
Provide for the automatic updating of the fax lists when a fax is
received or sent (efax_controller.h, efax_controller.cpp,
fax_list.h, fax_list.cpp, fax_list_manager.h,
fax_list_manager.cpp, helpfile.cpp, mainwindow.h and
mainwindow.cpp).
Provide for the received fax list to show the number of new faxes
received since the program was last started (efax_controller.h,
efax_controller.cpp, fax_list.h, fax_list.cpp, helpfile.cpp,
mainwindow.cpp, tray_icon.h and tray_icon.cpp)
Make minor changes to handling of colours of certain labels
(mainwindow.h and mainwindow.cpp).
Make the program close properly if the "Quit" item is chosen from
the system tray menu and a blocking modal dialog is showing
(utils/window.cpp).
Remove unnecessary use of GtkAlignment objects to adjust labels
(GtkLabel derives from GtkMisc) (addressbook.cpp and
settings.cpp).
Make Notifier::read_pipe_slot() a static method (utils/notifier.h,
utils/notifier.cpp and sigc_compatibility.h).
Call the slot connected to an iowatch via a sigc::signal object
rather than directly, so sigc::trackable is effective
(utils/iowatch.h and utils/iowatch.cpp).
Change text when prompting to delete or print faxes now that fax
id numbers are not shown in fax lists (fax_list.cpp).
Remove exception specifications in shared pointer/handle classes
(utils/gobj_handle.h, utils/shared_handle.h and
utils/shared_ptr.h).
Include a guard when creating a FaxListDialog object so we cannot
call it up twice through the call to gtk_main_iteration() in
FaxListManager::populate_fax_list() (fax_list_manager.h,
fax_list_manager.cpp and mainwindow.cpp).
Provide an exception to the LGPL in its application to files
containing templates to allow instantiation of templates by
program source code without imposing restrictions on the use of
the resulting object code (utils/fdstream.h, utils/fdstream.tcc,
utils/gobj_handle.h, utils/shared_handle.h and
utils/shared_ptr.h).
Change the "Copyright" field to a "License" field in RPM spec file
(efax-gtk.spec.in and efax-gtk.spec).
Update Russian translation (Pavel Vainerman).
Version 3.0.4 (13th August 2005)
-------------
Add a date column to the fax lists, which derives the time of the
fax from the fax ID (the directory in which faxes are stored)
(Pavel Vainerman and Chris Vine). (fax_list_manager.h,
fax_list_manager.cpp and helpfile.cpp; and README)
Provide for the fax ID (the directory in which faxes are stored)
for received faxes to be derived from the time that the fax is
received rather than the time that efax-gtk is put into receive
mode. This enables the fax lists to display the correct time of a
received fax. (Chris Vine) (efax_controller.h,
efax_controller.cpp, fax_list_manager.h, fax_list_manager.cpp,
main.cpp, mainwindow.h, mainwindow.cpp and prog_defs.h)
Now that stored fax directories (fax name IDs) are not displayed
in the fax lists, provide the part of the ID representing a year
in 4 (or more) digit rather than 2 digit format (someone in 2099
might be pleased!). (Chris Vine) (efax_controller.cpp,
fax_list_manager.cpp and main.cpp)
Put a UTF-8 validation function in namespace Utf8 (Chris Vine)
(fax_list_manager.h, utils/utf8_utils.h and utils/utf8_utils.cpp).
Move gobj_handle.h, icon_info_handle.h, io_watch.h, io_watch.cpp,
mutex.h, notifier.h, notifier.cpp, pipes.h, pipes.cpp,
selected_rows_handle.h, selected_rows_handle.cpp, sem_sync.h,
shared_handle.h, shared_ptr.h, thread.h, thread.cpp,
tree_path_handle.h, tree_row_reference_handle.h, utf8_utils.h,
utf8_utils.cpp, widget.h, widget.cpp, window.h and window.cpp to
src/utils sub-directory and change licence from GPL to LGPL. Move
fdstream.h and fdstream.tcc from src/fdstream sub-directory to
src/utils sub-directory.
Where relevant, handle PipeFifo and Notifier errors by exceptions
- consequential on putting the source for these in the utils
sub-directory (Chris Vine) (fax_list.cpp, main.cpp, prog_defs.h,
utils/notifier.h, utils/notifier.cpp, utils/pipes.h and
utils/pipes.cpp).
Change clean-up arrangements on start-up (Chris Vine)
(efax_controller.h, efax_controller.cpp and main.cpp).
Correct false calls to _exit() in FaxListDialog::view_fax_thread()
(Chris Vine) (fax_list.cpp).
Make the PipeFifo and SemSync classes explicitly non-copiable
(Chris Vine) (utils/pipes.h and utils/sem_sync.h).
Provide further explicit casts to void* in sentinels for elipsis
arguments for 64-bit systems (Chris Vine) (addressbook.cpp,
fax_list_manager.cpp, file_list.cpp, mainwindow.cpp and
socket_list.cpp).
Update Hebrew translation (Assaf Gillat).
Version 3.0.3 (16th July 2005)
-------------
Provide a settings option to omit the destination fax number from
the fax page top header line (efax_controller.cpp, main.cpp,
prog_defs.h, settings.h, settings.cpp, settings_help.h and
settings_help.cpp).
Use a mutex to ensure that writes to the Notifier pipe are atomic
between threads (IEEE Std 1003.1, 2001 Edition guarantees that
writes by different processes to a pipe of less than PIPE_BUF in
size are atomic, but not in relation to writes by threads within
any one process). (notifier.h and notifier.cpp).
Some fixes for 64 bit systems:
Update gettext configuration (including removing relevant macros
from acinclude.m4) (acinclude.m4, aclocal.m4, configure and
po/Makefile.in.in).
Provide an explicit cast to void* in a sentinel for elipsis
arguments (mainwindow.cpp).
Fixes for (harmless) warnings issued by gcc-4.0, about pointer
targets differing in signedness (efax.c, efaxio.c and efaxlib.c).
Version 3.0.2 (5th June 2005)
-------------
Close the socket server by using pthread_cancel() with a suitable
choice of cancellation point, to guarantee that the socket is
closed correctly under all conditions; this also requires that
pthreads be used explicitly (efax_controller.cpp, fax_list.cpp,
main.cpp, mainwindow.cpp, mutex.h, socket_server.h,
socket_server.cpp, thread.h and thread.cpp; acinclude.m4,
aclocal.m4 and configure.ac).
Provide for efax-gtk to kill any fax viewing sessions which are
open when efax-gtk is closed (main.cpp).
Simplify and improve the implementation of the fax lists
(fax_list_manager.h, fax_list_manager.cpp, selected_rows_handle.h,
selected_rows_handle.cpp and tree_row_reference.h).
Add an option to the mail_fax script to enable the received fax to
be e-mailed in PDF (Portable Document Format) as well as PS
(PostScript) formats. (mail_fax).
Use a custom iowatch object instead of a GIOChannel object when
all we want to do is poll a file descriptor in the main program
event loop. (efax_controller.h, efax_controller.cpp, mainwindow.h,
mainwindow.cpp, notifier.h and notifier.cpp and add new files
io_watch.h and io_watch.cpp).
Close timer in MessageText destructor (mainwindow.h and
mainwindow.cpp).
Version 3.0.1 (12th May 2005)
-------------
Add Hungarian translation (Gergely Szakats) (po/LINGUAS, po/hu.po
and mainwindow.cpp).
Update the Bulgarian Translation (Zdravko Nikolov).
Make removal of an address in the addressbook work correctly
(addressbook.h and addressbook.cpp).
Make the program clean up correctly if terminated by the X session
manager (prog_defs.h, main.cpp, efax_controller.h and
efax_controller.cpp).
Notify the program when running that the user has started it again
by means of a fifo, rather than a Unix signal (prog_defs.h,
main.cpp, mainwindow.h and mainwindow.cpp).
Make AddressDialog text length friendly (addressbook.cpp).
Correct the button reliefs in the fax lists when the fax list is
first brought up (efax_controller.cpp).
Correct dependencies in efax-gtk.spec file (efax-gtk.spec and
efax-gtk.spec.in).
Version 3.0.0 (7th May 2005)
-------------
Remove dependency on gtkmm (now only GTK+ and libsigc++ are
required).
All files in src/ have been revised, with the following new files
added:
gobj_handle.h
icon_info_handle.h
mutex.h
notifier.h/notifier.cpp
thread.h/thread.cpp
tree_path_handle.h
tree_row_reference_handle.h
utf8_utils.h/utf8_utils.cpp
widget.h/widget.cpp
window.h/window.cpp
The following files were removed:
gtk_icon_info_handle.h
tree_model_row_reference.h
(NOTE: the GTKMM branch in CVS still uses gtkmm: go to that branch
for any revisions of the version using gtkmm.)
Version 2.2.16 (7th May 2005)
--------------
Albanian translation added (Besnik Bleta).
Update Russian translation (Pavel Vainerman).
Update Polish translation (Pawel Suwinski).
Bring up a prompt when deleting a file in the file list
(file_list.cpp).
Use Scoped_handle<> where relevant (mainwindow.cpp and
socket_server.cpp).
Increase icon size in panel notification area (tray_icon.cpp).
Correct order of initialisation of static objects for writing to
the error pipe (to cater for the unlikely event that the static
pipe tries to write to itself on error on setting itself up)
(mainwindow.cpp).
Some code tidying up (socket_list.h and socket_list.cpp).
Make corrections to basic_inbuf::underflow() and
basic_inbuf::xsgetn() methods (doesn't affect efax-gtk but does
affect any use of the basic_fdistream class - efax-gtk doesn't use
it). (fdstream.tcc).
Version 2.2.15 (26th February 2005)
--------------
Fix bug where the Trash folder is dragged in the fax lists
(fax_list_manager.cpp).
Greek translation added (the Hellenic Linux Users Group
translation team).
Italian translation updated (Luca De Rugeriis).
Adjust image sizes for toolbar buttons in GTK+2.4 or higher
(fax_list.cpp, file_list.cpp and socket_list.cpp).
Provision to ensure synchronisation of memory where necessary in
multi-processor systems (efax_controller.h and
efax_controller.cpp).
Version 2.2.14 (18th December 2004)
--------------
Fix bug #1079142 (segmentation fault if a fax for sending is
received from the print system and the program has been started in
the system tray and never raised) (mainwindow.cpp).
Check whether the program is already running when it starts up,
and if it is bring up the existing program instance on the current
workspace (acinclude.m4, aclocal.m4, configure.ac,
efax_controller.cpp, fax_list.cpp, file_list.cpp, main.cpp,
mainwindow.cpp, socket_server.cpp, fdstream/fdstream.h and
fdstream/fdstream.tcc).
Prettify the setting dialog with Gtk::Alignment, and use
Gtk::Alignment instead of filler widgets (mainwindow.h,
mainwindow.cpp, settings.h and settings.cpp).
Some minor code clean-ups (efax_controller.cpp, fax_list.cpp,
fax_list_manager.cpp, pipes.h, pipes.cpp and socket_server.cpp).
Update Bulgarian translation (Zdravko Nikolov).
Version 2.2.13 (20th November 2004)
--------------
Provide a trash folder from which faxes can be moved and then
physically deleted from the file system (efax-gtk.1, fax_list.h,
fax_list.cpp, fax_list_manager.h, fax_list_manager_icons.h,
fax_list_manager.cpp, helpfile.cpp, mainwindow.cpp and README).
(Once deleted from the trash folder faxes are now removed from the
file system rather then being moved to an 'oldfax' sub-directory.)
Allow multiple faxes to be selected in fax lists (fax_list.cpp,
fax_list_manager.h, fax_list_manager.cpp, selected_rows_handle.h
and selected_rows_handle.cpp).
Make dialog captions consistent (addressbook.cpp, dialogs.cpp,
fax_list.h, fax_list.cpp, mainwindow.cpp and socket_list.cpp).
Make Sem_sync::~Sem_sync() take account of the fact that under
IEEE Std 1003.1 the count value given by sem_getvalue() can be
less than 0 (a negative number can be used to indicate the number
of threads waiting on the semaphore) (sem_sync.h).
Use GTK+ stock icons where available (addressbook.cpp,
addressbook_icons.h, fax_list.cpp, fax_list_icons.h, file_list.cpp
file_list_icons.h and mainwindow.cpp).
Update Russian translation (Pavel Vainerman).
Update Hebrew translation (Assaf Gillat).
Version 2.2.12 (24th October 2004)
--------------
Make the bottom status bar size itself according to the font size
choice in Gnome (mainwindow.h and mainwindow.cpp).
Make EfaxController::status an enumerated type (efax_controller.h,
efax_controller.cpp, mainwindow.h and mainwindow.cpp).
Handle signals properly in Sem_sync::wait() (sem_sync.h).
Add error checking in FaxListManager::get_folders()
(fax_list_manager.cpp).
Improve error checking on writing to Pipe_fifo objects
(mainwindow.cpp, pipes.h, pipes.cpp and prog_defs.h).
Zero serve_address in Socket_server::socket_thread() before using
it (socket_server.cpp), and also address in
efax-gtk-socket-client.cpp (in efax-gtk-faxfilter directory)).
Some other clean-ups (efax_controller.cpp, main.cpp, settings.cpp
and shared_ptr.h; efax-gtk-socket-client.cpp (in
efax-gtk-faxfilter directory)).
Add commentary about modem class modes in README file.
Update Hebrew translation (Assaf Gillat).
Version 2.2.11 (25th September 2004)
--------------
The program can now send a fax when in receive standby mode. When
the fax has been sent (or there is an error in sending the fax),
the program will return to receive standby mode.
(efax_controller.h, efax_controller.cpp, mainwindow.h and
mainwindow.cpp).
Allow spaces in file names for faxes to be sent (acceptable file
name separators are now ',' and ';') (mainwindow.cpp and
file_list.cpp).
Add Assaf Gillat to the list of translators in the
translators' pop-up dialog (mainwindow.cpp).
Put all the child exit handling of efax sessions in
EfaxController::timer_event() (mainwindow.h, mainwindow.cpp,
main.cpp, efax_controller.h and efax_controller.cpp).
Make modal the dialog warning that no fax number has been
specified when sending a fax (mainwindow.cpp).
Put the list of translators in MainWindow::translations_slot() in
a gettext() block (mainwindow.cpp).
Update Russian transation (Pavel Vainerman).
Put current URL in rpm spec file (efax-gtk.spec.in and
efax-gtk.spec).
Version 2.2.10 (5th September 2004)
--------------
Provide a -r option which starts the program in receive standby
mode, and a -s option which starts the program hidden in the
system tray (main.cpp, mainwindow.h and mainwindow.cpp).
In the fax lists, the folder name and folder icon are placed in a
single column (fax_list_manager.h and fax_list_manager.cpp).
Hebrew translation (Assaf Gillat).
The following patches from http://shino.pos.to/linux/efax/
have been applied to efax:
efax08a-time.patch (efaxio.c)
efax-0.9-nullptr.patch (efax.c and efaxos.c)
efax-0.9-numlines.patch (efix.c)
efax-0.9a-frlen.patch (efax.c)
And the following patch from Fedora 2:
efax-0.9-misc.patch (efax.c)
Encapsulate valid fax list folder name checking code in new
FolderNameValidator class (fax_list_manager.h,
fax_list_manager.cpp and fax_list.cpp).
Version 2.2.9a (9th August 2004)
--------------
Fix incorrect incrementing of STL std:pair<std::string,
std::string> iterator after erasing object in std::multimap
container (fax_list_manager.cpp).
Improve detection of UTF-8 encoding errors (fax_list_manager.cpp).
Updated Polish translation (Pawel Suwinski).
Version 2.2.9 (25th July 2004)
-------------
Faxes can be organised in the sent and received fax lists into
folders, and dragged and dropped between folders. (fax_list.h,
fax_list.cpp, fax_list_manager.h, fax_list_manager.cpp and
tree_model_row_reference.h)
A working sub-directory for the storage of .efax-gtk_addressbook,
.efax-gtk_mainwin_save and .efax-gtk_queued_server_files and the
faxin, faxout, faxsent and efax-gtk-server directories can be
specified in efax-gtkrc with the WORK_SUBDIR: parameter.
(addressbook.cpp, dialogs.cpp, efax_controller.cpp, fax_list.cpp,
fax_list_manager.cpp, main.cpp, mainwindow.cpp, prog_defs.h,
socket_server.cpp and socket_server.cpp). (Pavel Vainerman,
revised by Chris Vine).
Fix the attempt to call write_error() before the MainWindow object
has been created. (main.cpp).
Version 2.2.8a (4th July 2004)
--------------
Revised Bulgarian translation (Zdravko Nikolov).
Tests for whether phread.h should be included (testing for whether
HAVE_PTHREAD_SIGPROCMASK is defined) have been corrected
(efax_controller.cpp, fax_list.cpp and socket_server.cpp).
(Jean-Baptiste Quenot).
Fix for overwriting static data on call to gethostbyaddr()
(socket_server.cpp). (Jean-Baptiste Quenot).
Fix so that fstream::close() and fstream::clear() are called in
the correct order. (efax_controller.cpp, fax_list.cpp and
mainwindow.cpp).
Some other minor code clean-ups and bug fixes (tray_icon.cpp,
shared_ptr.h and shared_handle.h).
Version 2.2.8 (18th June 2004)
-------------
The program will reside in a panel notification area (system
tray). (mainwindow.h, mainwindow.cpp, tray_icon.h and
tray_icon.cpp).
The program pull-down menus use icons in the menu entries for
which GTK+ stock icons are available. (mainwindow.cpp and
tray_icon.cpp).
GtkIconInfo memory leak fixed in main.cpp (main.cpp and
gtk_icon_info_handle.h).
Russian translation (Pavel Vainerman)
Documentation updates (prog_defs.h, README and efax-gtk.1).
Version 2.2.7a (6th June 2004)
--------------
When using gtkmm-2.4:
Gtk::FileChooserDialog is used instead of Gtk::FileSelection as
the file selector dialog (dialogs.h, dialogs.cpp and
mainwindow.cpp).
Gtk::IconTheme is used to pick the icon for the program
(otherwise the default built-in icon is used) (prog_defs.h and
main.cpp).
The mutex locking of prog_config is cleaned up.
In dialogs, exec() methods are substituted for run() methods (this
is because in gtkmm-2.*, Gtk::Dialog has its own non-virtual run()
method and some dialogs used in the program are derived from
Gtk::Dialog. Having a separate exec() method avoids the wrong
method being called by mistake from a Gtk::Dialog
pointer/reference (and attempts to call exec() from a Gtk::Dialog
pointer/reference will fail to compile).
Lists of files received by the socket server for faxing are passed
by shared pointer (mainwindow.h, mainwindow.cpp, socket_list.h,
socket_list.cpp socket_server.h, socket_server.cpp).
Further clean ups of use of Glib::ustring and std::string
(dialogs.cpp).
Some changes to the build system so that AC_CHECK_FILES is used
instead of AC_CHECK_FILE, and the install will not fail if there
is no user 'lp' on the system (acinclude.m4, configure.ac,
prog_defs.h and efax-gtk-socket-client.cpp).
Version 2.2.7 (6th May 2004)
-------------
The socket server now runs in its own thread, compliant with the
requirement in IEEE Std 1003.1 that any system calls after fork()ing
and before exec()ing in a multi-threaded program should be
async-signal-safe.
Version 2.2.6b (6th June 2004)
--------------
Carry out Filename to UTF-8 conversion in
MainWindow:get_file_slot() (mainwindow.cpp).
Further clean ups of use of Glib::ustring and std::string
(dialogs.cpp).
Some changes to the build system so that AC_CHECK_FILES is used
instead of AC_CHECK_FILE, and the install will not fail if there
is no user 'lp' on the system (acinclude.m4, configure.ac and
prog_defs.h).
Socket_server::is_files() method added (socket_server.h,
socket_server.cpp and mainwindow.cpp)
Version 2.2.6a (6th May 2004)
--------------
Bulgarian translation (Zdravko Nikolov).
Italian translation updated (Luca De Rugeriis).
Some bug fixes (main.cpp, file_list.cpp socket_list.cpp).
Version 2.2.6 (12th April 2004)
-------------
The program will now compile and work with gtkmm-2.4, as well as
gtkmm-2.2 and gtkmm-2.0.
The settings dialog contains two new options. First, the user can
elect to execute a program or have a pop-up dialog appear whenever a
fax is received. If a program is executed, it will be passed the
number of the fax received as appearing in the faxes received list as
an argument. Two executable scripts, mail_fax and print_fax, are
provided for the purpose. (efax_controller.cpp, main.cpp,
mainwindow.cpp and settings.cpp).
Second, the user can elect not to bring up the confirmatory pop-up
dialog after pressing the "Print selected fax" button in the Received
Faxes list or Sent Faxes list. (fax_list.cpp, main.cpp,
mainwindow.cpp and settings.cpp).
The efax-gtk.desktop file is now installed in $datadir/applications
instead of $datadir/gnome/apps/Applications, and it uses the icon
supplied with GNOME-2.6 comprising stock_send-fax.png.
The use of Glib::ustring and std::string is rationalised and cleaned
up (dialogs.cpp, fax_list.cpp and socket_list.cpp).
Version 2.2.5a (6th March 2004)
--------------
Polish translation (Pawel Suwinski).
A fax can now be sent on an open telephone connection if no telephone
number is entered into the "Tel Number" box (this does the same thing
as 'fax send -m ...' using the efax 'fax' script from the command
line).
'efax-gtk [filename]' now works correctly again.
For users of lpd/lprng, efax-gtk-socket-client now logs error messages
via syslog().
Version 2.2.5 (5th February 2004)
-------------
The dialog which notifies whether a fax has been received for sending
from the socket can be used to send the fax. The documentation
(README and helpfile.cpp) has been updated to reflect this.