summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 3a65de541f68a57de60953f0f9466052388b616c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
2008-10-12 10:34  kelnos

	* xfconf/xfconf-channel.c: make xfconf_channel_get_property() also
	  transform array values

2008-10-12 09:03  kelnos

	* NEWS, xfconf/xfconf-channel.c: fix xfconf_channel_get_property()
	  so it converts value types properly if
	  the caller requests it

2008-10-12 07:52  kelnos

	* NEWS: update NEWS

2008-10-12 07:45  kelnos

	* xfconf-query/main.c: fix a bunch of strings

2008-10-12 07:45  kelnos

	* xfconf-query/main.c: add option to force creation of array prop
	  even if only one value

2008-10-12 07:45  kelnos

	* xfconf-query/main.c: use g_set_error(), not g_error_new(), mark
	  some more strings as i18n-able,
	  make stuff more portable

2008-10-10 21:31  sas

	* po/LINGUAS, po/hu.po: [intl:hu] ops

2008-10-09 09:32  kelnos

	* xfconf/xfconf-binding.c: add similar remove checking to the
	  gdkcolor binding

2008-10-09 09:28  kelnos

	* xfconf/xfconf-binding.c: ... and fix a possible memleak i just
	  introduced

2008-10-09 09:25  kelnos

	* xfconf/xfconf-binding.c: if a bound property is removed, try to
	  reset the GObject property to its default

2008-10-08 00:06  jannis

	* xfconf/xfconf-binding.c, xfconf/xfconf-binding.h: Use gpointer
	  instead of GObject* in the parameters of binding functions.

2008-10-07 14:57  stephan

	* xfconf-query/main.c: Add -R option (recursive) for use with
	  --reset

2008-10-07 04:46  kelnos

	* xfconfd/xfconf-backend-perchannel-xml.c: whoops, plug memleak i
	  just introduced

2008-10-07 04:43  kelnos

	* NEWS: the alpha needs some NEWS too

2008-10-07 04:39  kelnos

	* NEWS: update NEWS

2008-10-07 04:23  kelnos

	* xfconfd/xfconf-backend-perchannel-xml.c: fix incorrect property
	  names sent with the PropertyRemove signal

2008-10-07 03:47  kelnos

	* xfconfd/xfconf-backend-perchannel-xml.c: fix crash when resetting
	  multiple properties

2008-10-05 19:27  jannis

	* configure.ac.in: Add svn version tag again.

2008-10-02 02:53  jannis

	* xfconf/xfconf.c: Fix reference counting in xfconf_shutdown():
	  Don't drop to zero before
	  calling _xfconf_channel_shutdown(). Allow xfconf_shutdown() to be
	  called
	  repeatedly without breaking things.

2008-09-29 20:11  lars

	* po/ChangeLog, po/LINGUAS, po/da.po: * da.po: Danish translation
	  * LINGUAS: Added the Danish language
	  

2008-09-29 06:07  kelnos

	* xfconf/xfconf-channel.c: fix warning in _finalize() if singletons
	  hashtable hasn't been created yet

2008-09-29 04:55  stephan

	* configure.ac.in: re-add profiling flag to configure.ac.in

2008-09-28 13:34  stephan

	* TODO, configure.ac.in, xfconf-query/main.c: Update TODO
	  Remove profiling-switch from configure.ac.in
	  Update xfconf-query to use the new 'Reset' function in favour of
	  the deprecated 'remove'.

2008-09-28 10:52  kelnos

	* xfconfd/xfconf-backend-perchannel-xml.c: cosmetic: remove extra
	  space in xml output

2008-09-28 10:45  kelnos

	* common/xfconf-gvaluefuncs.c, common/xfconf-gvaluefuncs.h,
	  xfconfd/xfconf-backend-perchannel-xml.c: avoid emitting
	  PropertyChanged when a property is set to the same value
	  
	  not handling any array types yet, though

2008-09-28 10:17  kelnos

	* xfconfd/xfconf-daemon.c: use same string for perms denied error

2008-09-28 10:14  kelnos

	* xfconfd/xfconf-daemon.c: clarify code a bit

2008-09-28 10:01  kelnos

	* common/xfconf-dbus.xml, docs/reference/tmpl/xfconf-backend.sgml,
	  docs/reference/tmpl/xfconf-unused.sgml,
	  docs/reference/xfconf-sections.txt, xfconf/xfconf-channel.c,
	  xfconfd/xfconf-backend-perchannel-xml.c,
	  xfconfd/xfconf-backend.c, xfconfd/xfconf-backend.h,
	  xfconfd/xfconf-daemon.c: rename RemoveProperty() to
	  ResetProperty() all over the place
	  
	  might as well just bite the bullet and do this. no incompat
	  library
	  changes, but xfconfd will need to be restarted (usually) after
	  installing this version. i just want everything to be as clean
	  and
	  legacy-free as possible when we get to 4.6.0 final...

2008-09-28 10:00  kelnos

	* common/xfconf-dbus.xml, docs/reference/tmpl/xfconf-backend.sgml,
	  docs/reference/tmpl/xfconf-channel.sgml,
	  docs/reference/xfconf-sections.txt, xfconf/xfconf-channel.c,
	  xfconf/xfconf-channel.h, xfconf/xfconf.symbols,
	  xfconfd/xfconf-backend-perchannel-xml.c,
	  xfconfd/xfconf-backend.c, xfconfd/xfconf-backend.h,
	  xfconfd/xfconf-daemon.c: add and implement IsPropertyLocked()
	  dbus method, add libxfconf getter
	  
	  this is buggy right now because the perchannel-xml backend
	  doesn't
	  handle locking properly at all. bug fixes forthcoming.

2008-09-27 00:20  kelnos

	* common/xfconf-dbus.xml, xfconfd/xfconf-daemon.c: clarify
	  RemoveProperty() dbus method description.
	  remove org.xfce.Xfconf.GUI dbus interface since it's stupid and i
	  never
	  really implemented it anyway.

2008-09-25 21:05  stephan

	* configure.ac.in, docs/Makefile.am, docs/xfsettingsd: Remove
	  xfsettingsd docs

2008-09-22 20:59  kelnos

	* configure.ac.in, docs/reference/Makefile.am,
	  docs/reference/tmpl/xfconf-channel.sgml,
	  docs/reference/xfconf-sections.txt, xfconf/xfconf-channel.c,
	  xfconf/xfconf-channel.h, xfconf/xfconf-private.h,
	  xfconf/xfconf.c, xfconf/xfconf.symbols: add xfconf_channel_get()
	  and xfconf_channel_reset_property().
	  
	  deprecate xfconf_channel_remove_property() and
	  xfconf_channel_remove_properties(). increase libtool interface
	  version
	  and age.

2008-09-22 20:59  kelnos

	* xfconf/xfconf-binding.c: fix docs for
	  xfconf_g_property_bind_gdkcolor()

2008-09-16 01:01  kelnos

	* po/POTFILES.in, po/de.po, po/fi.po, po/fr.po, po/pt_BR.po,
	  po/xfconf.pot: fix POTFILES, remove old strings moved to
	  xfce4-settings package

2008-09-15 21:53  stephan

	* Makefile.am: Fix makefile

2008-09-15 21:50  stephan

	* configure.ac.in, po/fi.po, po/fr.po, po/pt_BR.po, xfsettingsd:
	  Remove xfsettingsd in favor of xfce4-settings

