forked from GNOME/gnome-system-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.pre-git
6241 lines (4035 loc) · 171 KB
/
ChangeLog.pre-git
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
See 'svn log' for change history.
<2007-05-21 Benoît Dejean <[email protected]>
* src/defaulttable.h:
More icons.
2007-05-21 Benoît Dejean <[email protected]>
* src/procman.cpp (main):
Killed superfluous proctable_update_all.
2007-05-19 Benoît Dejean <[email protected]>
* src/defaulttable.h:
* src/prettytable.cpp:
* src/prettytable.h:
Dropped dead code.
Every app now has a default icon.
Reworked the defaultable:
- uses regexes.
- uses generic icon name whenever possible.
2007-05-19 Benoît Dejean <[email protected]>
* configure.in:
* src/proctable.cpp:
Bumped version.
Requires libgtop 2.19.3 (svn HEAD, not released yet).
2007-05-19 Benoît Dejean <[email protected]>
* src/sysinfo.cpp:
Simplified code with a nice regex.
2007-05-13 Benoît Dejean <[email protected]>
* NEWS:
Released 2.19.2.
2007-04-28 Benoît Dejean <[email protected]>
* src/proctable.cpp:
* src/util.cpp:
Simpler code to display size columns.
2007-04-27 Benoît Dejean <[email protected]>
* src/gnome-system-monitor.schemas.in:
Better documentation about 'Solaris mode'.
2007-04-27 Benoît Dejean <[email protected]>
* src/procdialogs.cpp:
Fixed case in "Solaris mode".
2007-04-26 Benoît Dejean <[email protected]>
* src/proctable.cpp:
Try to fix dependencies when using active/my view.
I am not sure it's correct, at least it doesn't g_assert
on startup.
2007-04-26 Benoît Dejean <[email protected]>
* configure.in:
* src/Makefile.am:
* src/lsof.cpp:
pcrecpp is back !
2007-04-26 Benoît Dejean <[email protected]>
* src/memmaps.cpp:
Display device name instead of major/minor.
Reverted one string "MemoryMaps" to "Memory Maps".
2007-04-25 Benoît Dejean <[email protected]>
* src/memmaps.cpp:
Implemented smaps.
Simplified implementation.
Uses a GtkWindow instead of a dialog because the treeview is now
much bigger.
2007-04-24 Benoît Dejean <[email protected]>
* configure.in:
* src/Makefile.am:
* src/gconf-keys.cpp:
* src/gconf-keys.h:
* src/gnome-system-monitor.schemas.in:
* src/procdialogs.cpp:
* src/procman.cpp:
* src/procman.h:
* src/proctable.cpp:
Added a configure switch for Irix/Solaris mode.
Closes #410795.
2007-04-23 Benoît Dejean <[email protected]>
* NEWS:
* ChangeLog:
* configure.in:
Released 2.19.1.
2007-04-23 Benoît Dejean <[email protected]>
* src/procman.h:
* src/proctable.cpp:
* src/proctable.h:
* src/util.h:
Huge rewrite of the dependencies tree.
It needs a lot of testing but it is definitely sanier than the
previous code. I worked on it all the weekend and it is really
to have a working and moving dependency tree.
2007-04-21 Benoît Dejean <[email protected]>
* src/util.cpp:
* src/util.h:
Better debug logging.
2007-04-19 Benoît Dejean <[email protected]>
* src/smooth_refresh.cpp:
Removed duplicate ;;.
1-byte patch by Bernard Leak <[email protected]>.
Closes #431181.
2007-04-19 Benoît Dejean <[email protected]>
* src/procman.h:
* src/proctable.cpp:
Splitted code about ProcInfo updates and treestore updates.
Avoid duplicated work in ProcInfo constructor : update_info
already does everything needed.
Added ProcInfo::ppid which will be soon used instead of
ProcInfo::parent.
2007-04-13 Benoît Dejean <[email protected]>
* src/lsof.cpp:
* src/prettytable.cpp:
* src/procman.cpp:
* src/procman.h:
* src/proctable.cpp:
* src/proctable.h:
Replaced a ProcData::info and ProcData::pids by ProcInfo::all.
This is currently a map. I'll turn it into a set soon.
This saves a lot of code and make things simpler.
The map has a nice property : it is sorted by pid so this helps a lot
when looking for the parent node as ppid is nearly always < pid.
May be this is just fortunate but it works.
But orphaned processed still may get adpoted by a wrong parent...
Also replaced a GHashTable by a set in refresh_list.
2007-04-13 Benoît Dejean <[email protected]>
* src/procman.h (ProcInfo):
* src/proctable.cpp:
Dropped useless ProcInfo::is_visible since the "Hide/Show
process" feature has been removed.
2007-04-12 Benoît Dejean <[email protected]>
* src/procman.h (ProcInfo):
Removed unused member ProcInfo::path.
2007-04-12 Benoît Dejean <[email protected]>
* src/proctable.cpp (proctable_update_list):
Simplified ACTIVE_PROCESSES code.
No more ProcInfo::is_running. It's best to use libgtop
functionnality.
2007-04-12 Benoît Dejean <[email protected]>
* src/proctable.cpp:
Attach processes to init.
Closes #424850.
2007-04-10 Benoît Dejean <[email protected]>
* src/sysinfo.cpp:
Displays `uname -n` instead of FQDN.
Code about handling FQDN was getting bigger and bigger
because of broken /etc/hosts.
Closes #427796.
2007-04-08 Benoît Dejean <[email protected]>
* src/disks.cpp:
Replaced a lot of custom code with
gtk_tree_view_column_set_cell_data_func.
There's only one issue : i don't know how to change the default
sort order. This is a regression for #310804.
* configure.in:
Release number bumped to 2.20.1.
==== 2.18.1 ====
2007-04-05 Benoît Dejean <[email protected]>
* src/prettytable.cpp:
* src/prettytable.h:
Load icons only when needed.
This speeds up startup.
2007-04-01 Benoît Dejean <[email protected]>
* src/disks.cpp:
Simplified the treeview construction by reordering columns.
2007-04-01 Benoît Dejean <[email protected]>
* src/disks.cpp:
More debug prints.
2007-03-30 Benoît Dejean <[email protected]>
* src/disks.cpp:
No need for FP code.
2007-03-28 Benoît Dejean <[email protected]>
* configure.in:
* src/util.cpp:
* src/util.h:
Changes needed by incoming cleanup/fixes.
procman::size_cell_data_func: new function.
UnrefMapValues::operator(): added a check.
2007-03-27 Benoît Dejean <[email protected]>
* configure.in:
* src/interface.cpp:
Little cleanup. Removed dozens of unnecessary gtk_widget_show.
2007-03-12 Benoît Dejean <[email protected]>
* NEWS:
Released 2.18.0.
2007-03-12 Benoît Dejean <[email protected]>
* gnome-system-monitor.desktop.in.in:
Dropped X-Red-Hat-Base.
2007-03-11 Benoît Dejean <[email protected]>
* gnome-system-monitor.desktop.in.in:
Gnome Goal #3 : removed "Application" category from .desktop file.
* src/callbacks.cpp:
Fixed copyright and Paolo name.
2007-03-04 Benoît Dejean <[email protected]>
* src/interface.cpp:
Fixed CPU labels layout when there is a lot of CPU.
Closes bug #413919.
2007-03-04 Benoît Dejean <[email protected]>
* configure.in:
* src/load-graph.cpp:
Re-implemented the network autoscaling.
It's nicer but the displayed scale is still meaningless.
2007-03-02 Benoît Dejean <[email protected]>
* configure.in:
* src/openfiles.cpp:
Fixed cast.
Really fixed bug #412953.
2007-02-28 Benoît Dejean <[email protected]>
* NEWS:
Released 2.17.95.
2007-02-28 Benoît Dejean <[email protected]>
* src/sysinfo.cpp:
Get default system information with uname.
Patch by Joe Marcus Clarke <[email protected]>.
See bug #412953.
2007-02-28 Benoît Dejean <[email protected]>
* configure.in:
* src/openfiles.cpp:
Fixed build on FreeBSD.
Patch by Joe Marcus Clarke <[email protected]>.
See bug #412953.
2007-02-28 Mariano Suárez-Alvarez <[email protected]>
* NEWS:
Released 2.17.94.
2007-02-28 Mariano Suárez-Alvarez <[email protected]>
* help/C/gnome-system-monitor.xml: added a description, to make g-d-u
happy
* po/POTFILES.skip: add gnome-system-monitor.desktop.in to make distcheck
happy
* gnome-doc-utils.make: removed from SVN, as this is a generated file
2007-02-28 Benoît Dejean <[email protected]>
* NEWS:
Released 2.17.93.
2007-02-28 Benoît Dejean <[email protected]>
* configure.in:
* help/C/gnome-system-monitor-C.omf:
* help/gnome-system-monitor.omf.in:
Added missing omf.in.
Dropped old and now useless .omf.
2007-02-25 Benoît Dejean <[email protected]>
* NEWS:
Released 2.17.92.
2007-02-19 Benoît Dejean <[email protected]>
* src/sysinfo.cpp:
Ignore /media/* in disk space.
Closes #409427.
2007-02-12 Benoît Dejean <[email protected]>
* NEWS:
Released 2.17.91.
2007-02-07 Benoît Dejean <[email protected]>
* src/sysinfo.cpp:
Try to get hostname in a smarter way.
2007-02-05 Daniel Nylander <[email protected]>
* help/sv/sv.po: Added Swedish translation.
* help/figures/*: Added screenshot.
* help/Makefile.am: Added sv to DOC_LINGUAS.
* po/sv.po: Updated Swedish translation.
2007-02-05 Benoît Dejean <[email protected]>
* src/sysinfo.cpp:
Solaris support.
Patch by <[email protected]>.
See #374090.
2007-01-31 Benoît Dejean <[email protected]>
* configure.in:
* src/prettytable.cpp:
Killed libgnome !
2007-01-31 Benoît Dejean <[email protected]>
* help/bg/*:
Dropped some generated files.
Added updated bg.po.
2007-01-30 Benoît Dejean <[email protected]>
* Makefile.am:
* configure.in:
* help/C/Makefile.am:
* help/C/gnome-system-monitor.xml:
* help/Makefile.am:
* help/bg/Makefile.am:
Converted to gnome-doc-utils.
Patch by <[email protected]>.
See #352507.
2007-01-30 Benoît Dejean <[email protected]>
* src/proctable.cpp:
Set a min width for the Command Line column.
Closes #328287.
2007-01-29 Benoît Dejean <[email protected]>
* src/callbacks.cpp:
Fixed help display by using GnomeVFS.
Closes #402013.
2007-01-25 Benoît Dejean <[email protected]>
* configure.in:
Bumped version number to match GNOME's version.
2007-01-25 Benoît Dejean <[email protected]>
* configure.in:
* src/load-graph.cpp:
Use Bézier curves in graphs.
Patch by Lucas Mazzardo Veloso <[email protected]>
2007-01-22 Benoît Dejean <[email protected]>
* NEWS:
Released 2.17.6.
2007-01-22 Benoît Dejean <[email protected]>
* src/procman.h:
* src/proctable.cpp:
Turned ProcInfo into a real object.
Dropped the slice-allocator, not that important.
2007-01-22 Benoît Dejean <[email protected]>
reviewed by: <delete if not using a buddy>
* src/procman.h:
* src/proctable.cpp:
2007-01-22 Benoît Dejean <[email protected]>
* src/proctable.cpp:
Re-added the GNOME logo.
Patch by Luca Cavalli <[email protected]>
2007-01-22 Benoît Dejean <[email protected]>
* src/interface.cpp:
Little cleanup.
2007-01-20 Benoît Dejean <[email protected]>
* src/util.cpp (SI_gnome_vfs_format_file_size_for_display):
Rewritten.
Overall CPU usage goes from 7.5% to 5.0%.
2007-01-18 Dennis Cranston <[email protected]>
* src/sysinfo.cpp: Use HIG capitalization
2007-01-18 Benoît Dejean <[email protected]>
* README:
Documented optional dependencies.
2007-01-18 Benoît Dejean <[email protected]>
* src/sysinfo.cpp:
Killed the logo :/
Closes #377144.
2007-01-18 Benoît Dejean <[email protected]>
* src/Makefile.am:
* src/callbacks.cpp:
* src/callbacks.h:
* src/favorites.cpp:
* src/favorites.h:
* src/gnome-system-monitor.schemas.in:
* src/interface.cpp:
* src/procdialogs.cpp:
* src/procdialogs.h:
* src/procman.cpp:
* src/procman.h:
* src/proctable.cpp:
Dropped disabled or dead features.
2007-01-18 Benoît Dejean <[email protected]>
* src/procman.h:
* src/proctable.cpp:
Stores CPU tick frequency as unsigned integer.
2007-01-16 Benoît Dejean <[email protected]>
* src/sysinfo.cpp:
Only use local partitions for disk available count.
Closes #397405.
2007-01-16 Benoît Dejean <[email protected]>
* configure.in:
* src/defaulttable.h:
* src/prettytable.cpp:
* src/prettytable.h:
* src/procman.cpp:
Dropped libgnomeui.
Bumped libgtop dependency to require 2.14;6 to avoid its nasty stack
smashing bug.
Bumped version number.
2007-01-08 Benoît Dejean <[email protected]>
* NEWS:
Released 2.17.5.
2007-01-07 Benoît Dejean <[email protected]>
* src/procman.h:
* src/proctable.cpp:
* src/util.cpp:
Various micro-optimizations based on profiling.
Changed the type of many ProcInfo members to 'unsigned long' to
avoid 64bit arithmetic on 32bit system.
Replaced on g_list_append with g_list_prepend.
Avoided double comparison in format_file_size_for_display.
2007-01-07 Benoît Dejean <[email protected]>
* src/procman.cpp:
* src/smooth_refresh.cpp:
* src/smooth_refresh.h:
Fixed signedness issue with SmoothRefresh.
Simplified logic.
2007-01-06 Benoît Dejean <[email protected]>
* src/prettytable.cpp:
Fixed icon lookup order : first wnck, then theme and default table.
2007-01-06 Benoît Dejean <[email protected]>
* src/procdialogs.cpp:
* src/procman.h:
Merged some code about spin buttons in the preference dialog.
Fixed a bunch of warnings.
2007-01-06 Benoît Dejean <[email protected]>
* src/interface.cpp:
Fixed 2 little signedness issues.
2007-01-05 Benoît Dejean <[email protected]>
* configure.in:
* src/callbacks.cpp:
* src/procdialogs.cpp:
* src/procman.cpp:
* src/procman.h:
* src/smooth_refresh.cpp:
* src/smooth_refresh.h:
Rewrote and cleaned a bunch of stuff.
Changed the smooth refresh behaviour :
- try to keep CPU ~20%
- adjust update_interval up to twice its initial value.
2007-01-04 Benoît Dejean <[email protected]>
* configure.in:
* src/prettytable.cpp:
* src/prettytable.h:
* src/procman.cpp:
* src/procman.h:
* src/proctable.cpp:
* src/util.h:
More C++ rewrite.
Easier and clearer.
Fixed many potential use-before-init bugs.
2007-01-04 Benoît Dejean <[email protected]>
* .cvsignore:
* debian/.cvsignore:
* help/.cvsignore:
* help/C/.cvsignore:
* help/bg/.cvsignore:
* omf-install/.cvsignore:
* pixmaps/.cvsignore:
* src/.cvsignore:
* po/.cvsignore:
Dropped CVS admin files.
Updated svn:ignore properties.
2006-12-19 Benoît Dejean <[email protected]>
* NEWS:
* configure.in:
* src/interface.cpp:
Fixed build and released 2.17.4.2.
2006-12-18 Benoît Dejean <[email protected]>
* configure.in:
* NEWS:
Released 2.17.4.1
2006-12-17 Benoît Dejean <[email protected]>
* NEWS:
Released 2.17.4.
2006-12-16 Benoît Dejean <[email protected]>
* src/prettytable.cpp:
Converted a lot of things to C++ using strongly typed map.
* src/util.h:
New function to ease string() + g_free.
Converted some macros to template.
2006-12-15 Benoît Dejean <[email protected]>
* src/procman.h:
* src/proctable.cpp:
Packed a bit more ProcInfo.
2006-12-15 Benoît Dejean <[email protected]>
* src/Makefile.am:
* src/callbacks.cpp:
* src/callbacks.h:
* src/disks.cpp:
* src/disks.h:
* src/favorites.c:
* src/favorites.cpp:
* src/interface.c:
* src/interface.cpp:
* src/interface.h:
* src/load-graph.c:
* src/load-graph.cpp:
* src/load-graph.h:
* src/lsof.cpp:
* src/lsof.h:
* src/memmaps.cpp:
* src/memmaps.h:
* src/openfiles.cpp:
* src/openfiles.h:
* src/prettytable.c:
* src/prettytable.cpp:
* src/procactions.c:
* src/procactions.cpp:
* src/procdialogs.c:
* src/procdialogs.cpp:
* src/procman.c:
* src/procman.cpp:
* src/procman.h:
* src/procman_gksu.c:
* src/procman_gksu.cpp:
* src/procman_gnomesu.c:
* src/procman_gnomesu.cpp:
* src/proctable.c:
* src/proctable.cpp:
* src/selinux.h:
* src/smooth_refresh.c:
* src/smooth_refresh.cpp:
* src/smooth_refresh.h:
* src/sysinfo.cpp:
* src/util.h:
More C++ :)
2006-12-10 Benoît Dejean <[email protected]>
* src/Makefile.am:
* src/disks.c:
* src/disks.cpp:
* src/disks.h:
* src/openfiles.c:
* src/openfiles.cpp:
* src/openfiles.h:
More C++.
2006-12-10 Benoît Dejean <[email protected]>
* src/Makefile.am:
* src/callbacks.c:
* src/callbacks.cpp:
* src/callbacks.h:
* src/util.c:
* src/util.cpp:
More C++.
2006-12-10 Benoît Dejean <[email protected]>
* src/Makefile.am:
* src/selinux.c:
* src/selinux.cpp:
* src/selinux.h:
* src/util.h:
More C++. What a shame that we are still using CVS that can't
track file moves.
2006-12-10 Benoît Dejean <[email protected]>
* configure.in:
* src/Makefile.am:
* src/lsof.cpp:
Stupid regular expression support.
2006-12-07 Benoît Dejean <[email protected]>
* src/sysinfo.cpp:
Added missing include.
Closes #383291.
2006-12-04 Benoît Dejean <[email protected]>
* help/C/gnome-system-monitor.xml:
* src/procdialogs.c: (create_proc_field_page),
(procdialog_create_preferences_dialog):
String change in process list preferences dialogue as suggested by
Adam Dingle.
Update to the help documentation.
Patch by Christian Kirbach <[email protected]>.
Closes #377048.
2006-12-04 Benoît Dejean <[email protected]>
* configure.in:
Bumped version number.
2006-12-04 Benoît Dejean <[email protected]>
* src/proctable.c: (create_proctree):
Disabled libsexy as it is currently buggy and unmaintained.
See and fix #354559,#355252 if you want it back.
2006-12-04 Benoît Dejean <[email protected]>
* NEWS:
Released 2.17.3.
2006-12-03 Benoît Dejean <[email protected]>
* src/favorites.c: (is_process_blacklisted):
* src/interface.c: (update_sensitivity):
Disabled the process blacklist.
I don't think somebody really uses this broken feature.
If you do, please tell me.
Evil plan is too replace it with a regex based filter.
2006-11-21 Benoît Dejean <[email protected]>
* configure.in:
Downgradaded pcre dependendy to 6.4.
See #367827.
2006-11-20 Benoît Dejean <[email protected]>
* src/sysinfo.cpp:
lsb_release -s is not consistent among distros so
we don't use it and instead parse the
"description: value" lines.
See #374090.
2006-11-20 Benoît Dejean <[email protected]>
* src/sysinfo.cpp:
Fixed computation of disk space.
Changed label.
Closes #??????.
2006-11-19 Benoît Dejean <[email protected]>
* src/memmaps.cpp:
A little more C++.
Added #if 0 code, attempt to rewrite tree save_state/get_state.
2006-11-19 Benoît Dejean <[email protected]>
* src/util.c (procman_debug):
Added relative time since startup in output.
2006-11-18 Benoît Dejean <[email protected]>
* src/interface.c:
Replaced libgnome by gtk+.
2006-11-18 Benoît Dejean <[email protected]>
* src/memmaps.cpp:
Reworked to use lsb_release where available.
Original patch by Deji Akingunola <[email protected]>.
See #374090.
2006-11-17 Benoît Dejean <[email protected]>
* src/memmaps.cpp:
Reworked and simplified.
Made maps addition faster.
2006-11-16 Benoît Dejean <[email protected]>
* src/memmaps.cpp:
First attempt to rewrite some parts in C++.
2006-11-16 Benoît Dejean <[email protected]>
* renamed src/memmaps.c
to src/memmaps.cpp
* patched src/Makefile.am
* patched src/memmaps.cpp
* patched src/memmaps.h:
Converted memmaps to C++.
2006-11-14 Benoît Dejean <[email protected]>
* src/sysinfo.cpp:
Added Fedora backend.
Patch by Deji Akingunola <[email protected]>.
See bug #374090.
2006-11-13 Benoît Dejean <[email protected]>
* src/gnome-system-monitor.schemas.in:
Fixed schema.
Closes #163396.
2006-11-12 Benoît Dejean <[email protected]>
* configure.in:
Bumped version number to 2.17.3.
2006-11-12 Benoît Dejean <[email protected]>
* src/proctable.c:
Renamed the Arguments column as "Command Line".
Closes #364902.
2006-11-10 Benoît Dejean <[email protected]>
* src/smooth_refresh.c:
Fixed debug output.
2006-11-10 Benoît Dejean <[email protected]>
* src/lsof.cpp:
Added activate signal for search entry.
It may be cool to switch to SexyEntry...
2006-11-09 Benoît Dejean <[email protected]>
* configure.in:
* pixmaps/Makefile.am:
Fixed typo for missing file in tarball.
Released 2.17.2.1.
2006-11-05 Benoît Dejean <[email protected]>
* NEW:
* AUTHORS:
Released 2.17.2.
2006-11-04 Benoît Dejean <[email protected]>
* src/procdialogs.c:
Fixed preferences dialog tab selection.
2006-11-04 Benoît Dejean <[email protected]>
* src/interface.c:
Fixed harmless typo.
2006-11-04 Benoît Dejean <[email protected]>
* src/util.c:
* src/util.h:
* src/openfiles.c:
* src/memmaps.c:
Dropped over-complicated code about i18n.
2006-11-04 Benoît Dejean <[email protected]>
* src/callbacks.c:
* src/interface.c:
* src/interface.h:
* src/proctable.c:
More work on sensitivity.
Fixed "Show Hidden processes" sensitivity.
2006-11-04 Benoît Dejean <[email protected]>
* src/callbacks.c: