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
|
==================== 2.25.90 ======================
==================== 2.25.3 ======================
2008-12-31 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-applet.c: (cpufreq_applet_init): Remove
change_background callback since it's already implemented by
libpanel-applet.
==================== 2.25.2 ======================
2008-12-15 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-applet.c: (cpufreq_applet_update_visibility),
(cpufreq_applet_update), (cpufreq_applet_setup): Fix visibility
when switching between graph and text modes. Based on patch by
Diego Escalante Urrelo. Fixes bug #471988.
2008-12-14 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-applet.c: (cpufreq_applet_init),
(cpufreq_applet_setup): Show the applet when the setup is done
rather than in the init method.
2008-12-14 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-monitor-sysfs.c:
* src/cpufreq-selector/cpufreq-selector-procfs.c:
* src/cpufreq-selector/cpufreq-selector-sysfs.c:
* src/cpufreq-utils.c:
* src/cpufreq-prefs.c:
* src/cpufreq-selector.c:
* src/cpufreq-monitor-procfs.c:
* src/cpufreq-monitor-cpuinfo.c: Fix several compile warnings.
2008-12-14 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-applet.c: (cpufreq_applet_size_request),
(cpufreq_applet_refresh): Fix size requisition. If the applet is
using a vbox in an horixontal panel, the required width is not
labels_width + icon_width but the maximum. Fixes bug #561542.
2008-12-14 Carlos Garcia Campos <carlosgc@gnome.org>
* src/Makefile.am: Explicitly add libgnome flags and libs since
it's needed for gnome-help so that it builds again now.
2008-11-14 Callum McKenzie <callum@spooky-possum.org>
* cpufreq-utils.c:
* cpufreq-popup.c:
* cpufreq-prefs.h:
* cpufreq-applet.c: Patch from Maxim Ermilov to rationalise
GTK includes. See bug 560678.
==================== 2.24.0.1 ====================
2008-08-20 Philipp Kerling <k.philipp@gmail.com>
* Makefile.am: Change mistyped "(DESTDIR)" to "$(DESTDIR)". Partially
fixes bug #547647.
2008-05-25 Carlos Garcia Campos <carlosgc@gnome.org>
* src/Makefile.am:
* src/cpufreq-applet.c:
* src/cpufreq-popup.[ch]:
* src/cpufreq-selector.[ch]:
* src/cpufreq-utils.c:
* src/cpufreq-selector/Makefile.am:
* src/cpufreq-selector/main.c:
* src/cpufreq-selector/cpufreq-selector-factory.[ch]:
* src/cpufreq-selector/cpufreq-selector-service.[ch]:
* src/cpufreq-selector/cpufreq-selector-service.xml:
* src/cpufreq-selector/org.gnome.CPUFreqSelector.conf:
* src/cpufreq-selector/org.gnome.CPUFreqSelector.service.in:
* src/cpufreq-selector/org.gnome.cpufreqselector.policy.in:
Use PolicyKit when available in the cpufreq-selector instead of
installing it with suid bit enabled. Fixes bug #528536.
2008-03-16 Callum McKenzie <callum@spooky-possum.org>
* cpufreq-preferences.ui
* src/cpufreq-prefs.c
* src/cpufreq-applet.c
* Makefile.am: Convert from glade to gtk-builder. Patch from Jaap
Haitsma (bug #521082).
2008-02-10 Kjartan Maraas <kmaraas@gnome.org>
* src/cpufreq-utils.c: (cpufreq_file_get_contents): signed vs unsigned
fix.
2007-12-19 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-utils.c: (cpufreq_utils_selector_is_available):
* src/cpufreq-monitor-procfs.c:
(cpufreq_monitor_procfs_get_freq_from_userspace):
Two more memory leaks fixed by <kripkensteiner@gmail.com>. Fixes
bug #504489.
2007-12-19 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-popup.c: (cpufreq_popup_run_selector):
Fix memory leak. Fixes bug #504435. Patch by
<kripkensteiner@gmail.com>.
2007-07-17 Jaap Haitsma <jaap@haitsma.org>
* GNOME_CPUFreqApplet.xml: Use gtk-about i.s.o. gnome-stock-about
Fixes bug #456955
* src/cpufreq-applet.c: (cpufreq_applet_init),
(cpufreq_applet_destroy), (cpufreq_applet_about_cb),
(cpufreq_applet_update), (cpufreq_applet_setup):
Use g_set_application name such that the application name
gets shown correctly in the about dialog. Convert usage of GtkTooltips
to new tooltips API of GTK 2.12 Fixes bug #457145
2007-07-14 Callum McKenzie <callum@spooky-possum.org>
* pixmaps/Makefile.am (install-data-local): Use = instead of ==
for comparisons to make the scripts work on BSD. See bug #456701.
2007-01-18 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-monitor-sysfs.c:
* src/cpufreq-monitor-procfs.c:
* src/cpufreq-monitor-libcpufreq.c:
* src/cpufreq-monitor.c:
Do not stop run timeout callback when a cpu is not online. It happens
on suspend/resume. Fixes bug #356694.
2006-12-16 Carlos Garcia Campos <carlosgc@gnome.org>
* cpufreq-applet.schemas.in:
* cpufreq-preferences.glade:
* src/cpufreq-applet.[ch]:
* src/cpufreq-monitor.[ch]:
* src/cpufreq-popup.c:
* src/cpufreq-prefs.[ch]:
Rework popup menu layout by merging frequencies and governors menu
into a single menu. Fixes bug #380314.
2006-11-21 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-applet.c:
Request a fixed size for the whole applet. Fixes bug #318700. (Based
on patch by Maik Beckmann)
* src/cpufreq-monitor-cpuinfo.c:
* src/cpufreq-monitor-libcpufreq.c:
* src/cpufreq-monitor-procfs.c:
* src/cpufreq-monitor-sysfs.c:
* src/cpufreq-utils.h:
Fix compile warnings.
2006-11-18 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-prefs.c:
Never return a cpu number higher than max cpu. Fixes bug #376621.
2006-11-15 Kjartan Maraas <kmaraas@gnome.org>
* help/C/cpufreq-applet.xml: Fix the build.
2006-10-03 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-applet.c:
Update cpufreq-monitor when cpu changes on SMP systems.
2006-08-21 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-applet.c:
Use new icon in about dialog.
2006-06-20 Paolo Borelli <pborelli@katamail.com>
* src/cpufreq-applet.c: do not leak GList.
2006-08-17 Saleem Abdulrasool <compnerd@gentoo.org>
* src/cpufreq-selector/Makefile.am:
Ensure cpufreq-selector is built without lazy bindings. Fixes bug
#351695
2006-08-09 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-monitor-cpuinfo.c:
* src/cpufreq-monitor-libcpufreq.c:
* src/cpufreq-monitor-procfs.c:
* src/cpufreq-monitor-sysfs.c:
* src/cpufreq-utils.c:
Reduce the number of files read each second. Use a custom version of
g_file_get_contents since it seems it's a bit overkill. Fixes bug
#349264
2006-06-17 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-monitor-factory.h:
* src/cpufreq-monitor-procfs.h:
* src/cpufreq-monitor-sysfs.h:
* src/cpufreq-monitor.h:
* src/cpufreq-selector/cpufreq-selector-procfs.h:
* src/cpufreq-selector/cpufreq-selector-sysfs.h:
Added missing G_BEGIN_DECLS and G_END_DECLS
* src/cpufreq-selector/Makefile.am:
* src/cpufreq-selector/cpufreq-selector-libcpufreq.[ch]: Added
* src/cpufreq-selector/main.c:
Use libcpufreq also in cpufreq-selector when available. Fixes bug
#159119
2006-06-17 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-monitor.c: code cleanups
* src/cpufreq-selector/Makefile.am:
* src/cpufreq-selector/cpufreq-selector-procfs.[ch]:
* src/cpufreq-selector/cpufreq-selector-sysfs.[ch]:
* src/cpufreq-selector/cpufreq-selector.[ch]:
* src/cpufreq-selector/main.c:
Rework cpufreq-selector. Fixes bugs #344393, #344400.
2006-06-15 Carlos Garcia Campos <carlosgc@gnome.org>
* src/Makefile.am:
* src/cpufreq-monitor-factory.c:
* src/cpufreq-monitor-libcpufreq.[ch]: Added
Use libcpufreq when available
2006-06-14 Carlos Garcia Campos <carlosgc@gnome.org>
* Makefile.am: Don't install gconf schemas when
--disable-schemas-install is used. Fixes bug #344102
2006-06-14 Carlos Garcia Campos <carlosgc@gnome.org>
* src/Makefile.am:
* src/cpufreq-applet.[ch]:
* src/cpufreq-monitor-protected.h: Removed
* src/cpufreq-utils.[ch]: Added
* src/cpufreq-monitor.[ch]:
* src/cpufreq-monitor-cpuinfo.[ch]:
* src/cpufreq-monitor-procfs.[ch]:
* src/cpufreq-monitor-sysfs.[ch]:
* src/cpufreq-monitor-factory.c:
* src/cpufreq-popup.[ch]:
* src/cpufreq-prefs.[ch]:
Rework almost the whole applet in order to make it simpler and more
OO. Fixes bugs #336449, #338557. Lots of code cleanups.
2006-05-28 Carlos Garcia Campos <carlosgc@gnome.org>
* help/C/cpufreq-applet.xml: Fix a typo. Patch from Benoît Turpin.
Fixes bug #343138.
2006-04-13 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-popup.c: Fix compile warning
2006-04-13 Marinus Schraal <foser@gentoo.org>
* src/cpufreq-applet.c: Show frequency or percentage at startup based
on user configuration instead of always showing frequency. Fixes bug
#338367
2006-04-08 Sandino Flores-Moreno <tigrux@gmail.com>
* src/cpufreq-popup.c: Call cpufreq-selector specifying the monitored
cpu. Fixes bug #337578
2006-03-26 Sebastien Bacher <seb128@debian.org>
* src/cpufreq-selector/Makefile.am:
clean not required -lpopt build option, the applets use GOption
2005-12-20 Dennis Cranston <dennis_cranston@yahoo.com>
* cpufreq-preference.glade: HIG fix, do not use frames.
Also, replace the awkword "Show in mode" phrase with "Appearance".
2005-09-28 Ryan Lortie <desrt@desrt.ca>
* help/Makefile.am: add DOC_FIGURES list to get .png's into the
tarball. Closes bug #317476.
2005-09-05 Ryan Lortie <desrt@desrt.ca>
* help/C/cpufreq-applet.xml: Last minute fixes to prevent failing
make distcheck. Also, s/([Gg])overner/\1overnor/g.
2005-09-01 Ryan Lortie <desrt@desrt.ca>
* src/cpufreq-selector/cpufreq-sysfs.c: Fix a regression caused
by Carlos's last patch. Recloses bug #313550. Hard code freeze
break ack'd by Luis and Vincent.
2005-08-20 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-selector/cpufreq-sysfs.c: Use g_file_get_contents so
that we don't need fixed buffers anymore
2005-08-20 Ryan Lortie <desrt@desrt.ca>
* src/cpufreq-selector/cpufreq-sysfs.c (cpufreq_sysfs_get_setting,
cpufreq_sysfs_get_governor, cpufreq_sysfs_get_govs,
cpufreq_sysfs_get_freqs):
* src/cpufreq-selector/cpufreq-procfs.c (cpufreq_procfs_setup):
Remove arbitrary limit of 4 governors in cpufreq_sysfs_get_govs.
Closes bug #313550.
Use sizeof with fgets instead of hard-coding buffer sizes.
Further future-proof the code by expanding all read buffers
to 1024 bytes.
2005-07-21 Ryan Lortie <desrt@desrt.ca>
* cpufreq-applet.schemas.in: gconf key description cleanup (bug #310484)
2005-07-20 Davyd Madeley <davyd@madeley.id.au>
* docs/*: Remove lots of unwanted files. XML files still need
converting to po files.
2005-07-19 Danilo Šegan <danilo@gnome.org>
* help/Makefile.am: Added.
* help/cpufreq-applet.omf.in: Added.
* help/C/Makefile.am: Removed.
* help/C/cpufreq-applet.xml: Add <abstact role="description">.
2005-07-13 Benoît Dejean <TazForEver@dlfp.org>
* src/cpufreq-applet.c: (cpufreq_applet_about_cb):
* src/cpufreq-applet.h:
* src/cpufreq-monitor-cpuinfo.c: (cpufreq_monitor_cpuinfo_get):
* src/cpufreq-monitor-cpuinfo.h:
* src/cpufreq-monitor-procfs.c: (cpufreq_monitor_procfs_parse):
* src/cpufreq-monitor-procfs.h:
* src/cpufreq-monitor-sysfs.h:
* src/cpufreq-monitor.h:
* src/cpufreq-prefs.c: (cpufreq_prefs_cpu_combo_setup):
* src/cpufreq-selector/cpufreq-procfs.h:
* src/cpufreq-selector/cpufreq-sysfs.c:
* src/cpufreq-selector/cpufreq-sysfs.h:
* src/cpufreq-selector/cpufreq.h:
* src/cpufreq-selector/main.c: (main):
Fixed typo that breaks the build.
G_GNUC_CONST'ified *_get_type();
Marked const some strings.
Fixed signedness warnings.
Added missing #include.
2005-07-02 Johannes Berg <johannes@sipsolutions.net>
* src/cpufreq-selector/cpufreq-sysfs.c: Use cpu_min/cpu_max as the
only available frequencies if the scaling_available_frequencies file
is not found
2005-05-10 Davyd Madeley <davyd@madeley.id.au>
* GNOME_CPUFreqApplet.server.in.in: Remove panel:category OAF
attribute as it's not actually needed.
2005-04-05 Dennis Cranston <dennis_cranston@yahoo.com>
* cpufreq-applet.c: (cpufreq_applet_display_error): Make the error
dialogs non-blocking. Includes minor HIG fixes.
2005-04-05 Carlos Garcia Campos <carlosgc@gnome.org>
* cpufreq-preferences.glade: Fix HIG regressions of the previuos
commit. Fixes #172667
2005-04-04 Carlos Garcia Campos <carlosgc@gnome.org>
* cpufreq-applet.schemas.in: Add selector_mode key for configuring
the frequency selector drop down menu
* cpufreq-preferences.glade: Add frequency selector configuration
* src/cpufreq-applet.[ch]:
* src/cpufreq-monitor-protected.h:
* src/cpufreq-monitor-sysfs.[ch]:
* src/cpufreq-monitor.[ch]:
* src/cpufreq-popup.c:
* src/cpufreq-prefs.c: Add support to change the governor in the
frequency selector drop down menu. Fixes #164581
2005-03-31 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-selector/main.c: Free GError var after use it.
2005-03-31 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-selector/main.c:
* src/cpufreq-selector/Makefile.am: Use GOption instead of
libpopt
* src/cpufreq-selector/*.[ch]: Clean up tabs
2005-03-28 Carlos Garcia Campos <carlosgc@gnome.org>
* help/C/cpufreq-applet.xml: Fixed a typo in my email.
Feedback section points now to the GNOME Feedback Page instead of to
my email.
* src/cpufreq-applet.c: Added Davyd to documenters in about dialog
2005-03-16 Kjartan Maraas <kmaraas@gnome.org>
* src/cpufreq-applet.h:
* src/cpufreq-popup.h:
* src/cpufreq-prefs.h: Clean up includes.
2005-03-13 Davyd Madeley <davyd@madeley.id.au>
* help/C/figures/cpufreq-applet-selector.png: Updated image.
2005-03-07 Davyd Madeley <davyd@madeley.id.au>
* docs/C/Makefile.am: Add new figures, remove old ones.
2005-03-07 Davyd Madeley <davyd@madeley.id.au>
* docs/C/figures: Remove old figures, add new ones.
* docs/C/cpufreq-applet.xml: Update for GNOME 2.10.
2005-02-27 Ryan Lortie <desrt@desrt.ca>
* src/cpufreq-applet.c: Don't leak style while handling the
change_background signal. Fix adapted from Vincent Untz's fixes
to various panelapplets.
2005-02-24 Kjartan Maraas <kmaraas@gnome.org>
* src/cpufreq-applet.c: (cpufreq_applet_get_max_cpu): ANSIfication
* src/cpufreq-monitor-procfs.c: (cpufreq_monitor_procfs_get_type):
ANSIfication, return NULL, not FALSE from some functions.
* src/cpufreq-monitor-sysfs.c: (cpufreq_monitor_sysfs_get_type),
(cpufreq_monitor_sysfs_get_available_frequencies): Same as above
and add some missing headers.
* src/cpufreq-monitor.c: (cpufreq_monitor_get_type): Same
* src/cpufreq-popup.c: (cpufreq_popup_selector_is_available): Same
* src/cpufreq-selector/cpufreq-procfs.c: (cpufreq_procfs_get_type),
(cpufreq_procfs_new): Same
* src/cpufreq-selector/cpufreq-sysfs.c: (cpufreq_sysfs_get_type),
(cpufreq_sysfs_new): Same
* src/cpufreq-selector/cpufreq.c: (cpufreq_get_type): Same
2005-02-11 Carlos Garcia Campos <carlosgc@gnome.org>
* src/*.[ch]:
* src/cpufreq-selector/*.[ch]: fixed copyright information. Fixes
#166741
2005-01-20 Carlos Garcia Campos <carlosgc@gnome.org>
* pixmaps/cpufreq-25.png:
* pixmaps/cpufreq-50.png:
* pixmaps/cpufreq-75.png:
* pixmaps/cpufreq-100.png:
* pixmaps/cpufreq-na.png: Use the new icons instead
2005-01-11 Davyd Madeley <davyd@madeley.id.au>
* src/cpufreq-applet.c: Make GtkAboutDialog appear in the centre of
the screen.
2005-01-01 Davyd Madeley <davyd@madeley.id.au>
* src/cpufreq-monitor-cpuinfo.c:
* src/cpufreq-monitor-procfs.c:
* src/cpufreq-monitor-sysfs.c: Reorder headers to allow things to
compile.
2004-12-27 Carlos Garcia Campos <carlosgc@gnome.org>
* cpufreq-monitor.c: emit the changed signal when the cpu attribute
changes
2004-12-27 Carlos Garcia Campos <carlosgc@gnome.org>
* src/Makefile.am, src/cpufreq-selector/Makefile.am: compile with all
warnings
* src/cpufreq-applet.c, src/cpufreq-monitor-cpuinfo.c,
src/cpufreq-monitor-factory.c, src/cpufreq-monitor-procfs.c,
src/cpufreq-monitor.c: fix some compiling warnings
* src/cpufreq-applet.c: remember preferences
2004-12-24 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-applet.c: use gchar * instead fo gchar as type for the
cname parameter in BonoboUIVerb callbacks
2004-12-24 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-monitor-*.[ch]: files added
* src/cpufreq.[ch]: files removed
* src/*.[ch]: rewrite the whole applet with a new code design based on
an object oriented model. Migrate from gnome_about o gtk_about. Some
code cleanups.
2004-12-20 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq.c: check if /proc/cpufreq is parsed correctly. Fixes bug
#161244
2004-11-25 Carlos Garcia Campos <carlosgc@gnome.org>
* cpufreq/GNOME_CPUFreqApplet.server.in.in: Add bugzilla information
2004-11-20 Dennis Cranston <dennis_cranston@yahoo.com>
* src/cpufreq-applet.[ch]: Use HIG compliant alert dialogs.
Support primary and secondary message text. Cleanup alert
dialog text. Cleanup tooltip text.
* src/cpufreq-prefs.c: Cleanup alert dialog text.
2004-11-21 Dennis Cranston <dennis_cranston@yahoo.com>
* GNOME_CPUFreqApplet.xml: Remove '...' from Preferences and About
menu items.
* cpufreq-preferences.glade: HIGify the preference dialog. Fix widget
padding, use correct capitalization, and add mnemonics.
2004-11-13 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-applet.c, cpufreq-prefs.c: fix typo bug
2004-11-09 Davyd Madeley <davyd@madeley.id.au>
* src/cpufreq-applet.c: Support panel translucency.
2004-11-08 Carlos Garcia Campos <carlosgc@gnome.org>
* Moved gnome-cpufreq-applet to gnome-applet CVS module
2004-11-01 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-applet.c, cpufreq-prefs.c: marked some strings as
translatable
2004-11-01 Carlos Garcia Campos <carlosgc@gnome.org>
* configure.in: added a summary report at the end of the configure
script
2004-10-28 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Add «nb» to ALL_LINGUAS.
2004-10-28 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-applet.[ch], src/cpufreq.c: run the applet in cpuinfo
mode when /sys is not mounted and /proc/cpufreq exists, but contains
only the header
2004-10-06 Carlos Garcia Campos <carlosgc@gnome.org>
* Released 0.3.1
2004-10-05 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq.c, src/cpufreq-selector/cpufreq-sysfs.c: there could be
duplicated entries in scaling_available_frequencies. Created the
list without duplicated entries
2004-10-04 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-selector/cpufreq-sysfs.c: not always use
scaling_cur_freq
2004-10-04 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-prefs.c: set the right option in preferences dialog when
switching between modes
2004-10-04 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-applet.[ch]: uses size_allocate instead of
change_size and some improvements in applet resizing
2004-10-04 Carlos Garcia Campos <carlosgc@gnome.org>
* README: filled
2004-10-03 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-selector/main.c: removed stupid debug function
2004-10-02 Carlos Garcia Campos <carlosgc@gnome.org>
* Released 0.3
2004-10-02 Dominik Brodowski <linux@domninikbrodowski.de>
* cpufreq-applet.[ch], cpufreq.c: allow for different, new governors.
Proper support for ->setpolicy() style drivers still missing. Use
scaling_cur_freq for determining current CPU frequency when it's
necessary
2004-10-01 Carlos Garcia Campos <carlosgc@gnome.org>
* help/C/gnome-cpufreq-applet.xml: added documentation for the
frequency selector
* help/C/figures/cpufreq-applet-selector.png: Frequency selector
screenshot
2004-10-01 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-selector/Makefile.am: DESTDIR in front of bindir in
install-exec-hook
2004-10-01 Carlos Garcia Campos <carlosgc@gnome.org>
* configure.in, src/cpufreq-selector/*, src/Makefile.am: adeed
frequency selector command line tool
* gnome-cpufreq-applet.spec.in: updated source and URL
* src/Makefile.am, src/cpufreq-popup.[ch], src/cpufreq-applet.[ch]:
popup menu to select the frequency
* src/cpufreq.[ch]: in procfs and userspace governor get the
frequency from /proc/sys/cpu/*/speed. Added functions to get the
avaible frequencies
2004-09-18 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-prefs.c: in a single cpu system not show the cpu number
in te tooltip
2004-08-26 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-prefs.c: greyed out the toggle buttons in the
preferences dialog when the applet is in only graphic mode (fixes bug
reported by Alan Swanson)
2004-08-14 Hendrik Brandt <hebra@cvs.gnome.org>
* configure.in: add "de" to ALL_LINGUAS
* po/de.po: add German translation
2004-06-22 Carlos Garcia Campos <carlosgc@gnome.org>
* Released 0.2.1
2004-07-17 Stephen J. Smith <sjs@khadrin.com>
* src/Makefile.am, src/cpufreq-applet.c,
src/GNOME_CPUFreqApplet.server.in.in: improved the installation in
a non /usr prefix (like /usr/local)
2004-06-19 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-applet.c: A not initialized variable made the gnome
panel unusable.
2004-06-14 Carlos Garcia Campos <carlosgc@gnome.org>
* Released 0.2
2004-06-14 Carlos Garcia Campos <carlosgc@gnome.org>
* help/C/gnome-cpufreq-applet.xml: updated help
* src/cpufreq-applet.c: used gdk_pixbuf_new_from_file_at_size instead
of gdk_pixbuf_new_from_file
2004-05-13 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-applet.c, src/cpufreq-prefs.c,
src/cpufreq-preferences.glade: added a new combo box for display
modes: Graphic, Text and Both. Now you can hide the icon if you
want, setting it in text mode.
* src/cpufreq-applet.c, src/cpufreq-prefs.c,
src/cpufreq-preferences.glade: Ported to gtk+ 2.4
* configure.in: we need gtk+ >= 2.4 and libpanel >= 2.5
2004-05-11 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-applet.c: improve the behaviour of the applet
when the panel is resized
* src/cpufreq-applet.c: added support for panel backgrounds changes.
Doesn't support pixmap panels yet
2004-05-10 Carlos Garcia Campos <carlosgc@gnome.org>
* Released 0.1.3
2004-05-09 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-applet.c, src/cpufreq.c, src/cpufreq-prefs.c: fixed some
memory leaks
2004-03-30 Edwin Olson <eolson@MIT.EDU>
* src/cpufreq.c: more robust /proc/cpufreq parsing
2004-03-28 Carlos Garcia Campos <carlosgc@gnome.org>
* Released 0.1.2
2004-03-28 Hans Ulrich Niedermann <hun@n-dimensional.de>
* src/cpufreq-preferences.glade: Not "CPU usage", but "CPU frequency".
Adapted the preferences dialog accordingly.
2004-03-27 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-applet.c: added "Graphic Arts" and documenters to credits
2004-03-27 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-applet.[ch], src/cpufreq.c, src/cpufreq-prefs.c: added
"show units" option in frequency mode (Suggested by Hans Ulrich
Niedermann)
* src/cpufreq-preferences.glade, cpufreq-applet.schemas.in: updated
preferences ui and gconf schemas for the new "show frequency units" option
2004-03-05 Alain Perry <sensei@quarkup.org>
* src/cpufreq-applet.c: checks if something went wrong when load
preferences from gconf when a new applet is created in order to set
the default setting.
2004-03-04 Carlos Garcia Campos <carlosgc@gnome.org>
* configure.in: added "fr" to all linguas variable
2004-03-03 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-applet.c: loads preferences from gconf when a new
applet is created. Fixes bug reported by Thomas de Grenier de Latour.
2004-03-02 Carlos Garcia Campos <carlosgc@gnome.org>
* Released 0.1.1
2004-02-28 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq-applet.[ch]: used GdkPixbufs in applet struct in order
to keep the pixmaps in memory instead of disk to avoid disk accesses
in each iteration.
2004-02-24 Carlos Garcia Campos <carlosgc@gnome.org>
* src/cpufreq.c, src/cpufreq-applet.c: when there is no cpufreq
support the applet will show the current cpu frequency.
2004-02-24 Christopher Parker <chris.parker@marinerhealthcare.com>
* src/cpufreq.[ch]: added a function to get the current cpu frequency
from /proc/cpuinfo
2004-02-24 Carlos Garcia Campos <carlosgc@gnome.org>
* gnome-cpufreq-applet.spec.in: made some changes that
Sandino Flores Moreno <tigrux@ximian.com> suggested
2004-02-23 Carlos Garcia Campos <carlosgc@gnome.org>
* configure.in: added "eu" to all linguas variable
2004-02-23 Paolo Gai <pj@sssup.it>
* src/cpufreq-applet.c: added support for userspace
governor
2004-02-23 Ondrej Sury <ondrej@debian.org>
* src/cpufreq-applet.h, src/cpufreq.c: added support for userspace
governor
2004-02-23 Carlos Garcia Campos <carlosgc@gnome.org>
* Initial release
|