2008-09-12 18:36  kelnos

	* xfconf/xfconf-channel.c, xfconf/xfconf-channel.h: ok, this is the
	  more or less correct way to declare that param, thanks
	  to jannis for his help.
	  
	  yes, i'm way to nitpicky about this, and i should just not care.

2008-09-12 06:05  kelnos

	* xfconf/xfconf-channel.c, xfconf/xfconf-channel.h: whoops, "const
	  gchar **" certainly isn't right... -> "gchar * const *"

2008-09-10 10:35  kelnos

	* xfsettingsd/registry.c: don't use 1024 scaling factor on Xft/DPI
	  when it's -1

2008-09-09 18:56  jannis

	* xfsettingsd/registry.c: Multiply the DPI property (and only this
	  property!) with 1024 prior to
	  calling XChangeProperty().

2008-09-09 07:38  maximilian

	* po/ChangeLog, po/fr.po: Translations updates and new ones for
	  trunk in es,fr,id

2008-09-08 21:29  kelnos

	* xfconf/xfconf-channel.c: fix typo with crash when prop removed

2008-09-08 08:42  jari

	* po/ChangeLog, po/fi.po: Update Finnish translations

2008-09-07 18:42  omaciel

	* po/ChangeLog, po/pt_BR.po: Updated Brazilian Portuguese
	  translation.

2008-09-07 06:32  kelnos

	* ChangeLog: update changelog

2008-09-07 06:31  kelnos

	* xfconf-gtk: rm unused dir

2008-09-07 06:18  kelnos

	* xfconf/xfconf-channel.c: fix crash when setting an array property
	  when the arr items *don't* have int16s

2008-09-07 06:18  kelnos

	* configure.ac.in: clean up unused old stuff

2008-09-05 23:43  stephan

	* ChangeLog: Update ChangeLog

2008-09-05 23:00  stephan

	* configure.ac.in: Bump libxfce4util deb version

2008-09-05 22:22  stephan

	* configure.ac.in, po/de.po, po/fi.po, po/fr.po, po/pt_BR.po,
	  po/xfconf.pot: Remove -svn tag
	  Remove xfce 4.6 alpha tag
	  update .po files

2008-09-03 22:26  stephan

	* xfconf-query/main.c: Add filename selection for --import and
	  --export functions... still need implementations though

2008-09-02 18:39  maximilian

	* po/ChangeLog, po/LINGUAS, po/de.po, po/fi.po, po/fr.po,
	  po/pt_BR.po: Translation update for Trunk in xfconf and Branch
	  4.4 in mousepad, mcs-manager

2008-08-31 07:41  kelnos

	* xfconfd/xfconf-backend-perchannel-xml.c: fix fetching properties
	  rooted at something other than /

2008-08-30 20:46  jannis

	* autogen.sh: Don't print errors when trying to determine the
	  revision of a git svn
	  repository.

2008-08-27 10:15  kelnos

	* docs/reference/tmpl/xfconf-binding.sgml,
	  docs/reference/xfconf-sections.txt, xfconf/xfconf-binding.c,
	  xfconf/xfconf-binding.h, xfconf/xfconf.symbols: add
	  xfconf_g_property_bind_gdkcolor(), a nifty hack
	  
	  it binds the red/green/blue members of the GdkColor struct to an
	  xfconf
	  property without getting that pesky first 'pixel' struct member
	  in the
	  way

2008-08-27 10:15  kelnos

	* xfconf/xfconf-channel.c: fix 16bit int handling when set with
	  xfconf_channel_set_property()

2008-08-25 07:41  kelnos

	* xfconf/xfconf-channel.h, xfconf/xfconf.h: add some
	  G_GNUC_WARN_UNUSED magic

2008-08-17 20:06  stephan

	* configure.ac.in: Version bump

2008-08-17 20:05  stephan

	* configure.ac.in: Fix configure.ac.in (with ALPHA version number)

2008-08-17 19:51  stephan

	* configure.ac.in: Bump version number

2008-08-17 19:50  stephan

	* configure.ac.in, po/fi.po, po/pt_BR.po: Bump version number
	  update po files

2008-08-14 11:45  jari

	* po/ChangeLog, po/LINGUAS, po/fi.po: Added Finnish translation.

2008-08-10 20:32  nick

	* common/xfconf-dbus.xml, xfconf/Makefile.am: * Use
	  org.freedesktop.DBus.GLib.ClientCSymbol.

2008-08-07 20:39  nick

	* xfconf/xfconf.c: xfconf/xfconf.c: Lazy initialize the hash table,
	  since named
	  structures are not used often. Use the slice allocator for the
	  structures. Print critical warning when the named structure
	  is already registered. Bug #4267.

2008-08-01 19:06  nick

	* xfsettingsd/registry.c: * Fix my previous commit. Apparently a
	  static name
	  should also be a canonical name...

2008-07-30 18:32  nick

	* xfconf/xfconf-binding.c: * Tiny optimization. We can assume we
	  normally only bind
	  1 property to an object. g_slist_prepend avoids a check
	  inside glib.

2008-07-29 19:42  nick

	* xfconf/xfconf-channel.c: Use g_value_dup_string string here.

2008-07-29 19:40  nick

	* xfsettingsd/registry.c: Don't copy the parameter names here too.
	  Grouped the
	  param's since they're all the same, so this is more readable.

2008-07-29 19:35  nick

	* xfconf/xfconf-channel.c: Don't copy the parameter name, nick and
	  blurb. They
	  will always remain valid and unmodified.

2008-07-29 19:26  nick

	* docs/reference/tmpl/xfconf-binding.sgml,
	  docs/reference/xfconf-sections.txt, xfconf/xfconf-binding.c,
	  xfconf/xfconf-binding.h, xfconf/xfconf.symbols: Implement
	  xfconf_g_property_unbind_all(GObject *object),
	  see Bug #4252.

2008-07-29 04:57  kelnos

	* common/xfconf-dbus.xml, configure.ac.in,
	  docs/reference/tmpl/xfconf-backend.sgml,
	  docs/reference/xfconf-sections.txt, tests/Makefile.am,
	  tests/list-channels, tests/list-channels/Makefile.am,
	  tests/list-channels/t-list-channels.c, xfconf-query/main.c,
	  xfconf/xfconf-binding.c, xfconf/xfconf-channel.c,
	  xfconf/xfconf.h, xfconf/xfconf.symbols,
	  xfconfd/xfconf-backend-perchannel-xml.c,
	  xfconfd/xfconf-backend.c, xfconfd/xfconf-backend.h,
	  xfconfd/xfconf-daemon.c: add ListChannels() method to dbus iface
	  and xfconf_list_channels()

2008-07-28 21:11  nick

	* ChangeLog, common/xfconf-common-private.h, configure.ac.in,
	  xfconf/xfconf-binding.c, xfconf/xfconf-channel.c,
	  xfconfd/xfconf-backend-perchannel-xml.c, xfconfd/xfconf-daemon.c:
	  * configure.ac.in: Bump glib dependency to 2.12.0.
	  * xfconf/xfconf-channel.c, xfconf/xfconf-binding.c,
	  xfconfd/xfconf-backend-perchannel-xml.c,
	  xfconfd/xfconf-daemon.c, common/xfconf-common-private.h:
	  Use GSList where possible. Use the slice allocator where
	  possible (therefore the 2.12.0 dependency). Use
	  g_intern_static_string() in g_signal_new and
	  g_object_[sg]et_data.

