-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
2094 lines (1535 loc) · 70.1 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
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
2011-08-04 Sanel <[email protected]>
* m4/fltk.m4: removed warning if 1.3.x branch was detected
2011-08-02 Sanel <[email protected]>
* src/WindowXid.cpp: support for FLTK 1.3.0; new ChangeLog entry after
almost a year!
2010-09-09 Sanel <[email protected]>
* tools/edelib-catchsegv: added tool for dumping memory map of segfaulted
app
2010-05-07 Sanel <[email protected]>
* src/tinyscheme/scheme.c:
* test/theme.cpp:
* test/theme-bad2.et: prevent crashes on malformed 'let'
2010-03-28 Sanel <[email protected]>
* edelib/Nls.h
* src/Nls.cpp
* src/Jamfile: allow translation of edelib specific code; also let this
code use explicitly edelib domain for translation search
* edelib/Ede.h: EDE specific file for common macro(s); set FL_NORMAL_SIZE
to 12 by default
2010-03-10 Sanel <[email protected]>
* edelib/Netwm.h:
* src/Netwm.cpp: report NETWM_CHANGED_WINDOW_ICON when icon gets changed
via _NET_WM_ICON message
* configure.in: amd64 requires '-fPIC' even if library is compiled as
static
* examples/efile.cpp: some warning reduction
2010-03-07 Sanel <[email protected]>
* src/Netwm.cpp: fixed property fetching issues on 64-bit platform
2010-02-25 Sanel <[email protected]>
* edelib/Netwm.h:
* src/Netwm.cpp: added netwm_window_set_state() and EWMH states, as generic
facility for setting window states; small code refactoring
2010-02-18 Sanel <[email protected]>
* src/Netwm.cpp: use correct state for setting maximized state; by default
is toggled state for cases when maximization is issued on already
maximized window
2010-02-16 Sanel <[email protected]>
* m4/compiler-name.m4: s/ac_compiler_name/ac_compiler_vendor and
s/EDELIB_COMPILER_NAME/EDELIB_COMPILER_VENDOR
* configure.in:
* Jamconfig.in: there is no need to set SUN_COMPILER variable when
SunStudio is used, now configure script will figure it out
2010-02-15 Sanel <[email protected]>
* m4/fltk.m4: check if FLTK was compiled with XFT support
2010-02-11 Sanel <[email protected]>
* src/Theme.cpp: some cleanup
2010-02-04 Sanel <[email protected]>
* configure.in:
* Jamrules:
* po/update-message.sh.in: update-messages.sh will be filled with xgettext
path if available
2010-02-03 Sanel <[email protected]>
* po/update-messages.sh:
* po/edelib.pot: default template file should be named edelib.pot
* Jamrules:
* Jamfile:
* po/Jamfile: modified MakeInstallPrivate so it can accept target
filename; added ability to install translated files in locale directory
2010-02-02 Sanel <[email protected]>
* po/update-messages.sh:
* po/messages.pot: created directory for translations with accompanying files
2010-01-19 Sanel <[email protected]>
* new entry in new year!!!
* src/DesktopFile.cpp: if localized keys are not found, fallback to
generic ones
2009-12-18 Sanel <[email protected]>
* edelib/Config.h:
* src/Config.cpp: small refactoring
2009-12-16 Sanel <[email protected]>
* edelib/Netwm.h: little change for netwm_window_is_manageable() doc
2009-12-10 Sanel <[email protected]>
* edelib/Netwm.h:
* src/Netwm.cpp: some API refactoring, added netwm_window_get_type()
2009-12-09 Sanel <[email protected]>
* edelib/Netwm.h:
* src/Netwm.cpp: attempt to put common wm code in one place
2009-12-03 Sanel <[email protected]>
* src/tinyscheme/scheme.c: dump {} tokens; fixed so [] tokens can be
aliased with ()
2009-12-02 Sanel <[email protected]>
* configure.in:
* edelib/DateTime.h:
* edelib/File.h:
* edelib/TableBase.h:
* src/DateTime.cpp:
* src/DesktopFile.cpp:
* src/EdbusMessage.cpp:
* src/File.cpp:
* src/IconChooser.cpp:
* src/IconTheme.cpp:
* src/MessageBox.cpp:
* src/PtyProcess.cpp:
* src/SevenSeg.cpp:
* src/TableBase.cpp:
* src/tinyscheme/scheme.c:
* test/UnitTest.cpp: added -Wshadow flag to prevent variable shadowing;
cleaned warnings
2009-12-01 Sanel <[email protected]>
* src/tinyscheme/gen-c-string.sh: accept parameter and construct variable
name from parameter name
2009-11-25 Sanel <[email protected]>
* examples/theme.cpp: s/Fl_Button.h/Fl_Button.H
* examples/Jamfile: let theme.cpp use FLTK_CFLAGS
* edelib/ForeignCallback.h: fixed example to match function changes
2009-11-24 Sanel <[email protected]>
* src/tinyscheme/theme.scm: fix a typo in comment; additionally clarify
theme.style-get function
* examples/theme.cpp:
* examples/theme-sample: simple example of theming engine
2009-11-20 Sanel <[email protected]>
* autogen.sh: emulate basic aclocal functionality so edelib does not
require whole automake package for this
* src/String.cpp:
* src/IconChooser.cpp: allow it to compile on gcc >= 4.4.1 due
introduction const safe C string function
2009-11-17 Sanel <[email protected]>
* edelib/Missing.h:
* src/Missing.cpp: edelib_daemon() added since Solaris family does not
provides it at all
* edelib/Missing.h: separate these functions to different documentation
module
* test/run.cpp: do not use 'tar' without path or GNU version will be
selected on default OpenSolaris installation
* edelib/Missing.h: s/Missing function/Missing functions
2009-11-16 Sanel <[email protected]>
* test/file.cpp:
* test/run.cpp:
* test/desktopfile.cpp: some #ifdef code to run pass tests on OpenSolaris
* test/file.cpp: removed commented code
2009-11-13 Sanel <[email protected]>
* edelib/ForeignCallback.h:
* src/ForeignCallback.cpp: additional data parameter for
foreign_callback_add(); also the order of parameters was changed
* edelib/Nls.h: some macro code formatting
2009-11-12 Sanel <[email protected]>
* edelib/IconLoader.h:
* src/IconLoader.cpp:
* src/xdgmime/xdgmimemagic.c:
* src/icons/unknown-*.xpm
* src/Run.cpp:
* src/MenuItem.cpp: fixed warnings found on gcc 4.3.2 and error with
PATH_MAX and signal() on OpenSolaris
* src/MenuButton.cpp: make it compiles on FLTK 1.1.7
2009-11-10 Sanel <[email protected]>
* edelib/Window.h:
* src/Window.cpp: dump foreign callback code since separate implementation
was added
2009-11-09 Sanel <[email protected]>
* edelib/ForeignCallback.h:
* src/ForeignCallback.cpp: added foreign callback functions
2009-11-04 Sanel <[email protected]>
* edelib/Theme.h:
* edelib/ThemeLoader.h:
* src/Theme.cpp:
* src/ThemeLoader.cpp:
* test/theme.cpp: theme loading using XDG paths is now in ThemeLoader
class, that will also load XSETTINGS code and apply commong theme elements
on FLTK tree. XSETTINGS code is not yet completed. Tests updated
2009-11-02 Sanel <[email protected]>
* src/Theme.cpp: use .H for FLTK headers; spotted by Ralf and adb
2009-10-16 Sanel <[email protected]>
* Jamconfig.in:
* Jamrules: add DESTDIR to prefix, instead modifying every install rule
2009-10-13 Sanel <[email protected]>
* Jamrules: use DESTDIR if given (modified patch from José Romildo)
2009-10-12 Sanel <[email protected]>
* edelib/EdbusConnection.h:
* src/EdbusConnection.cpp: dumping method and signal matching tables since
they are not used; removed unneeded return value from disconnect(); added
error() member that will return EdbusError object, filled with received
error message
2009-10-09 Sanel <[email protected]>
* src/Run.cpp: silent a warning
2009-10-08 Sanel <[email protected]>
* === Released 2.0 beta ===
2009-10-08 Sanel <[email protected]>
* m4/fltk.m4: pass checks for FLTK 1.1.10
2009-10-07 Sanel <[email protected]>
* m4/largefile.m4:
* configure.in: --enable-largefile added, so code can be compiled with
large file support
2009-10-05 Sanel <[email protected]>
* m4/fltk.m4: remove possible optimization flags; on NetBSD fltk-config
uses -O2 (stupid)
2009-10-02 Sanel <[email protected]>
* edelib/DesktopFile.h:
* src/DesktopFile.cpp:
* test/desktopfile.cpp: behaviour of exec() is now much more conformant to
The Desktop Entry Spec, returning full executable path without touching
the arguments (escaping and special variables are not implemented yet);
try_exec() now checks only if execuatable exists; tests updated
* src/File.cpp: used E_DIR_SEPARATOR
2009-09-29 Sanel <[email protected]>
* edelib/Directory.h: newline at the end of the file or SunStudio 11 C++
compiler will crash
2009-09-26 Sanel <[email protected]>
* edelib/*.h: added EDELIB part to header protector
* edelib/StrUtil.h: dumping isws() helper function; stringtok() will
now directly use strchr()
* m4/compiler-name.m4: macro for deducing compiler name
2009-09-25 Sanel <[email protected]>
* Jamconfig.in:
* Jamrules: LIBS from configure should be used, not LDLIBS
* m4/various.m4: use only gcc specific flags for gcc
* Jamrules.in:
* Jamrules: moving STDLIB to Jamrules; some warning flags for SunStudio
* Jamconfig.in: use CFLAGS var name instead CCFLAGS, which caused jam to
skip given flags for C code
* src/tinyscheme/scheme.c: initialize/mark sink; this caused very strange
crashes on SunStudio
* m4/various.m4: use '-g' if gcc wasn't detected
* src/tinyscheme/scheme.c: fix a warnings
2009-09-24 Sanel <[email protected]>
* m4/dbus.m4:
* src/EdbusConnection.cpp: dbus_watch_get_unix_fd() is marked as
deprecated in newer dbus versions
2009-09-23 Sanel <[email protected]>
* src/MimeType.cpp:
* src/xdgmime/xdgmime.h:
* src/xdgmime/xdgmime.c: added xdg_mime_get_mime_type_for_file2() that
will always do stat() on target file; xdg_mime_get_mime_type_for_file()
code was reverted to original implementation
* test/mime.cpp: test for known crash on NetBSD, for previous xdgmime
changes (Bug 155); dumped icon name test against object file
2009-09-21 Sanel <[email protected]>
* src/MenuItem.cpp: removed included stdio.h header; made submenu arrows
fixed size: looks much "normally"
2009-09-18 Sanel <[email protected]>
* edelib/IconLoader.h:
* src/IconLoader.cpp: use OR-ing to store settable options; much more
convinient and verbose
2009-09-17 Sanel <[email protected]>
* edelib/IconLoader.h:
* src/IconLoader.cpp: by default, return icon size as requested, even if
we are need to scale it
2009-09-08 Sanel <[email protected]>
* edelib/List.h: fix a bug when erase() would be called in the loop with
already assigned end() value
* test/list.cpp: test for above bug
2009-09-07 Sanel <[email protected]>
* Jamrules: fix error value propagation to the shell
2009-09-03 Sanel <[email protected]>
* configure.in: removed last change in this file
* Jamrules: 'jam tests' will do necessary stuff to allow running tests
when edelib was compiled as shared library
* INSTALL:
* README: update, fixed some typos
* src/tinyscheme/init.scm: dumping IO code
* src/tinyscheme/init.scm.orig: orginal file that came with tinyscheme
* edelib/Resource.h:
* src/Resource.cpp:
* test/resource.cpp: allow find_data() to have default prefix, as
find_config() too; added find_in_config_dir(); allow prefix to
have NULL value, so it can be ignored
2009-09-02 Sanel <[email protected]>
* src/Theme.cpp: better code for checking if scheme stuff is loaded
* src/tinyscheme/scheme.c: set proper retcode value when illegal token was
found
* test/theme.cpp:
* test/theme-bad.et: test for special case where tinyscheme code had to be
modified
* src/tinyscheme/scheme.h: disable math facility
* src/tinyscheme/scheme.c: do not call malloc.h; FreeBSD does not like it
* configure.in: make libraries visible if edelib was compiled as shared
library when EDELIB_USE_LOCALDIR was set
2009-09-01 Sanel <[email protected]>
* edelib/Theme.h:
* src/Theme.cpp: clear() made public; small fix with string type
recognition
* test/theme.cpp: added tests for theme
2009-08-29 Sanel <[email protected]>
* edelib/EdbusConnection.h:
* doc/DBus.dox: moving D-BUS info documentation in separate file
* edelib/edelib-global.h: E_SIGLETON_CLASS_* replaced with
E_CLASS_GLOBAL_*
2009-08-28 Sanel <[email protected]>
* edelib/edelib-global.h: added E_DISABLE_CLASS_COPY and changed *.h files
to use it
* edelib/Theme.h:
* src/Theme.cpp:
* src/tinyscheme/*: added theming stuff
* edelib/edelib-global.h: E_SIGLETON_CLASS_* macros added
2009-08-18 Sanel <[email protected]>
* src/EdbusConnection.cpp: fixed implicit EdbusMessage creating; detected
by gcc-2.95.3 :)
* edelib/MessageBox.h: dumped wrongly placed doxygen tag
* edelib/edelib-global.h: added EDELIB_NS_PREPEND; redefine namespace if
external EDELIB_NS name was given
* src/Window.cpp:
* edelib/TiXml.h: use EDELIB_NS_PREPEND
* examples/egroup.cpp:
* examples/egroup2.cpp:
* examples/dirwatch.cpp:
* examples/icon_chooser.cpp: removed explicit namespace name usage
2009-08-15 Sanel <[email protected]>
* test/abicheck.sh: added for the future for easier ABI changes tracking
2009-08-11 Sanel <[email protected]>
* edelib/Directory.h: some documentation typo fix
* edelib/IconLoader.h:
* src/IconLoader.cpp: added builtin xpm icons and implemented
get_builtin_xpm_icon()
2009-08-09 Sanel <[email protected]>
* edelib/MessageBox.h:
* src/MessageBox.cpp: added set_icon_by_type() so icons could be set via
already known MessageBoxIconType values; it will use icon theme by default
and as fallback will use edelib internal ones
2009-08-04 Sanel <[email protected]>
* m4/fltk.m4: allow checks for FLTK 1.3.x to be passed
2009-07-31 Sanel <[email protected]>
* edelib/EdbusConnection.h: completed documentation
* doc/todo.dox: removed one TODO
* edelib/List.h: made size_type public
2009-07-21 Sanel <[email protected]>
* src/FontChooser.cpp: cosmetic changes
* doc/Doxyfile.in: examples directory is part of EXAMPLES_PATH
* edelib/edelib-global.h: added EDELIB_NS_USING_AS() and documented the
rest macros
* examples/menu.cpp: addopted to use EDELIB_NS_* macros
2009-06-09 Sanel <[email protected]>
* src/IconLoader.cpp: lookup cache not only by icon name, but by size too;
this prevent issue where seen icon name (with random size) would be
returned for different requested sizes
2009-06-08 Sanel <[email protected]>
* edelib/TempFile.h:
* src/TempFile.cpp:
* test/temp_file.cpp: added class for unique temporary files
* edelib/TempFile.h:
* src/TempFile.cpp: added set_no_close() member; if set, destructor will
not close descriptors
2009-06-07 Sanel <[email protected]>
* src/MenuItem.cpp: some Sun Studio quirks
2009-06-06 Sanel <[email protected]>
* src/MenuItem.cpp: better way to determine icon and label positions; also
fixes issue when the label is too large so menu window could not correctly
recalculate own width
* examples/menu.cpp:
* examples/menu.fl: extending examples for corner cases
2009-06-03 Sanel <[email protected]>
* edelib/MenuItem.h:
* src/MenuItem.cpp: changes to allow images in menu items
* examples/menu.cpp: added some icons to test against
* examples/menu.cpp: extended a little bit
2009-06-02 Sanel <[email protected]>
* examples/Jamfile: let menu.cpp gets FLTK include paths during
compilation
2009-06-30 Sanel <[email protected]>
* Forking FLTK menu due it's inability to be extended; names are changed
and edelib namespace is used
* examples/menu.cpp: small demo
* Jamrules: remove edelib-gui.pc when 'jam distclean' given
2009-06-08 Sanel <[email protected]>
* src/Window.cpp: added Fltk/Scheme key
2009-05-15 Sanel <[email protected]>
* edelib/Window.h:
* src/Window.cpp: do not load icon theme when WIN_INIT_NONE was given
* src/IconTheme.cpp: removed some unneeded output
2009-05-14 Sanel <[email protected]>
* all: split libedelib to libedelib and libedelib_gui
* edelib-gui.pc.in:
* configure.in:
* Jamfile: added edelib-gui.pc.in
2009-05-11 Sanel <[email protected]>
* edelib/Regex.h:
* src/Regex.cpp:
* test/regex.cpp:
* examples/elinks.cpp: replaced GNU regex engine with pcre; updated tests
and elinks example
* examples/icon_chooser.cpp: let it use edelib::Window
2009-04-22 Sanel <[email protected]>
* === Released 2.0 alpha ===
2009-04-20 Sanel <[email protected]>
* src/StrUtil.cpp: some valgrind warning fixup
* src/rx/regex.h: __restrict_arr makes a lot of problems on NetBSD's gcc
4.1.2 so this part is replaced with updated code found somewere on the net
* test/mime.cpp: quick hack to prevent crashes on NetBSD, although better
solution should be find
2009-04-18 Sanel <[email protected]>
* m4/pkg.m4: removed obsolete line
* m4/mime.m4: fix a bug with IFS, noticeable on ksh shell
2009-04-17 Sanel <[email protected]>
* edelib/Config.h:
* src/Config.cpp:
* test/conf.cpp: removed usage of File class
* m4/pkg.m4: ksh hack
2009-04-13 Sanel <[email protected]>
* m4/jam.m4: check if we have broken jam's that does not correctly use
return statement
2009-04-12 Sanel <[email protected]>
* all: fixed some warnings generated by gcc's (>=4.3)
* edelib.pc.in:
* edelib-dbus.pc.in: dump URL key since it is not supported by older
pkg-config versions
2009-04-10 Sanel <[email protected]>
* test/UnitTest.h:
* test/UnitTest.cpp:
* test/run_tests.cpp: removed CDash output; added '--silent' command line
option
* test/UnitTest.cpp: failed tests will be sent to stderr; better output
formatting
* Jamrules: let 'jam tests' run unit tests
* src/Debug.cpp: use fputs()
* configure.in: check if env EDELIB_USE_LOCALDIR was set; if true, see
local directory as install destination so .pc files can be called pointing
to this directory
2009-04-09 Sanel <[email protected]>
* src/Run.cpp: BSD's keeps BSD definition in sys/param.h
* run-tests.sh: removed
2009-04-08 Sanel <[email protected]>
* INSTALL: corrected environment variables
* m4/fltk.m4: remove unneeded comma
* src/Run.cpp: include needed headers for BSD systems
2009-04-07 Sanel <[email protected]>
* test/UnitTest.h:
* test/UnitTest.cpp:
* test/run_tests.cpp: return 1 if tests failed or 0 if opposite
* run-tests.sh: added
2009-04-02 Sanel <[email protected]>
* edelib/Color.h:
* src/Color.cpp:
* test/color.cpp: color_html_to_rgb() and color_rgb_to_html() added with
tests
2009-03-30 Sanel <[email protected]>
* INSTALL: small clarifications
* Jamrules: removed some vars used for playgrounds
2009-03-28 Sanel <[email protected]>
* edelib/EdbusData.h: fix error on sun compiler
* edelib/MessageBox.h:
* src/MessageBox.cpp:
* src/Run.cpp: fix warnings on sun compiler
* INSTALL: compiling on SunStudio
* edelib/FileTest.h: small changes in the doc
* src/Directory.cpp: dir_create_with_parents() needs file_test()
* edelib/*: documented macros
2009-03-27 Sanel <[email protected]>
* src/IconChooser.cpp: some refactoring, use Fl_Double_Window
* edelib/IconChooser.h: todo how it needs to be rewritten
* edelib/FileTest.h:
* src/FileTest.cpp:
* test/file_test.cpp: added file_test() function with tests
* src/FileTest.cpp: use lstat() for links
* all: updated code to use file_test(); deprecated dir_*() and file_*()
functions that do the same job; removing unneeded checks before
file/directory open operations
2009-03-25 Sanel <[email protected]>
* src/IconLoader.cpp: let get() check fallback icon too; some sanity
checks
* edelib/IconLoader.h: document get() behaviour
* edelib/IconLoader.h: document how to get image object
* src/IconLoader.cpp: remove previous image from Fl_Shared_Image cache
whem icon theme was reloaded; some stats output
* src/IconTheme.cpp: removed debug output when go in 'hicolor' theme
* edelib/String.h: small documentation revision
* edelib/String.h:
* src/String.cpp:
* test/string.cpp: added trim_left(), trim_right(), trim() function with
the tests
* src/IconTheme.cpp: updated to use trim() function
* edelib.pc.in: added edelibdocdir variable; it will have full path to
edelib documentation directory
* src/icon/*: updated to gtk icons
* src/MessageBox.cpp: use question icon where is needed
2009-03-24 Sanel <[email protected]>
* edelib/IconTheme.h: default_theme_name() added
* edelib/IconLoader.h: plain init() used default_theme_name()
* src/Window.cpp: DEFAULT_ICON_THEME replaced with default_theme_name()
* edelib/IconLoader.h:
* src/IconLoader.cpp: let IconLoader tries to directly load icon, then use
IconTheme
* src/IconLoader.cpp: removed checks if Fl_Shared_Image::get() fails;
image() will get NULL and widget will remove previous image, drawing
nothing; this behaviour is desired since image is not found anyway
2009-03-23 Sanel <[email protected]>
* edelib/Window.h: small clarification about XSETTINGS callback;
documented XSETTINGS keys
* edelib/IconLoader.h:
* src/IconLoader.cpp: added parameter for widget redrawing in set()
* edelib/IconLoader.h: some documentation update
* src/MimeType.cpp: use new xdgmime's icon lookup feature in fetching icon
name, refactored icon fetcher to not use stringtok()
* src/MimeType.cpp: mark status as loaded when we have icon name
2009-03-20 Sanel <[email protected]>
* src/ThreadableMember.h: removed; not used any more
* src/IconChooser.cpp: re-implemented loading via new IconLoader
* edelib/IconLoader.h: remove default parameters from hidden functions
2009-03-19 Sanel <[email protected]>
* edelib/Window.h:
* src/Window.cpp:
* edelib/WindowXid.h:
* src/WindowXid.cpp: window_xid_create() moved to WindowXid.{h,cpp} for
easier maintenance
* edelib/IconLoader.h: documented caveats if IconLoader::reload() was used
when Window is used
* src/IconLoader.cpp: removing main() used for test code
* edelib/Window.h:
* src/Window.cpp: reimplemented previous settings stuff naming it as foreign
callbacks
2009-03-17 Sanel <[email protected]>
* src/IconTheme.cpp: spec said $XDG_DATA_HOME/icons should be used too
* edelib/IconLoader.h: some documentation update
2009-03-16 Sanel <[email protected]>
* edelib/IconTheme.h:
* src/IconTheme.cpp: new code, new design, improved icon searching
* edelib/IconLoader.h:
* src/IconLoader.cpp: now this class actually loads icons, cache them and
displays inside widgets
* src/Window.cpp:
* src/IconChooser.cpp:
* test/xdg/icon-theme.cpp: updated because of these chages
2009-03-10 Sanel <[email protected]>
* edelib/Pty.h:
* edelib/PtyProcess.h: added EDELIB_API exporter
* edelib/DirWatch.h: a little documentation revision
2009-03-09 Sanel <[email protected]>
* src/xdgmime:
* src/Jamfile
* src/Jamfile
* configure.in:
* Jamconfig.in: updated xdgmime sources to the latest versions and changed
accompanying files to reflect that
* test/mime.cpp: added tests for caveats
2009-03-08 Sanel <[email protected]>
* src/MessageBox.cpp: dumped DO_COPY() macro in a favor of edelib_strlcpy()
2009-03-07 Sanel <[email protected]>
* edelib/EdbusConnection.h: fixed a typo in enum name
* edelib/EdbusConnection.h:
* src/EdbusConnection.cpp: request_name() now follows policy issued with
second 'mode' parameter
* edelib/EdbusConnection.h: request_name() documentation update
* edelib/DesktopFile.h: todo about Exec special variables
* edelib/EdbusMessage.h: documentation fix
* src/MessageBox.cpp: do not call fl_register_images()
2009-03-06 Sanel <[email protected]>
* test/string.cpp: removed unneeded stdio.h inclusion
* test/run.cpp: added tests for run_XXX functions
* edelib/Run.h: document some caveats
* src/Run.cpp: some refactoring, cleaning bad deallocation, misc
* test/run.cpp: explictitly say that running file is local or run commands
will search PATH for it
* src/EdbusMessage.cpp: removed some puts()/printf()'s and internal
from_edbusdata_type_to_dbus_type_string() will call E_FATAL() if end was
reached
* src/EdbusConnection.cpp: commenting debug messages output
2009-03-05 Sanel <[email protected]>
* src/Run.cpp: reimlemented code for asynchronous process spawning, mainly
to prevent creating zombie processes; the code is inspired by Glib
implmenetation
* edelib/Run.h: added RUN_PIPE_FAILED flag
2009-03-01 Sanel <[email protected]>
* m4/pkg.m4: imported modification from ede2 module, where spaces in
returned flags will be removed; also pkg-config is mandatory so it will
not continue if wasn't found, as was previously; XY_VERSION is set too
* m4/dbus.m4: removed checks if pkg-config wasn't found
* m4/*.m4:
* configure.in: s/EDELIB_CHECK_/EDELIB_; removed that CHECK part for
consistency
* m4/*.m4: removed 'eval' from 'if' statement
* doc/Doxyfile.in: hide scope names
* doc/Mainpage.dox: added as main page
* TODO: removed; all todo's are placed either in *.h or todo.dox files via
\todo tag so doxygen could do the better job
* edelib/Debug.h:
* src/Debug.cpp: message handler recoded
* edelib/MessageBox.h:
* src/MessageBox.cpp: themed_dialog_icons() and clear_dialog_icons() are
deprecated with set_themed_icons() and clear_themed_icons() from
MessageBox; some internal refactoring to use E_RETURN_XXX macros
* edelib/Regex.h: added todo for porting it on pcre backend
* m4/xlib.m4: remove AC_PATH_X since AC_PATH_XTRA already contains it
2009-02-27 Sanel <[email protected]>
* tools/edelib-mime-find: added
* edelib/Pty.h:
* edelib/PtyProcess.h:
* src/Pty.cpp:
* src/PtyProcess.cpp: added Vedran's work on synchronous chat with
terminal programs
* configure.in: added checks for functions needed by PTY and PtyProcess
classes
* Window.h:
* Window.cpp: renamed create_window_xid() to window_xid_create(); better
control of icon theme loading/reloading
2009-02-26 Sanel <[email protected]>
* m4/dbus.m4: removed obsolete code
* edelib/edelib-global.h: added EDELIB_DEPRECATED macro
* edelib/Run.h:
* src/Run.cpp: run_program() and run_program_fmt() marked as deprecated;
replacement is in run_sync() and run_async()
2009-02-24 Sanel <[email protected]>
* edelib/Resource.h:
* src/Resource.cpp: save(), load() and find_conf() have additional prefix
parameter, as Vedran proposed, and it behaves as subdirectory of XDG
config dirs
* test/resource.cpp: updated tests
* src/String.cpp: fixed a crash when append() is called with empty string
* test/string.cpp: updated tests
* autogen.sh: code cleanup
2009-02-23 Sanel <[email protected]>
* m4/stl.m4:
* m4/sound.m4:
* edelib/XSet.h:
* src/XSet.cpp: removed
* all-over-the-code: changed license to LGPL, coding standard rechecked
* COPYING: added file with LGPL license
* econfig.h: renamed to edelib-global.h
* src/Resource.cpp: now all files will be saved/read-from "ede" directory
as base directory if RESOURCE_DOMAIN_PREFIX wasn't given during compile
* test/resource.cpp: updated tests too
2009-02-21 Sanel <[email protected]>
* edelib/Run.h:
* src/Run.cpp: removed 'root' option, a planned option for (possible)
running program as root, where password would be prompted with dialog;
planned to be implemeted as external program; also shell path will be
first read from $SHELL variable, then /bin/sh will be executed
* edelib/Run.h:
* src/Run.cpp: added run_program_fmt() for printf-like formatted command
2009-02-19 Sanel <[email protected]>
* edelib/Resource.h:
* src/Resource.cpp: s/find_dir/find_data and changed concept; it should
seach through data directories and (now) will search anything, like
directory, file, etc.
* test/resource.cpp: updated tests
* src/Resource.cpp: refactored load() function
2009-02-18 Sanel <[email protected]>
* edelib/Resource.h:
* src/Resource.cpp: added find_config() and find_dir() functions; they
will search for paths in XDG dirs, according to given search order
* test/resource.cpp: tests for find_config() and find_dir()
2009-01-24 Sanel <[email protected]>
* Jamconfig.in: s/CFLAGS/CCFLAGS; jam uses CCFLAGS
* Jamrules: fixed GenLa action so it leaves comments
* Jamrules: small tweaks in SharedLibraryFromObjects rule
* test/Jamfile: let xsettings.cpp receive flags too
2009-01-22 Sanel <[email protected]>
* configure.in:
* edelib/econfig.h: added HAVE_EDELIB_BASE_CONFIG_H so it can be included
only when edelib gets compiled so symbols in edelib/_conf.h don't collide
with ones in ede2 config.h or user one
2009-01-20 Sanel <[email protected]>
* First edelib change in 2009 :)
* src/Config.cpp: fixed issue due retrieving double and float
numbers on different locales
2008-12-29 Sanel <[email protected]>
* edelib/List.h: removing comb_sort(); completed specialization code, but
not used yet; somehow it generates bigger code
* test/list.cpp: added test for sorting pointers and exposed current bug
in list::sort() method
2008-10-07 Sanel <[email protected]>
* src/DateTime.cpp: remove assertions; besides they are unneeded,
day_name() would assert if day was larger than 7 (bad, I know)
2008-10-06 Sanel <[email protected]>
* edelib/econfig.h: seems that class visibility is working at gcc >= 4.0
2008-10-05 Sanel <[email protected]>
* edelib/List.h: de-templatized ListNode; this yields a smaller binary
files that uses list
2008-10-04 Sanel <[email protected]>
* edelib/econfig.h: E_EXPORT, E_NO_EXPORT and EDELIB_NO_API added
* edelib/econfig.h: EDELIB_API now on gcc is E_EXPORT
* edelib/EdbusData.h:
* edelib/EdbusObjectPath.h:
* edelib/EdbusDict.h:
* edelib/EdbusList.h:
* edelib/EdbusConnection.h:
* edelib/EdbusMessage.h:
* edelib/Regex.h:
* edelib/DesktopFile.h:
* edelib/Config.h:
* edelib/String.h:
* edelib/TiXml.h:
* edelib/FontChooser.h:
* edelib/DirWatch.h:
* edelib/SevenSeg.h:
* edelib/TableBase.h:
* edelib/XSettingsClient.h:
* edelib/XSettingsManager.h:
* edelib/XSettingsCommon.h:
* edelib/Sipc.h:
* edelib/MessageBox.h:
let public classes and functions use EDELIB_API
2008-10-03 Sanel <[email protected]>
* edelib/Util.h:
* src/Util.cpp: removed build_dirname() and reimplemented build_filename()
to not use tokenizer
* test/util.cpp: tests update
2008-10-02 Sanel <[email protected]>
* src/IconChooser.cpp: same issue as with ExpandableGroup.cpp was
2008-10-01 Sanel <[email protected]>
* src/ExpanadableGroup.cpp: do not reorder childs if group is not shown
* src/IconTheme.cpp:
* src/XSettingsClient.cpp: s/EASSERT/E_ASSERT, s/EDEBUG/E_DEBUG,
s/EWARNING/E_WARNING
* src/Window.cpp: small code reordering
* TODO: entry
* edelib/Util.h:
* src/Util.cpp: build_filename() and build_dirname() should not contain
separator parameter
* test/util.cpp: updated tests
2008-09-26 Sanel <[email protected]>
* Jamfile: SubInclude should come the last
2008-09-24 Sanel <[email protected]>
* m4/dbus.m4: if disabled, don't leave spaces, jam doesn't like it
* configure.in: the same applies for FLTK; also fixed issue with CFLAGS
and CXXFLAGS where AC_PROG_CC and AC_PROG_CXX would secretly add
'-O2' and '-g' flags
* m4/fltk.m4: added --with-fltk-path configure option to specify
alternative FLTK installation
* src/Resource.cpp: use temporary when substring is used or we will get a
junk as name
2008-09-23 Sanel <[email protected]>
* src/String.cpp: chcpy() made static
* src/String.cpp, src/Run.cpp, src/Sipc.cpp, src/Resource.cpp: fix warnings from Sun's
compiler
2008-09-22 Sanel <[email protected]>
* src/Jamfile, examples/Jamfile: let files depending on FLTK
uses FLTK_CFLAGS
* Jamrules: STDLIB variable will contain '-l' flag in case it is placed in
non-standard path so search directories can be added (e.g. in case of
different compiler)
2008-09-21 Sanel <[email protected]>
* edelib/Sipc.h: updated documentation
* test/mime.cpp: test for text/html mime now points to
test/perf/asciidoc.html instead to removed doc/footer.html
* TODO: added/removed entry
* Jamrules: let 'jam distclean' remove Doxyfile too
* doc/Doxyfile.in: now documentation should show correct include path
2008-09-20 Sanel <[email protected]>
* edelib/TableBase.h: updated documentation
* src/xdgmime/xdgmime.c: changed order of guessing so directories with
"extensions" or extension-like names in the name doesn't be recognized
as files or unknown types e.g. '.kde', '.e' or '.emacs.d'
2008-09-15 Sanel <[email protected]>
* TableBase.{h,cpp}: added TableBase based on Erco's Fl_Table widget
* examples/list_view.cpp: TableBase sample
* all: a massive fix of FLTK headers inclusion; recent reports shows that
some distros does not install FLTK correctly so only .H files are
present, although .h symlinks should be created too
2008-09-14 Sanel <[email protected]>
* Jamconfig.in, m4/initjamfile.m4: added localedir var
2008-09-13 Sanel <[email protected]>
* Jamconfig.in, Jamrules, src/Jamrules: s/DBUSFLAGS/DBUS_CFLAGS,