2008-07-27 22:00  kelnos

	* docs/spec/general.txt: update docs

2008-07-27 21:59  kelnos

	* xfconfd/xfconf-backend-perchannel-xml.c: fix get_all(), stupid
	  typo

2008-07-27 06:00  kelnos

	* xfconfd/xfconf-backend-perchannel-xml.c: revert a change -- avoid
	  double leading slashes when returning all props

2008-07-27 05:59  kelnos

	* xfconfd/xfconf-backend.c: improve property name validation

2008-07-27 01:06  kelnos

	* common/xfconf-dbus.xml, docs/reference/tmpl/xfconf-backend.sgml,
	  docs/reference/tmpl/xfconf-channel.sgml,
	  docs/reference/tmpl/xfconf-unused.sgml,
	  docs/reference/xfconf-sections.txt, xfconf-query/main.c,
	  xfconf/xfconf-channel.c, xfconf/xfconf-channel.h,
	  xfconf/xfconf.symbols, xfconfd/xfconf-backend-perchannel-xml.c,
	  xfconfd/xfconf-backend.c, xfconfd/xfconf-backend.h,
	  xfconfd/xfconf-daemon.c: make RemoveProperty and GetAllProperties
	  interfaces easier to use
	  
	  all removing multiple properties at once based on a subtree of
	  the property
	  tree. ditto for getting multiple properties at once

2008-07-25 19:13  kelnos

	* xfconfd/xfconf-backend-perchannel-xml.c: remove unneeded code,
	  fixes memleak on channel load

2008-07-17 19:31  jannis

	* xfconfd/xfconf-backend-perchannel-xml.c:
	  xfconfd/xfconf-backend-perchannel-xml.c: Fix crash when removing
	  the
	  last property of a channel. The check whether we are at the root
	  node
	  (the one with prop->name == "/") was done after accessing the
	  parent
	  of the current node (which is NULL for the root node).

2008-07-17 15:03  jannis

	* xfconfd/main.c, xfconfd/xfconf-backend-perchannel-xml.c:
	  xfconfd/main.c, xfconfd/xfconf-backend-perchannel-xml.c: Fix a
	  few
	  small memory leaks and add a comment about one I don't know how
	  to fix.

2008-07-17 14:40  jannis

	* xfsettingsd/registry.c: xfsettingsd/registry.c: Fix memory leaks
	  and a crash due to invalid
	  free'ing of a GError (use g_error_free instead of g_free).

2008-07-17 09:36  jasper

	* configure.ac.in: DOS line-endings, eww.

2008-07-16 11:52  stephan

	* configure.ac.in: Fixed bug #4232, xfconf compiles again.

2008-07-15 11:10  jannis

	* autogen.sh: Change @REVISION@ substitution for git svn
	  repositories again.

2008-07-15 02:37  omaciel

	* po/ChangeLog, po/pt_BR.po: Updated Brazilian Portuguese
	  translation.

2008-07-14 22:02  stephan

	* gtk-doc.make: Remove auto-generated file gtk-doc.make

2008-07-14 22:02  stephan

	* configure.ac.in, po/pt_BR.po, po/xfconf.pot, xfconfd/Makefile.am,
	  xfsettingsd/Makefile.am: Add optional profiling support for
	  xfconfd and xfsettingsd
	  Update .po(t) files.

2008-07-14 21:36  stephan

	* docs/xfsettingsd/Makefile.am, tests/tests-common.h: * Fix make
	  distcheck (renamed .txt file in Makefile.am), and increased the
	  WAIT_TIMEOUT of the tests.

2008-07-09 22:22  jannis

	* ChangeLog, autogen.sh: * autogen.sh: Fix @REVISION@ substitution
	  when using git svn.

2008-07-07 05:41  kelnos

	* docs/Makefile.am: fix missing dir in SUBDIRS

2008-07-05 21:13  jannis

	* ChangeLog, xfconf/xfconf-channel.c: * xfconf/xfconf-channel.c:
	  Disconnect from 'PropertyRemoved' signal
	  when destroying an XfconfChannel.

2008-07-03 00:19  jannis

	* ChangeLog, gtk-doc.make, xfconf-query/main.c,
	  xfconfd/xfconf-backend-perchannel-xml.c,
	  xfconfd/xfconf-backend.c, xfconfd/xfconf-daemon.c: *
	  xfconfd/xfconf-backend.c,
	  xfconfd/xfconf-backend-perchannel-xml.c:
	  Allow '<' and '>' to be in property names. Escape property names
	  using g_markup_escape() before writing them to the XML files.
	  * xfconf-query/main.c: Add message newline to one of the error
	  messages.

2008-06-29 21:29  stephan

	* common/xfconf-types.c, xfconf-query/main.c,
	  xfconf/xfconf-channel.c, xfconf/xfconf.c, xfconfd/main.c,
	  xfconfd/xfconf-backend-perchannel-xml.c, xfsettingsd/registry.c:
	  Applied patch from Nick (Bug #4184)
	  Fixes compiler-warnings
	  Fixes XCursor Xrdb issue

2008-06-29 19:03  stephan

	* configure.ac.in, xfsettingsd/Makefile.am, xfsettingsd/accessx.c,
	  xfsettingsd/accessx.h, xfsettingsd/main.c: Remove libnotify
	  dependency and accessx-stuff
	  (was moved to xfce4-settings-helper)

2008-06-14 22:51  stephan

	* xfsettingsd/accessx.c: Modify xfconf-props for accessx

2008-06-14 13:56  stephan

	* configure.ac.in, docs/xfsettingsd, docs/xfsettingsd/Makefile.am,
	  docs/xfsettingsd/xfsettingsd-channels.txt: Add an xfsettingsd
	  section to the docs

2008-06-14 12:55  stephan

	* configure.ac.in: Forgot to include configure.ac.in with previous
	  commit.

2008-06-14 12:55  stephan

	* xfsettingsd/Makefile.am, xfsettingsd/accessx.c,
	  xfsettingsd/accessx.h, xfsettingsd/main.c,
	  xfsettingsd/registry.c: Add xkb-accessx support to xfsettingsd
	  (TODO: make libnotify dependency
	  optional)

2008-06-10 22:27  stephan

	* xfsettingsd/registry.c, xfsettingsd/registry.h: Improve registry
	  behaviour...

2008-06-05 08:42  kelnos

	* common/xfconf-dbus.xml, xfconf/xfconf.c: properly register
	  marshaller and signal for PropertyRemoved

2008-06-04 18:56  kelnos

	* xfconf/xfconf-channel.c: fix warnings on 64bit

2008-05-13 03:17  kelnos

	* xfconfd/xfconf-backend-perchannel-xml.c: emit PropertyChanged on
	  all props when a channel is removed

2008-05-13 03:17  kelnos

	* common/xfconf-dbus.xml, common/xfconf-marshal.list,
	  xfconf/xfconf-channel.c, xfconfd/xfconf-daemon.c: add
	  PropertyRemoved signal to dbus interface and hook it up
	  everywhere

2008-05-13 03:17  kelnos

	* tests/property-changed-signal/t-string-changed-signal-detailed.c,
	  tests/property-changed-signal/t-string-changed-signal.c: fix
	  property-changed tests (missing callback arg)

2008-05-12 22:48  stephan

	* xfsettingsd/registry.c, xfsettingsd/registry.h: Add support for
	  xrdb stuff

2008-05-12 00:23  kelnos

	* TODO, xfsettingsd/main.c: make xfsettingsd manage all screens

2008-05-12 00:17  kelnos

	* xfconfd/xfconf-daemon.c: don't emit PropertyChanged before
	  returning from a get/set/etc. handler

2008-05-07 06:15  kelnos

	* xfsettingsd/registry.c: fix byte order, put the byte order as a
	  CARD8, not CARD32

2008-05-07 06:15  kelnos

	* xfsettingsd/main.c, xfsettingsd/registry.c: fix compilation with
	  older compilers

2008-05-02 07:38  stephan

	* xfconfd/Makefile.am: Add the .service file to CLEANFILES instead
	  of DISTCLEANFILES.
	  Fixes the problem of the .service file pointing to the wrong path
	  when
	  re-running configure

2008-05-01 23:02  omaciel

	* po/pt_BR.po: Added Brazilian Portuguese translation

2008-05-01 23:02  omaciel

	* po/ChangeLog, po/LINGUAS: Updated Brazilian Portuguese
	  translation

2008-05-01 03:47  kelnos

	* xfconfd/xfconf-backend.c: do validate the first char of the
	  channel name

2008-04-30 02:35  kelnos

	* xfconfd/xfconf-backend.c: i suck. 0-9 are valid characters.

2008-04-29 22:48  stephan

	* xfconf/xfconf-channel.c: xfconf_channel_set_uint works better
	  when it writes uints to the gvalue instead of ints

2008-04-29 22:37  stephan

	* xfconfd/xfconf-backend.c: prevent xfconfd from freezing

2008-04-28 01:29  kelnos

	* TODO, common/xfconf-errors.c,
	  docs/reference/tmpl/xfconf-errors.sgml, xfconf/xfconf-errors.h,
	  xfconfd/xfconf-backend.c: validate channel names

2008-04-28 01:29  kelnos

	* common/xfconf-common-private.h, xfconf-query/main.c: add support
	  for getting and setting array properties to xfconf-query

2008-04-28 01:29  kelnos

	* common/xfconf-types.c, docs/reference/tmpl/xfconf-backend.sgml,
	  docs/reference/tmpl/xfconf-channel.sgml,
	  docs/reference/tmpl/xfconf-errors.sgml,
	  docs/reference/tmpl/xfconf-unused.sgml,
	  docs/reference/xfconf-sections.txt, po/POTFILES.in,
	  po/xfconf.pot, xfconf/xfconf-channel.c: update docs, po

2008-04-26 20:59  kelnos

	* common/xfconf-errors.c, xfconf/xfconf-errors.h,
	  xfconfd/xfconf-backend.c: validate property names and throw an
	  error if they're bad

2008-04-21 09:38  stephan

	* xfsettingsd/main.c, xfsettingsd/registry.c,
	  xfsettingsd/registry.h: Make xfsettingsd use the new
	  property-changed signal interface
	  
	  Xfsettingsd will now exit cleanly when it loses the selection

2008-04-21 08:33  kelnos

	* common/xfconf-dbus.xml, common/xfconf-marshal.list,
	  xfconf/xfconf-binding.c, xfconf/xfconf-channel.c,
	  xfconf/xfconf.c, xfconfd/xfconf-daemon.c: add property value to
	  PropertyChanged/XfconfChannel::property-changed signal
	  
	  it seems like every time i get a property-changed signal, the
	  first thing
	  i do is go and fetch the property. always sending the value over
	  the wire
	  in the signal will generally save us a round-trip when handling
	  property
	  changes. the downside is that the value always gets sent out on
	  any prop
	  change, regardless if anyone cares about that particular property
	  or not

2008-04-21 01:02  kelnos

	* xfconf/xfconf-channel.c, xfconf/xfconf-channel.h,
	  xfconf/xfconf.symbols: turns out having convenience getter/setter
	  for unsigned int is useful

2008-04-20 07:39  kelnos

	* common/xfconf-types.c, docs/spec/backend.txt,
	  docs/spec/perchannel-xml.txt, xfconf/xfconf-channel.c: treat
	  uint16/int16 as uint32/int32 when sending data over dbus
	  
	  annoyingly, dbus-glib doesn't support sending 16-bit signed or
	  unsigned
	  integers over the bus, since no 16-bit GTypes exist. the ability
	  to expose
	  custom GValue marshallers is not exposed in dbus-glib's API, so
	  custom
	  GTypes cannot be added.
	  
	  so, internally, we handle 16-bit values as if they were 32-bit
	  values.
	  the 16-bit types are kept so that the struct-related functions
	  still work.

2008-04-20 07:38  kelnos

	* xfconf-query/main.c: use standard capital 'V' for version and
	  lowercase 'v' for verbose

2008-04-20 07:38  kelnos

	* tests/Makefile.inc, tests/tests-common.h: properly make sure
	  xfconfd has started on our bus before continuing

2008-04-17 11:25  stephan

	* xfsettingsd/registry.c: Fix ToolbarIconSize registry entry (int)

2008-04-17 06:13  stephan

	* xfconf-query/main.c: Add --remove field to xfconf-query (usefull
	  for xfconfd-database maintenance)

2008-04-15 10:36  kelnos

	* xfconf/xfconf-binding.c: remove XfconfGBinding from channel's
	  list if the GObject gets freed

2008-04-15 08:55  kelnos

	* autogen.sh: get svn revision from git-svn in a smarter way

2008-04-15 08:24  kelnos

	* xfconf/xfconf-binding.c: fix missing include

2008-04-15 08:22  kelnos

	* xfconf/xfconf.symbols: fix typo

2008-04-15 08:09  kelnos

	* Makefile.am, configure.ac.in, docs/reference/Makefile.am,
	  docs/reference/tmpl/xfconf-binding.sgml,
	  docs/reference/tmpl/xfconf-gtk.sgml,
	  docs/reference/xfconf-docs.sgml,
	  docs/reference/xfconf-sections.txt, xfconf-gtk/Makefile.am,
	  xfconf-gtk/libxfconf-gtk-0.pc.in, xfconf-gtk/xfconf-gtk.c,
	  xfconf-gtk/xfconf-gtk.h, xfconf/Makefile.am,
	  xfconf/xfconf-binding.c, xfconf/xfconf-binding.h,
	  xfconf/xfconf.h, xfconf/xfconf.symbols: remove libxfconf-gtk and
	  move binding functionality to libxfconf
	  
	  binding functionality is not gobject-based (uses properties) and
	  doesn't
	  require gtk at all

2008-04-15 05:56  kelnos

	* tests/property-changed-signal/Makefile.am,
	  tests/property-changed-signal/t-string-changed-signal-detailed.c,
	  tests/property-changed-signal/t-string-changed-signal.c,
	  xfconf/xfconf-channel.c: make XfconfChannel::property-changed
	  allow a prop name signal detail
	  
	  this way you can get a signal for changes to all properties in a
	  channel
	  by connecting to "property-changed", or just one property by
	  connecting
	  to "property-changed::/property/name"

2008-04-14 06:40  kelnos

	* xfconf-query/main.c: allow xfconf-query to create new
	  channels/properties

2008-04-14 06:00  kelnos

	* common/Makefile.am, common/xfconf-gvaluefuncs.c,
	  common/xfconf-gvaluefuncs.h, common/xfconf-types.c,
	  common/xfconf-util.c, common/xfconf-util.h, xfconf/Makefile.am,
	  xfconfd/Makefile.am, xfconfd/xfconf-backend-perchannel-xml.c,
	  xfconfd/xfconf-daemon.c, xfconfd/xfconf-locking-utils.c,
	  xfconfd/xfconf-locking-utils.h: do some rearranging of code
	  locations
	  
	  * the locking evaluation stuff is really only needed in the
	  daemon
	  * clean up an extra copy of xfconf_g_value_free()
	  * move _xfconf_gtype_from_string() to gvaluefuncs
	  * compile xfconf-types.c directly into the daemon and libxfconf
	  separately
	  to avoid problems with the aliasdef stuff

2008-04-13 20:46  stephan

	* xfconf-query/main.c: Fix build with --enable-debug=full

2008-04-13 20:44  stephan

	* xfconf-query/main.c: Add --list and --verbose options to
	  xfconf-query

2008-04-13 09:28  kelnos

	* xfconfd/xfconf-daemon.c: emit the PropertyChanged signal
	  properly. duh.

2008-04-11 05:29  kelnos

	* tests/Makefile.inc, tests/get-properties/Makefile.am,
	  tests/has-properties/Makefile.am,
	  tests/property-changed-signal/Makefile.am,
	  tests/remove-properties/Makefile.am,
	  tests/set-properties/Makefile.am, tests/test-template.sh.in: pull
	  common stuff out of makefiles, fix 'mke distcheck' properly

2008-04-11 05:24  stephan

	* Makefile.am: Fix make distcheck

2008-04-10 22:46  stephan

	* configure.ac.in, po/xfconf.pot, tests/Makefile.am,
	  tests/get-properties/Makefile.am,
	  tests/get-properties/test-template.sh.in,
	  tests/has-properties/Makefile.am,
	  tests/has-properties/test-template.sh.in, tests/lock-properties,
	  tests/property-changed-signal/Makefile.am,
	  tests/property-changed-signal/test-template.sh.in,
	  tests/remove-properties/Makefile.am,
	  tests/remove-properties/test-template.sh.in,
	  tests/set-properties/Makefile.am,
	  tests/set-properties/test-template.sh.in,
	  tests/test-template.sh.in: Fix the test-suite

2008-04-10 22:19  stephan

	* tests/Makefile.am, tests/get-properties,
	  tests/get-properties/Makefile.am,
	  tests/get-properties/t-get-arrayv.c,
	  tests/get-properties/t-get-boolean.c,
	  tests/get-properties/t-get-double.c,
	  tests/get-properties/t-get-int.c,
	  tests/get-properties/t-get-string.c,
	  tests/get-properties/t-get-stringlist.c,
	  tests/get-properties/t-get-uint64.c,
	  tests/get-properties/test-template.sh.in, tests/has-properties,
	  tests/has-properties/Makefile.am,
	  tests/has-properties/t-has-arrayv.c,
	  tests/has-properties/t-has-boolean.c,
	  tests/has-properties/t-has-double.c,
	  tests/has-properties/t-has-int.c,
	  tests/has-properties/t-has-string.c,
	  tests/has-properties/t-has-stringlist.c,
	  tests/has-properties/t-has-uint64.c,
	  tests/has-properties/test-template.sh.in,
	  tests/property-changed-signal,
	  tests/property-changed-signal/Makefile.am,
	  tests/property-changed-signal/t-string-changed-signal.c,
	  tests/property-changed-signal/test-template.sh.in,
	  tests/remove-properties, tests/remove-properties/Makefile.am,
	  tests/remove-properties/t-remove-arrayv.c,
	  tests/remove-properties/t-remove-boolean.c,
	  tests/remove-properties/t-remove-double.c,
	  tests/remove-properties/t-remove-int.c,
	  tests/remove-properties/t-remove-string.c,
	  tests/remove-properties/t-remove-stringlist.c,
	  tests/remove-properties/t-remove-uint64.c,
	  tests/remove-properties/test-template.sh.in,
	  tests/set-properties, tests/set-properties/Makefile.am,
	  tests/set-properties/t-set-arrayv.c,
	  tests/set-properties/t-set-boolean.c,
	  tests/set-properties/t-set-double.c,
	  tests/set-properties/t-set-int.c,
	  tests/set-properties/t-set-string.c,
	  tests/set-properties/t-set-stringlist.c,
	  tests/set-properties/t-set-uint64.c,
	  tests/set-properties/test-template.sh.in,
	  tests/t-get-properties.c, tests/t-has-properties.c,
	  tests/t-property-changed-signal.c, tests/t-remove-properties.c,
	  tests/t-set-properties.c, tests/test-template.sh.in: Organise
	  test-suite a little.

2008-04-10 22:06  kelnos

	* common/xfconf-gvaluefuncs.c: revert previous change --
	  _xfconf_gvalue_from_string() isn't meant to be
	  able to convert semicolon-delimited strings into an array, just
	  to create
	  an array to put arbitrary elements into

2008-04-10 08:31  stephan

	* common/xfconf-util.h: Add G_GNUC_INTERNAL to xfconf_g_value_free
	  function (restores abi)

2008-04-09 20:41  stephan

	* common/Makefile.am, po/xfconf.pot, xfconf-query/Makefile.am,
	  xfconf-query/main.c: Improve xfconf-query support for gvalue
	  types (use common-code for gvalue >< string conversion)
	  Fix compile-warning with make-distcheck inside common-libs, (add
	  header to Makefile.am)
	  Update pot file.

2008-04-09 06:53  kelnos

	* common/xfconf-gvaluefuncs.c: convert string list (as
	  semicolon-delim list) into GValue properly

2008-04-09 06:22  kelnos

	* po/POTFILES.in, po/xfconf.pot: update POTFILES

2008-04-09 06:20  kelnos

	* common/xfconf-gvaluefuncs.c, common/xfconf-gvaluefuncs.h,
	  xfconf-gtk/xfconf-gtk.c: move xfconf_gtk_string_from_gvalue() to
	  common

2008-04-09 06:02  kelnos

	* docs/reference/tmpl/xfconf-gtk.sgml,
	  docs/reference/tmpl/xfconf-unused.sgml,
	  docs/reference/xfconf-sections.txt, xfconf-gtk/xfconf-gtk.c,
	  xfconf-gtk/xfconf-gtk.h: rename xfconf_gtk_widget_bind_property()
	  s/widget/editable, fix some bugs
	  
	  different widget types are going to have to be handled
	  differently, with
	  different parameters. check buttons will always be boolean types,
	  radio
	  buttons will need to have some sort of identifier associated with
	  them, etc.

2008-04-09 05:30  kelnos

	* Makefile.am, configure.ac.in, docs/reference/Makefile.am,
	  docs/reference/tmpl/xfconf-gtk.sgml,
	  docs/reference/xfconf-docs.sgml,
	  docs/reference/xfconf-sections.txt, xfconf-gtk,
	  xfconf-gtk/Makefile.am, xfconf-gtk/libxfconf-gtk-0.pc.in,
	  xfconf-gtk/xfconf-gtk.c, xfconf-gtk/xfconf-gtk.h: add first pass
	  at xfconf-gtk convenience library
	  
	  it only supports widgets that implement GtkEditable, but more to
	  come soon

2008-04-09 05:29  kelnos

	* common/Makefile.am, common/xfconf-gvaluefuncs.c,
	  common/xfconf-gvaluefuncs.h, common/xfconf-util.h,
	  xfconfd/Makefile.am, xfconfd/xfconf-backend-perchannel-xml.c,
	  xfconfd/xfconf-daemon.c: move GValue convenience funcs to their
	  own libtool convenience lib

2008-04-09 05:29  kelnos

	* xfconf/Makefile.am: fix xfconf includes install location

2008-04-09 05:29  kelnos

	* TODO: update todo

2008-04-09 05:29  kelnos

	* docs/reference/tmpl/xfconf-types.sgml: add missing api doc

2008-04-08 17:40  stephan

	* xfconf-query/main.c, xfsettingsd/main.c: Code-cleanup inside
	  xfconf-query
	  Update --version string of xfconf-query and xfsettingsd

2008-04-07 20:30  stephan

	* xfconf-query/main.c: Add read-support to xfconf-query

2008-04-07 19:47  stephan

	* Makefile.am, configure.ac.in, xfconf-query,
	  xfconf-query/Makefile.am, xfconf-query/main.c,
	  xfconf/xfconf-channel.c: Add xfconf-query cli-tool (it can only
	  update existing values for now)
	  
	  Fix an uninitialized gvalue struct inside the xfconf library

2008-04-07 08:49  kelnos

	* docs/reference/tmpl/xfconf-backend.sgml, tests/Makefile.am,
	  tests/t-property-changed-signal.c,
	  xfconfd/xfconf-backend-perchannel-xml.c,
	  xfconfd/xfconf-backend.c, xfconfd/xfconf-backend.h,
	  xfconfd/xfconf-daemon.c: make the PropertyChanged signal work

2008-04-07 08:48  kelnos

	* AUTHORS: add stephan to AUTHORS

2008-04-05 15:58  kelnos

	* xfconf/xfconf.h: add missing xfconf-types.h include to main
	  header

2008-04-05 01:46  kelnos

	* configure.ac.in, gtk-doc.make, xfsettingsd/Makefile.am,
	  xfsettingsd/main.c, xfsettingsd/registry.c: make xfsettingsd
	  build optional, clean up all warnings, xfce-ise it

2008-04-02 22:37  stephan

	* xfsettingsd/registry.c: Fixed the header information of the
	  registry file.

2008-04-02 22:25  stephan

	* Makefile.am, TODO, configure.ac.in, xfsettingsd,
	  xfsettingsd/Makefile.am, xfsettingsd/main.c,
	  xfsettingsd/registry.c, xfsettingsd/registry.h: Import
	  xfsettingsd code, the xfce-xsettingsd
	  
	  Update TODO

2008-04-02 08:34  kelnos

	* xfconf/xfconf.symbols: add new symbol to xfconf.symbols so 'make
	  check' passes

2008-02-20 18:34  kelnos

	* xfconf/Makefile.am, xfconf/libxfconf-0.pc.in: patch from Stephan
	  to fix includes location

2008-01-14 06:42  kelnos

	* docs/spec/backend.txt, docs/spec/perchannel-xml.txt: update spec
	  and docs

2008-01-14 06:42  kelnos

	* common/Makefile.am, common/xfconf-common-private.h,
	  docs/reference/tmpl/xfconf.sgml,
	  docs/reference/xfconf-sections.txt, tests/t-get-properties.c,
	  tests/t-has-properties.c, tests/t-remove-properties.c,
	  tests/t-set-properties.c, tests/tests-common.h,
	  xfconf/xfconf-channel.c, xfconf/xfconf-channel.h,
	  xfconf/xfconf.c, xfconf/xfconf.h, xfconfd/Makefile.am,
	  xfconfd/xfconf-backend-perchannel-xml.c: make the array stuff
	  work, in theory.
	  
	  i think this should work now. GArrays of GValues don't seem to
	  work,
	  unfortunately, but GPtrArrays of GValues do. passing GValueArrays
	  directly to dbus-glib works, but it's difficult if not impossible
	  to
	  figure out what they are on the other end.
	  
	  anyhow, so the array stuff works by passing a GPtrArray of
	  GValues
	  to dbus-glib (after stuffing the GPtrArray in its own GValue).

2008-01-14 06:42  kelnos

	* tests/t-set-properties.c, xfconf/xfconf-channel.c: use
	  GValueArray to set and get string lists

2007-12-05 10:06  kelnos

	* xfconfd/xfconf-backend-perchannel-xml.c: * handle 'empty'
	  branches properly
	  * fix typo (attribute_values[i] -> type)

2007-12-05 10:06  kelnos

	* xfconfd/xfconf-backend-perchannel-xml.c: don't use old <string>
	  elem; use <value type="string" ...> instead

2007-12-05 10:06  kelnos

	* autogen.sh: extract svn revision using git-svn

2007-11-06 05:52  kelnos

	* common, common/Makefile.am, common/make-exo-alias.pl,
	  common/xfconf-errors.c, common/xfconf-types.c,
	  common/xfconf-util.h, configure.ac.in,
	  docs/reference/tmpl/xfconf-types.sgml, po/xfconf.pot, tests,
	  xfconf/Makefile.am, xfconf/abicheck.sh, xfconf/xfconf-channel.c,
	  xfconf/xfconf.c, xfconf/xfconf.symbols, xfconfd/Makefile.am: add
	  gnuc visibility stuff

2007-10-27 19:23  kelnos

	* docs/spec/Makefile.am: fix make dist

2007-10-25 18:33  kelnos

	* po/ChangeLog: distcheck requires a po/changelog

2007-10-25 09:14  kelnos

	* TODO, common/Makefile.am, common/xfconf-types.c,
	  common/xfconf-util.h, docs/reference/tmpl/xfconf-backend.sgml,
	  docs/reference/tmpl/xfconf-channel.sgml,
	  docs/reference/tmpl/xfconf-types.sgml,
	  docs/reference/tmpl/xfconf-unused.sgml,
	  docs/reference/tmpl/xfconf.sgml, docs/reference/xfconf-docs.sgml,
	  docs/reference/xfconf-sections.txt, docs/spec/backend.txt,
	  docs/spec/perchannel-xml.dtd, docs/spec/perchannel-xml.txt,
	  gtk-doc.make, tests/t-get-properties.c, tests/t-has-properties.c,
	  tests/t-remove-properties.c, tests/t-set-properties.c,
	  tests/tests-common.h, xfconf/Makefile.am,
	  xfconf/xfconf-channel.c, xfconf/xfconf-channel.h,
	  xfconf/xfconf-private.h, xfconf/xfconf-types.h, xfconf/xfconf.c,
	  xfconf/xfconf.h, xfconfd/xfconf-backend-perchannel-xml.c: start
	  migration to new library API with array types and struct
	  serializers.
	  this isn't completely done and doesn't quite work (needs some
	  more daemon
	  backend work), but what's in svn doesn't work properly right now
	  either

2007-10-25 05:14  kelnos

	* configure.ac.in: use tagged svn version scheme

2007-10-04 18:58  kelnos

	* TODO: update todo, spearate items into '1.0' items and 'future'
	  items

2007-10-03 12:43  kelnos

	* xfconfd/main.c: add --version option

2007-10-03 12:34  kelnos

	* common/Makefile.am, common/xfconf-errors.c,
	  docs/reference/Makefile.am,
	  docs/reference/tmpl/xfconf-backend.sgml,
	  docs/reference/tmpl/xfconf-errors.sgml,
	  docs/reference/xfconf-docs.sgml,
	  docs/reference/xfconf-sections.txt, xfconf/Makefile.am,
	  xfconf/xfconf-errors.h, xfconf/xfconf.c, xfconf/xfconf.h,
	  xfconfd/Makefile.am, xfconfd/main.c,
	  xfconfd/xfconf-backend-factory.c,
	  xfconfd/xfconf-backend-factory.h,
	  xfconfd/xfconf-backend-perchannel-xml.c,
	  xfconfd/xfconf-backend.c, xfconfd/xfconf-backend.h,
	  xfconfd/xfconf-daemon.c, xfconfd/xfconf-daemon.h: * move
	  XfconfBackendError to a more public place and rename it to
	  XfconfError
	  * allow xfconfd to load multiple backends, the first of which is
	  read/write,
	  and the others are read-only
	  * update docs

2007-10-03 10:55  kelnos

	* xfconfd/main.c: ignore sigpipe again

2007-10-03 09:15  kelnos

	* xfconfd/xfconf-backend-perchannel-xml.c: don't print warnings on
	  common non-error errors unless XFCONF_ENABLE_CHECKS
	  is defined

2007-10-03 09:11  kelnos

	* tests/t-get-properties.c, tests/t-has-properties.c,
	  tests/t-remove-properties.c, tests/t-set-properties.c,
	  tests/tests-common.h: use #define instead of hardcoded test
	  channel name

2007-10-03 09:09  kelnos

	* tests/t-remove-properties.c: make RemoveProperty test more robust
	  - check for presence of each
	  property before removing, and again after each remove

2007-10-03 09:08  kelnos

	* xfconfd/xfconf-backend-perchannel-xml.c: fix RemoveProperty
	  removing all properties from the tree :-(

2007-10-03 08:56  kelnos

	* docs/reference, docs/reference/tmpl: update svn:ignore

2007-10-03 08:55  kelnos

	* tests: set svn:ignore

2007-10-03 08:50  kelnos

	* tests/test-template.sh.in: fix template to use local
	  XDG_CONFIG_HOME

2007-10-03 08:49  kelnos

	* Makefile.am, configure.ac.in, xfconf/xfconf-channel.c: * add test
	  framework to build
	  * add possibility for extra error checking in libxfconf
	  * fix warning (don't init gvalues before passing to dbus)
	  * handle G_TYPE_STRV as string list in libxfconf

2007-10-03 08:47  kelnos

	* tests/tests-common.h: add a sleep(). meh.

2007-10-03 08:37  kelnos

	* tests, tests/Makefile.am, tests/t-get-properties.c,
	  tests/t-has-properties.c, tests/t-remove-properties.c,
	  tests/t-set-properties.c, tests/test-template.sh.in,
	  tests/tests-common.h: add tests framework

2007-10-03 08:28  kelnos

	* xfconfd/xfconf-backend-perchannel-xml.c: * make error reporting
	  more verbose (should have a way to turn this off)
	  * handle G_TYPE_STRV (i'm not sure why strlists aren't getting
	  received
	  as a GPtrArray of (gchar *)s)
	  * fix channel xml file parse problem with string lists

2007-10-03 08:06  kelnos

	* xfconfd/xfconf-backend-perchannel-xml.c: correct GDestroyNotify
	  for the proptree

2007-10-03 08:04  kelnos

	* xfconfd/main.c: add posix signal handling to exit xfconfd cleanly

2007-10-03 06:38  kelnos

	* xfconf/xfconf-channel.c, xfconf/xfconf.c: * call g_type_init() in
	  xfconf_init()
	  * register marshaller and signal for PropertyChanged
	  * fix signal name Changed -> PropertyChanged

2007-10-03 05:07  kelnos

	* xfconf/xfconf-channel.c: move channel init stuff out of _new()
	  and into _init()

2007-10-01 09:05  kelnos

	* TODO: update todo

2007-10-01 08:59  kelnos

	* xfconfd/xfconf-backend-perchannel-xml.c: fix missing root node
	  property name, fix crash on double-free()

2007-10-01 08:49  kelnos

	* xfconfd/xfconf-backend-perchannel-xml.c: * stupid - fix
	  RemoveProperty() crash; just a mistaken parameter
	  * make _proptree_remove() remove empty parents of the node to be
	  removed

2007-10-01 08:35  kelnos

	* xfconfd/xfconf-backend-perchannel-xml.c: redid perchannel-xml
	  backend to use GNode internally for the property tree
	  rather than GTree, as GTree is just not really working right here
	  (even tho
	  it's easier to use). GetProperty(), SetProperty(),
	  GetAllProperties(),
	  PropertyExists(), and RemoveChannel() appear to work.
	  RemoveProperty() causes
	  a segfault, not sure why yet.

2007-10-01 07:41  kelnos

	* xfconfd/xfconf-backend.c, xfconfd/xfconf-backend.h: add
	  permission denied error type

2007-09-17 16:24  kelnos

	* xfconfd/xfconf-backend-perchannel-xml.c: fix file writing -
	  forgot to XfconfProperty-ise it

2007-09-17 15:59  kelnos

	* xfconfd/xfconf-backend-perchannel-xml.c: fix some get/set stuff.
	  make set and get_all use the new XfconfProperty
	  stuff. i think stuff is starting to work.

2007-09-17 15:48  kelnos

	* xfconfd/xfconf-backend-perchannel-xml.c: fix a bunch of parsing
	  buglets - still more tho

2007-09-16 07:38  kelnos

	* xfconfd/xfconf-backend-perchannel-xml.c: this appears to work for
	  writing out the perchannel-xml config files, but
	  it's pretty ugly, and i'm not sure if it works in all cases

2007-09-14 12:29  kelnos

	* xfconfd/xfconf-backend-perchannel-xml.c: lowercase all
	  channel/property names to enforce case-insensitivity

2007-09-14 12:05  kelnos

	* common/Makefile.am, xfconf/Makefile.am: fix build of
	  autogenerated sources

2007-09-14 11:38  kelnos

	* TODO, common/xfconf-util.c, common/xfconf-util.h,
	  configure.ac.in, docs/spec/perchannel-xml.txt,
	  xfconfd/xfconf-backend-perchannel-xml.c: implement most of the
	  the perchannel-xml reading and parsing code. it's not
	  complete, and it completely differs from the write code (right
	  now, it can't
	  properly read the files it writes), and there are some problems
	  parsing
	  string lists (sometimes), which i know how to fix. also there's a
	  new locking
	  scheme that dupilcates the functionality currently in XfceKiosk.
	  
	  regardless, it's totally not usable right now, but i need to
	  commit so i can
	  work on this elsewhere.

2007-09-07 09:09  kelnos

	* docs/spec/Makefile.am, docs/spec/general.txt,
	  docs/spec/lockdown-behavior.txt, docs/spec/perchannel-xml.dtd,
	  docs/spec/perchannel-xml.txt: add some preliminary specs/behavior
	  descriptions

2007-09-06 09:57  kelnos

	* xfconfd/xfconf-backend-perchannel-xml.c: change version of
	  perchannel-xml file format from 1 to 0.1

2007-09-06 09:52  kelnos

	* TODO: update todo again

2007-09-06 09:50  kelnos

	* TODO: update todo

2007-09-06 09:36  kelnos

	* TODO: add todo file

2007-09-06 09:27  kelnos

	* docs/spec, xfconfd, xfconfd/Makefile.am,
	  xfconfd/xfconf-backend-perchannel-xml.c,
	  xfconfd/xfconf-backend.c, xfconfd/xfconf-backend.h,
	  xfconfd/xfconf-daemon.c: implement most of the perchannel-xml
	  backend. reading stuff from
	  the xml files isn't implemented yet, but writing values is done
	  and
	  appears to work

2007-09-06 09:25  kelnos

	* docs/spec/Makefile.am: whoops, forgot the makefile

2007-09-06 09:25  kelnos

	* configure.ac.in, docs/Makefile.am, docs/spec,
	  docs/spec/perchannel-xml.dtd: add prelim dtd for the
	  perchannel-xml backend

2007-09-06 09:24  kelnos

	* common/Makefile.am, common/xfconf-util.c, common/xfconf-util.h:
	  add xfconf_g_value_free() utility function

2007-09-06 09:24  kelnos

	* xfconf/xfconf-channel.h, xfconf/xfconf.h: clean up header files

2007-09-06 03:08  kelnos

	* common/xfconf-dbus.xml, xfconfd/Makefile.am,
	  xfconfd/xfconf-daemon.c: do some cosmetic renaming

2007-09-06 02:15  kelnos

	* common/xfconf-dbus.xml, docs/reference/tmpl/xfconf-backend.sgml,
	  docs/reference/xfconf-sections.txt, xfconf/xfconf-channel.c,
	  xfconfd/xfconf-backend-perchannel-xml.c,
	  xfconfd/xfconf-backend.c, xfconfd/xfconf-backend.h,
	  xfconfd/xfconf-daemon.c: * add RemoveChannel() to the dbus
	  interface and client lib
	  * rename some dbus methods so it's more clear what they do

2007-09-05 08:55  kelnos

	* configure.ac.in, xfconfd, xfconfd/Makefile.am,
	  xfconfd/org.xfce.Xfconf.service.in: add dbus activation service
	  file

2007-09-05 08:39  kelnos

	* xfconfd/xfconf-daemon.c: add comment about possible memory leak

2007-09-05 08:12  kelnos

	* xfconfd/Makefile.am, xfconfd/xfconf-daemon.c: launch
	  to-be-written settings app on ShowList() and ShowPlugin()

2007-09-05 08:03  kelnos

	* docs, docs/reference, docs/reference/tmpl: set svn:ignore

2007-09-05 08:01  kelnos

	* Makefile.am, common/xfconf-dbus.xml, configure.ac.in, docs,
	  docs/Makefile.am, docs/reference, docs/reference/Makefile.am,
	  docs/reference/tmpl, docs/reference/tmpl/xfconf-backend.sgml,
	  docs/reference/tmpl/xfconf-channel.sgml,
	  docs/reference/tmpl/xfconf-unused.sgml,
	  docs/reference/tmpl/xfconf.sgml, docs/reference/version.xml.in,
	  docs/reference/xfconf-docs.sgml,
	  docs/reference/xfconf-overrides.txt,
	  docs/reference/xfconf-sections.txt, docs/reference/xfconf.types,
	  gtk-doc.make, xfconf/xfconf-channel.c, xfconf/xfconf-channel.h,
	  xfconfd/xfconf-backend.c, xfconfd/xfconf-backend.h: add gtk-doc
	  framework and fix up docs everywhere

2007-09-05 06:46  kelnos

	* ., common, po, xfconf, xfconfd: set svn:ignore

2007-09-05 06:41  kelnos

	* xfconf/xfconf-channel.c, xfconf/xfconf-channel.h,
	  xfconf/xfconf.c, xfconf/xfconf.h, xfconfd/main.c: fix some
	  license headers and document all functions in libxfconf

2007-09-05 05:55  kelnos

	* xfconfd/xfconf-backend-perchannel-xml.c,
	  xfconfd/xfconf-backend.c, xfconfd/xfconf-backend.h,
	  xfconfd/xfconf-daemon.c: add docs for XfconfBackendInterface, and
	  change the interface a little
	  so the backend should expect an already-inited GHashTable for
	  GetAll()
	  rather than doing that itself

2007-09-05 05:38  kelnos

	* common/xfconf-dbus.xml, xfconf/xfconf-channel.c,
	  xfconf/xfconf-channel.h, xfconfd/xfconf-backend-perchannel-xml.c,
	  xfconfd/xfconf-backend.c, xfconfd/xfconf-backend.h,
	  xfconfd/xfconf-daemon.c: * change xfconf_channel_get_*() API to
	  return the values directly
	  and take a 'default_value' param for when a property doesn't
	  exist
	  * add API to DBus interface: GetAll, Exists, Remove
	  * add XfconfChannel API: xfconf_channel_get_all(),
	  xfconf_channel_property_exists(),
	  xfconf_channel_remove_property()

2007-09-04 11:46  kelnos

	* po/POTFILES.in, po/xfconf.pot: fix potfiles stiff and add pot
	  file

2007-09-04 11:46  kelnos

	* common/Makefile.am, common/xfconf-marshal.list,
	  xfconf/Makefile.am, xfconf/xfconf-marshal.list,
	  xfconfd/Makefile.am, xfconfd/xfconf-daemon.c: move the
	  marshallers into a private lib so both the client lib and
	  daemon can use it

2007-09-04 11:32  kelnos

	* xfconfd/main.c: set glib prgname and application_name

2007-09-04 11:30  kelnos

	* xfconfd/main.c, xfconfd/xfconf-daemon.c, xfconfd/xfconf-daemon.h:
	  add ability to set backend type from main() so it doesn't
	  segfault

2007-09-04 10:54  kelnos

	* xfconf/Makefile.am, xfconf/xfconf-channel.c,
	  xfconf/xfconf-channel.h, xfconf/xfconf-marshal.list: implement
	  pretty much all of XfconfChannel

2007-09-04 09:38  kelnos

	* xfconf/Makefile.am, xfconf/xfconf-channel.c,
	  xfconf/xfconf-channel.h, xfconf/xfconf-private.h,
	  xfconf/xfconf.c, xfconf/xfconf.h: initial files for libxfconf,
	  mostly-empty implementation

2007-09-04 09:38  kelnos

	* xfconfd/Makefile.am, xfconfd/main.c,
	  xfconfd/xfconf-backend-factory.c,
	  xfconfd/xfconf-backend-perchannel-xml.c,
	  xfconfd/xfconf-backend-perchannel-xml.h,
	  xfconfd/xfconf-backend.c, xfconfd/xfconf-backend.h,
	  xfconfd/xfconf-daemon.c: add backend framework to daemon with an
	  empty implementation of
	  a backend that does an XML file per channel

2007-09-04 09:37  kelnos

	* configure.ac.in: fixup missing stuff for configure script

2007-09-04 09:37  kelnos

	* po/LINGUAS: forgot LINGUAS file

2007-09-04 08:03  kelnos

	* AUTHORS, COPYING, ChangeLog, Makefile.am, NEWS, README,
	  autogen.sh, common, common/Makefile.am, common/xfconf-dbus.xml,
	  configure.ac.in, po, po/POTFILES.in, xfconf, xfconf/Makefile.am,
	  xfconf/libxfconf-0.pc.in, xfconfd, xfconfd/Makefile.am,
	  xfconfd/main.c, xfconfd/xfconf-backend-factory.c,
	  xfconfd/xfconf-backend-factory.h, xfconfd/xfconf-backend.c,
	  xfconfd/xfconf-backend.h, xfconfd/xfconf-daemon.c,
	  xfconfd/xfconf-daemon.h: initial import of xfconfd/libxfconf

2007-09-04 08:02  kelnos

	* .: create dir tree for xfconf