~ci-train-bot/ubuntu-themes/ubuntu-themes-ubuntu-xenial-landing-069

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
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
ubuntu-themes (14.04+16.04.20160415-0ubuntu1) xenial; urgency=medium

  [ Adolfo Jayme Barrientos ]
  * Add 1px padding to calendar widget elements; looks better. Thanks,
    Khurshid Alam. (LP: #1537794)

  [ Matthieu James ]
  * Suru icon theme: normalization of arrows used in mono icons, plus
    minor additions or updates to existing designs. (LP: #1518934)

  [ Will Cooke ]
  * Adds these fixes for Calendar: (LP: #1551744, #1558659)

 -- Sebastien Bacher <seb128@ubuntu.com>  Fri, 15 Apr 2016 19:49:25 +0000

ubuntu-themes (14.04+16.04.20160324.1-0ubuntu1) xenial; urgency=medium

  [ Marco Trevisan (TreviƱo) ]
  * Ambiance, Radiance: use inverted gradient in headerbar when in
    toolbar-mode (LP: #1515810)

  [ Sebastien Bacher ]
  * reduce the padding on flat entries, that's needed with gtk 3.18
    otherwise the entry is displayed over new rows in listview when
    editing, that's also what the gtk upstream themes are doing.
  * show the cursor index better in totem videos (LP: #1545026)

  [ Will Cooke ]
  * Override box shadow and border settings for linked dialog buttons so
    they don't looked mashed together. Extra border radius is required
    to stop the button background bleeding through the border. (LP:
    #1513856)

 -- Iain Lane <iain@orangesquash.org.uk>  Thu, 24 Mar 2016 14:27:56 +0000

ubuntu-themes (14.04+16.04.20160209-0ubuntu1) xenial; urgency=medium

  [ Lars Uebernickel ]
  * gnome-terminal: fix scrollbar background (LP: #1539055)

 -- Iain Lane <iain@orangesquash.org.uk>  Tue, 09 Feb 2016 11:54:05 +0000

ubuntu-themes (14.04+16.04.20160120-0ubuntu1) xenial; urgency=medium

  [ Lars Uebernickel ]
  * Scrollbars: fix through drawing on webkit

 -- Iain Lane <iain@orangesquash.org.uk>  Wed, 20 Jan 2016 12:48:16 +0000

ubuntu-themes (14.04+16.04.20151216-0ubuntu1) xenial; urgency=medium

  * Basic "app-notification" theming to avoid weirdness in nautilus
  * Update the nautilus.css with the current upstream one, it could
    probably be tweaked a bit and has references to color used upstream
    but those don't look out of place with our theme and is better than
    what we have now

 -- Sebastien Bacher <seb128@ubuntu.com>  Wed, 16 Dec 2015 16:48:09 +0000

ubuntu-themes (14.04+16.04.20151214-0ubuntu1) xenial; urgency=medium

  [ Matthieu James ]
  * Suru icon theme update: Inclusion of SDK icons Addition of a whole
    set of mono device icons Updated app icons designs (LP: #1518934)

 -- Zoltan Balogh <zoltan.balogh@canonical.com>  Mon, 14 Dec 2015 17:17:43 +0000

ubuntu-themes (14.04+16.04.20151127-0ubuntu1) xenial; urgency=medium

  [ Will Cooke ]
  * Adds padding to sidebar icons to fix
    https://bugs.launchpad.net/ubuntu/+source/ubuntu-themes/+bug/1515557
    (LP: #1515557)
  * Revised theme support for new version of Gedit.

 -- Sebastien Bacher <seb128@ubuntu.com>  Fri, 27 Nov 2015 16:12:15 +0000

ubuntu-themes (14.04+15.10.20151001-0ubuntu1) wily; urgency=medium

  [ Lars Uebernickel ]
  * osd: style free-floating osd buttons (LP: #1466890, #1500844)

  [ Matthieu James ]
  * Added a new VPN indicator and a bunch of new mono icons.

 -- Pete Woods <ci-train-bot@canonical.com>  Thu, 01 Oct 2015 10:13:06 +0000

ubuntu-themes (14.04+15.10.20150910-0ubuntu1) wily; urgency=medium

  * Ambiance, Radiance: make overlay scrollbars too look more like the
    ubuntu designed ones (LP: #1450747, #1493607)

 -- Marco Trevisan (TreviƱo) <mail@3v1n0.net>  Thu, 10 Sep 2015 13:27:13 +0000

ubuntu-themes (14.04+15.10.20150907-0ubuntu1) wily; urgency=medium

  * Style software-center's action bar again

 -- Iain Lane <iain@orangesquash.org.uk>  Mon, 07 Sep 2015 08:47:22 +0000

ubuntu-themes (14.04+15.10.20150813-0ubuntu1) wily; urgency=medium

  [ CI Train Bot ]
  * New rebuild forced.

  [ Matthieu James ]
  * This update include a few bug fixes that we chased during our design
    team bug sprint in August 2015: essentially a bunch of new mono
    icons and updated existing designs. (LP: #1367137, #1478025,
    #1294251, #1424819, #1431876)

 -- CI Train Bot <ci-train-bot@canonical.com>  Thu, 13 Aug 2015 15:06:02 +0000

ubuntu-themes (14.04+15.10.20150721-0ubuntu1) wily; urgency=medium

  [ Lars Uebernickel ]
  * Clean up nautilus theming. Mostly, this consists of moving from
    nautilus-specific widgets and classes to more generic gtk ones. (LP:
    #1463848)
  * Theme GTK overlay-scrollbars to be more ubuntu-ish

 -- CI Train Bot <ci-train-bot@canonical.com>  Tue, 21 Jul 2015 09:53:27 +0000

ubuntu-themes (14.04+15.10.20150707-0ubuntu1) wily; urgency=medium

  [ Matthieu James ]
  * Updated all mono icons to the new thinner graphic style, including
    actions, indicators and symbolic app and device icons.

 -- CI Train Bot <ci-train-bot@canonical.com>  Tue, 07 Jul 2015 12:18:20 +0000

ubuntu-themes (14.04+15.10.20150706-0ubuntu1) wily; urgency=medium

  [ Matthieu James ]
  * Updated the app icons to their new version (flatter and refreshed
    graphic style) and added a new icon for Dekko email client. Changed
    the colour of the 'new message' indicator to green (LP: #1457424,
    #1450894)

 -- CI Train Bot <ci-train-bot@canonical.com>  Mon, 06 Jul 2015 13:51:49 +0000

ubuntu-themes (14.04+15.10.20150603.1-0ubuntu1) wily; urgency=medium

  [ CI Train Bot ]
  * New rebuild forced.

  [ Charles Kerr ]
  * cherrypick the new  messages-new.svg suru icon from
    lp:~tiheum/ubuntu-themes/suru-app-icons-v2 (LP: #1450894)

 -- CI Train Bot <ci-train-bot@canonical.com>  Wed, 03 Jun 2015 21:41:43 +0000

ubuntu-themes (14.04+15.10.20150529-0ubuntu1) wily; urgency=medium

  [ Lars Uebernickel ]
  * Set :link color
  * Style under- and overshoot

 -- CI Train Bot <ci-train-bot@canonical.com>  Fri, 29 May 2015 09:06:32 +0000

ubuntu-themes (14.04+15.04.20150410-0ubuntu1) vivid; urgency=medium

  [ Iain Lane ]
  * Draw shadows for menus - thanks to Simon SteinbeiƟ (LP: #1441975)

  [ Lars Uebernickel ]
  * Don't use symbolic colors for style (LP: #1436428)

 -- CI Train Bot <ci-train-bot@canonical.com>  Fri, 10 Apr 2015 10:57:50 +0000

ubuntu-themes (14.04+15.04.20150331-0ubuntu1) vivid; urgency=medium

  [ Charles Kerr ]
  * Copy the suru display-brightness-min and -max icons to ubuntu-mobile
    where qmenumodel and QIcon::hasThemeIcon() can find them. (LP:
    #1289465)

 -- CI Train Bot <ci-train-bot@canonical.com>  Tue, 31 Mar 2015 20:25:10 +0000

ubuntu-themes (14.04+15.04.20150320-0ubuntu1) vivid; urgency=medium

  [ Alberts Muktupāvels ]
  * Add some style info for unity-greeter buttons. (LP: #1423542) (LP:
    #1423542)

  [ Iain Lane ]
  * Style geary's compose view to get a background with overlay-
    scrollbars added: Ambiance/gtk-3.0/apps/geary.css Radiance/gtk-
    3.0/apps/geary.css
  * Theme software-center's action bar so it gets a background. added:
    Ambiance/gtk-3.0/apps/software-center.css Radiance/gtk-
    3.0/apps/software-center.css

  [ Lars Uebernickel ]
  * Radiance: fix radio mark coloring in menus

  [ William Hua ]
  * Set the background on GtkStack widgets. (LP: #1285783)

 -- CI Train Bot <ci-train-bot@canonical.com>  Fri, 20 Mar 2015 18:07:14 +0000

ubuntu-themes (14.04+15.04.20150319-0ubuntu1) vivid; urgency=medium

  [ Lars Uebernickel ]
  * Enhance header bar styling (LP: #1376565)
  * Style overlay widgets needed by totem (LP: #1425155)

 -- CI Train Bot <ci-train-bot@canonical.com>  Thu, 19 Mar 2015 12:00:38 +0000

ubuntu-themes (14.04+15.04.20150212-0ubuntu1) vivid; urgency=medium

  [ Matthieu James ]
  * Added battery icons for more charge levels: 10%, 30%, 50%, 70% and
    90%. (LP: #1388235)

 -- CI Train Bot <ci-train-bot@canonical.com>  Thu, 12 Feb 2015 22:46:11 +0000

ubuntu-themes (14.04+15.04.20150128-0ubuntu2) vivid; urgency=medium

  * Drop unnecessary and NBS libmagickcore5-extra build dep.

 -- Martin Pitt <martin.pitt@ubuntu.com>  Mon, 02 Feb 2015 15:12:39 +0100

ubuntu-themes (14.04+15.04.20150128-0ubuntu1) vivid; urgency=low

  [ Lars Uebernickel ]
  * Set and animate spinner icon for password entry in unity-greeter and
    sound menu's playback item.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 28 Jan 2015 07:23:33 +0000

ubuntu-themes (14.04+15.04.20150126.1-0ubuntu1) vivid; urgency=low

  [ Iain Lane ]
  * Switch gnome-icon-theme to adwaita-icon-theme, which is its
    successor.

  [ Dmitry Shachnev ]
  * gnome-panel.css: Fix styling for checked GtkToggleButtons.

  [ Alberts Muktupāvels ]
  * metacity-theme: remove unsupported properties.

  [ Lars Uebernickel ]
  * Stop using the unico gtk engine
  * A few more fixes and cleanups for gtk 3.14 (combo boxes, spinners)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 26 Jan 2015 17:58:45 +0000

ubuntu-themes (14.04+15.04.20141217-0ubuntu1) vivid; urgency=low

  [ Lars Uebernickel ]
  * light-themes: update for gtk 3.14

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 17 Dec 2014 17:09:24 +0000

ubuntu-themes (14.04+15.04.20141105-0ubuntu1) vivid; urgency=low

  [ Matthieu James ]
  * Updated the designs of the web browser and system settings apps and
    added an icon for the missed alarm notification. Moved all the
    scalable colourful icons for apps and weather to new directories
    called 'sources' in order to exclude them from the icon lookup
    process. (LP: #1289465)
  * Suru icons: All the indicator icons are now grey except the battery
    ones. Added new transfer indicators to show upload or download.
    Messages indicator turned back to the envelope. Added new symbolic
    app icons for network and battery preferences (system settings
    menu). .

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 05 Nov 2014 17:35:51 +0000

ubuntu-themes (14.04+14.10.20141015-0ubuntu1) utopic; urgency=low

  [ Lars Uebernickel ]
  * Mark Ambiance and Radiance to use overlay scrollbars
  * gtk3 theme: fix gedit's search bar
  * Gtk theme: expose public colors with Adwaita's naming scheme

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 15 Oct 2014 07:05:41 +0000

ubuntu-themes (14.04+14.10.20140929-0ubuntu1) utopic; urgency=low

  [ Lars Uebernickel ]
  * Ambiance/Radiance: style popover menus correctly

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 29 Sep 2014 16:44:14 +0000

ubuntu-themes (14.04+14.10.20140925-0ubuntu1) utopic; urgency=low

  [ Charles Kerr ]
  * Revert the suru theme's message indicators back to the earlier
    'envelope' look. (LP: #1367817)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 25 Sep 2014 13:30:08 +0000

ubuntu-themes (14.04+14.10.20140806-0ubuntu1) utopic; urgency=low

  [ Matthieu James ]
  * Added new icons for bluetooth devices and collapse/expand view (LP:
    #1289465)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 06 Aug 2014 19:47:59 +0000

ubuntu-themes (14.04+14.10.20140721-0ubuntu1) utopic; urgency=low

  [ Matthieu James ]
  * Added new icons for bluetooth devices (LP: #1289465)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 21 Jul 2014 14:56:53 +0000

ubuntu-themes (14.04+14.10.20140711-0ubuntu1) utopic; urgency=low

  [ Michal Hruby ]
  * Fixes issue where when using suru theme - icons present in ubuntu-
    mobile aren't found when trying to use them on the desktop.

  [ Michał Sawicz ]
  * Mark packages Multi-Arch: foreign to fix cross-building.

  [ Lars Uebernickel ]
  * Fixes required by the 3.12 update Unify notebook borders and
    paddings to get rid of the border around tab bars (on notebooks and
    stand-alone, such as in gedit and gnome-terminal). Also, style
    header bars similarly to window title bars, but take care that
    header bars that are used as tool bars keep the same look as tool
    bars.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 11 Jul 2014 09:12:11 +0000

ubuntu-themes (14.04+14.10.20140707-0ubuntu1) utopic; urgency=low

  [ Matthieu James ]
  * New icons for the messaging menu (the names remain the same). New
    symbolic icons corresponding to different types of file (that can be
    download from the browser). New generic website icon. Fix a
    misspelled icon name (transfer indicator) (LP: #1289465)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 07 Jul 2014 21:06:26 +0000

ubuntu-themes (14.04+14.10.20140701-0ubuntu1) utopic; urgency=low

  [ Matthieu James ]
  * Added a sample JSON file to build lists of icons and modified app
    icons according to the standardized colour palette. (LP: #1289465)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 01 Jul 2014 07:52:02 +0000

ubuntu-themes (14.04+14.10.20140619-0ubuntu1) utopic; urgency=low

  [ Robert Ancell ]
  * Make ubuntu-mobile inherit from the Humanity / gnome themes. In the
    Unity 8 desktop session some applications refer to icons in these
    themes and this causes Unity 8 not to show an icon for them.

  [ Lars Uebernickel ]
  * Add preliminary support for popovers Add borders and shadow for the
    .popover class. Also set the background color for the .background
    class instead of on GtkWindow directly, because GtkPopover sets
    .background as well. (LP: #1329792)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 19 Jun 2014 09:07:31 +0000

ubuntu-themes (14.04+14.10.20140513-0ubuntu1) utopic; urgency=low

  [ Tim Peeters ]
  * New back icon in ubuntu-mobile theme (LP: #1317519)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 13 May 2014 10:08:32 +0000

ubuntu-themes (14.04+14.04.20140410-0ubuntu1) trusty; urgency=low

  [ William Hua ]
  * Refresh indicator-keyboard icons to include some missing layouts
    like Moldavian, Marathi (KaGaPa phonetic), and Sanskrit (KaGaPa
    phonetic). (LP: #1299402)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 10 Apr 2014 15:21:35 +0000

ubuntu-themes (14.04+14.04.20140402-0ubuntu1) trusty; urgency=low

  [ Marco Trevisan (TreviƱo) ]
  * Ambiance,Radiance: set the backdrop color for unity-panel widgets
    (LP: #1296866)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 02 Apr 2014 11:14:22 +0000

ubuntu-themes (14.04+14.04.20140327-0ubuntu1) trusty; urgency=low

  [ Lars Uebernickel ]
  * Give event boxes a bg color To make deja-dup's assistant windows
    work. Again, this is a temporary fix for gtk 3.10. (LP: #1295105)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 27 Mar 2014 18:21:00 +0000

ubuntu-themes (14.04+14.04.20140324-0ubuntu1) trusty; urgency=low

  [ Simon SteinbeiƟ ]
  * Drop input-keyboard as it overrides icon in other contexts (e.g.
    settings managers)

  [ Lars Uebernickel ]
  * Sound menu: remove rectangle around play/pause when launching a
    player Also set the foreground color for spinners in menus again in
    gtk-widgets-radiance.css. That file overrides the color set in gtk-
    widgets.css. (LP: #1231796)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 24 Mar 2014 18:05:01 +0000

ubuntu-themes (14.04+14.04.20140319-0ubuntu1) trusty; urgency=low

  [ Simon SteinbeiƟ ]
  * Recolor the audio-volume-muted-blocking-panel icon to reflect the
    SoundMenu spec (i.e. red icon over blue icon).
  * Bring back input-keyboard to both -light and -dark themes to fix
    broken symlinks to ibus-keyboard.svg and keyboard.svg Fix a few more
    broken symlinks resulting from gpm-ac-adapter being dropped.

  [ Marco Trevisan (TreviƱo) ]
  * Radiance: use properly sized corner radius (matching Ambiance) (LP:
    #1293742)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 19 Mar 2014 14:48:26 +0000

ubuntu-themes (14.04+14.04.20140318-0ubuntu1) trusty; urgency=low

  [ Matthieu James ]
  * Added action icons for the Telephony app and symbolic icons for the
    system settings menu (wallpaper, notifications, sounds, etc)

  [ Lars Uebernickel ]
  * Remove stray 'f' These render the next rule invalid.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 18 Mar 2014 09:43:32 +0000

ubuntu-themes (14.04+14.04.20140311.1-0ubuntu1) trusty; urgency=low

  [ Marco Trevisan (TreviƱo) ]
  * Ambiance, Radiance: use borderless decorations, different shadow
    colors and opacity based on status (LP: #1281368)

  [ Lars Uebernickel ]
  * Fix styling of linked entries Needed for evince's page selector.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 11 Mar 2014 18:50:51 +0000

ubuntu-themes (14.04+14.04.20140311-0ubuntu1) trusty; urgency=medium

  [ Didier Roche ]
  * Install the new suru icon theme in its own binary package
  * Bump standards-version

  [ Lars Uebernickel ]
  * Don't set toolbar's background to transparent Evolution uses the
    toolbar's background color for the frame in its mail view. A
    transparent background will make that appear black.
  * Give the .view class a background Fixes black background in the dnd
    widgets when dragging a GtkTreeView row.
  * Set gtk-alternative-sort-arrows to true The triangles used by the
    themes convey sort order better when flipped (pointing up is
    ascending). (LP: #901703)
  * Add margin to popup menus to prevent accidental clicks Gtk displaces
    the menus based on the margin. A margin of 1px ensures that the
    mouse pointer is not over the first (or last) menu item after right-
    clicking. (LP: #1281617)
  * Move .view class background further up So that the .rubberband rules
    come after it.
  * Fix black backgrounds in glade and baobab The black backgrounds only
    appear when using overlay-scrollbars. These are hacks to work around
    limitations in gtk 3.10.
  * Fix linked button appearance The left-most buttons in primary
    toolbars didn't have a left border and the middle buttons had
    borders when the window was unfocussed. (LP: #1290501)

  [ Matthieu James ]
  * This is the new icon theme for Ubuntu Touch. It inherits Ubuntu-
    Mobile to ensure that all the icons remain displayed despite some
    names have changed.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 11 Mar 2014 08:24:11 +0000

ubuntu-themes (13.04+14.04.20140217-0ubuntu1) trusty; urgency=low

  [ Lars Uebernickel ]
  * Set a background color for windows and entries Mainly to make
    evolution's mail view work, as that uses the background color of
    windows and entries.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 347

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 17 Feb 2014 14:06:21 +0000

ubuntu-themes (13.04+14.04.20140213.2-0ubuntu1) trusty; urgency=low

  [ Dmitry Shachnev ]
  * Move GtkWindow close button to the left and make GtkStacks inside
    GtkHeaderBar transparent.

  [ Lars Uebernickel ]
  * Ambiance: show menu separators.
  * gtk-3.0: don't set the background color of all widgets This breaks
    some composite widgets in gtk3, such as GtkInfoBar. This patch still
    sets the background of GtkPaned, which breaks when using the
    overlay-scrollbar module.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 345

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 13 Feb 2014 18:05:18 +0000

ubuntu-themes (13.04+14.04.20140206.1-0ubuntu1) trusty; urgency=low

  [ Łukasz 'sil2100' Zemczak ]
  * To work-around the bug of LP: #1251285, we actually need a manually
    orange-colored caps/shift key. In the past we were doing that in
    software, but it seems to cause some problems right now. (LP:
    #1251285)

  [ AndrƩs G. Aragoneses ]
  * Ambiance: GtkTreeView enhancements to be less widget specific Rules
    should aimed to be applied to classes rather than specific widgets.
    For example a good way to start doing this is in the Treeview rules
    that define zebra stripping: by making them target the .view class,
    we make zebra stripping compatible with other Treeview-like widgets,
    like Banshee's ListView. This also goes more in sync with GTK
    upstream, i.e. you can take its default theme as an example:
    https://github.com/GNOME/gtk/blob/3.10.7/gtk/gtk-default.css#L72 .

  [ Marco Trevisan (TreviƱo) ]
  * Ambiance, Radiance: add UnityDecorations css to match previous
    metacity themes.

  [ Lars Uebernickel ]
  * GtkFrame: don't draw a background. (LP: #1276098)
  * Radiance: use dark checks and radio images in menu items.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 341

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 06 Feb 2014 10:07:12 +0000

ubuntu-themes (13.04+14.04.20140117.1-0ubuntu1) trusty; urgency=low

  [ AndrƩs G. Aragoneses ]
  * Ambiance: support zebra striping for treeviews This is a rework of
    Andrea's patch (committed in r220:
    http://bazaar.launchpad.net/~ubuntu-art-pkg/ubuntu-
    themes/trunk/revision/220) that doesn't introduce a visual glitch on
    progress bars inside treeviews (because of this visual glitch, the
    r220 patch was reverted in r234:
    http://bazaar.launchpad.net/~ubuntu-art-pkg/ubuntu-
    themes/trunk/revision/234 and bug LP#945430 had to be reopened), and
    therefore allows us to have a theme that implements zebra striping
    treeviews when applications choose to use them via
    `self.treeview.set_rules_hint(True)` API. . (LP: #945430)

  [ Lars Uebernickel ]
  * Fix some theming issues in gedit (file browser toolbar and context
    menu font). (LP: #1242984)
  * gedit: make search occurences label readable.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 335

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 17 Jan 2014 19:27:58 +0000

ubuntu-themes (13.04+14.04.20140109-0ubuntu1) trusty; urgency=low

  [ Sebastien Bacher ]
  * copy upstream gedit tweaks it makes the background colored on error
    .

  [ Lars Uebernickel ]
  * Use outline attributes for focus Unico is now looking at those to
    find out how to render the focus ring.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 331

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 09 Jan 2014 07:10:56 +0000

ubuntu-themes (13.04+14.04.20131211-0ubuntu1) trusty; urgency=low

  [ William Hua ]
  * Fix timestamp colours in gnome-system-log (LP: #1045602). (LP:
    #1045602)

  [ AndrƩs G. Aragoneses ]
  * Cleanup gtk3 CSS files removing empty rules (Ambiance and Radiance
    themes).
  * Radiance-GTK3: Fix CSS state pseudoclasses precedence This fix is
    the same one that was applied to Ambiance in Ubuntu Saucy:
    http://bazaar.launchpad.net/~ubuntu-art-pkg/ubuntu-
    themes/trunk/revision/311 But this time for the Radiance theme. The
    launchpad bug for Ambiance was:
    https://bugs.launchpad.net/bugs/1211831. (LP: #1211831)
  * Ambiance: remove redundant attributes Before revision 311 [1], the
    attributes for states pseudoclasses were not being applied properly
    (as by the rules of CSS precedence, these had the same specificity
    as other class rules, so the last one to be specified won), so then
    these attributes were being hardcoded in a duplicated manner in many
    rules with pseudoclasses. Such was the case for the following
    attributes: row:selected { color: @selected_fg_color; }
    row:selected:backdrop { color: @backdrop_selected_fg_color; }
    .entry:selected, .entry:selected:focused { color:
    @selected_fg_color; } GtkIconView.view.cell:selected,
    GtkIconView.view.cell:selected:focused { color: @selected_fg_color;
    } But, as revision 311 [1] added the pseudoclasses at the end of the
    CSS file, then these attributes finally took effect in all cases,
    and therefore they become redundant, so it is safe to remove them.
    [1] http://bazaar.launchpad.net/~ubuntu-art-pkg/ubuntu-
    themes/trunk/revision/311.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 328

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 11 Dec 2013 16:12:29 +0000

ubuntu-themes (13.04+13.10.20131014-0ubuntu1) saucy; urgency=low

  [ Matthieu James ]
  * All the application icons are provided as PNGs in 240x225 pixels
    (@30). New indicator and action icons. A few tweaks on existing
    icons. (LP: #1212184)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 323

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 14 Oct 2013 07:56:21 +0000

ubuntu-themes (13.04+13.10.20130925-0ubuntu1) saucy; urgency=low

  [ William Hua ]
  * Revert a line from revision 315 which causes warnings and makes GTK+
    tests fail. (LP #1228814). (LP: #1228814)
  * Only add padding between GtkImages and GtkLabels in menu items. (LP
    #1228809) Thanks Alberts Muktupāvels. (LP: #1228809)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 321

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 25 Sep 2013 12:54:51 +0000

ubuntu-themes (13.04+13.10.20130919.3-0ubuntu1) saucy; urgency=low

  * Automatic snapshot from revision 318

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 19 Sep 2013 22:05:15 +0000

ubuntu-themes (13.04+13.10.20130919.2-0ubuntu1) saucy; urgency=low

  [ William Hua ]
  * Add spacing between a GtkModelMenuItem's icon and its label.

  [ Jeremy Bicha ]
  * Drop input-keyboard icons, now that we have a proper
    indicator-keyboard. (LP: #862027)

  [ James Schriver ]
  * Fix light toolbar separators in Ambiance (LP: #1181661)

  [ Martin Pitt ]
  * Drop apport icons, we want to use the ones shipped by apport itself.
    (LP: #1079639)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 315

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 19 Sep 2013 14:05:04 +0000

ubuntu-themes (13.04+13.10.20130917.1-0ubuntu1) saucy; urgency=low

  [ AndrƩs G. Aragoneses ]
  * Fix Ambiance's gtk3 appearance for readonly Entry widgets. (LP:
    #1219205)
  * Change CSS state pseudoclasses precedence. (LP: #1211831)

  [ Matthieu James ]
  * Various updates for the network and bluetooth indicators (new
    bluetooth-paired icon, new icons for different types of cellular
    network, some icons renamed with proper names, etc) and the network
    menu. (LP: #1212184)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 311

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 17 Sep 2013 22:03:57 +0000

ubuntu-themes (13.04+13.10.20130812-0ubuntu1) saucy; urgency=low

  * Automatic snapshot from revision 307

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 12 Aug 2013 18:05:03 +0000

ubuntu-themes (13.04+13.10.20130807-0ubuntu1) saucy; urgency=low

  [ Exalm ]
  * Add combobox button assets Ambiance/Radiance to fix Evince toolbar
    (LP: #1118838) (LP: #1118838)

  [ Matthieu James ]
  * Added two new icons for Contacts and Messages applications since
    Telephony has been split in three parts.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 305

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 07 Aug 2013 00:02:17 +0000

ubuntu-themes (13.04+13.10.20130802-0ubuntu1) saucy; urgency=low

  [ James Schriver / Exalm ]
  * Fix regression, bring back dark toolbars in Gtk+3 apps. (LP: #1118838)
  * Apply dark toolbar fixes for Evince.

  [ Alberts Muktupavels ]
  * Restore padding between texts 'Applications' and 'Places' in
    gnome-panel, currently there is no space running
    gnome-session-fashback. (LP: #1154814)
  
  [ Nick Dedekind ]
  * Add missing battery icon links to ubuntu-mobile theme, needed for
    indicator-power.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 302

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 02 Aug 2013 00:02:43 +0000

ubuntu-themes (13.04+13.10.20130716-0ubuntu1) saucy; urgency=low

  * Automatic snapshot from revision 297

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 16 Jul 2013 00:02:01 +0000

ubuntu-themes (13.04+13.10.20130712-0ubuntu1) saucy; urgency=low

  [ Dmitrijs Ledkovs ]
  * Gtk+ 3 got fixed, and now actually started to honour link color, which
    was defined as light blue. But orange links have grown on us
    already. Thus defining link colour to be orange. (LP: #1187327)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 295

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 12 Jul 2013 00:02:31 +0000

ubuntu-themes (13.04daily13.06.13-0ubuntu2) UNRELEASED; urgency=low

  * Add indicator-keyboard icons.

 -- William Hua <william.hua@canonical.com>  Tue, 18 Jun 2013 13:24:35 -0400

ubuntu-themes (13.04daily13.06.13-0ubuntu1) saucy; urgency=low

  [ Matthieu James ]
  * This update of the the mobile icon theme is focused on action icons:
    along with a few new icons, some tweaks to improve the general look
    and feel of the theme and make the icons compliant with the new
    behavior of the search fields. .

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 293

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 13 Jun 2013 00:03:01 +0000

ubuntu-themes (13.04daily13.06.12-0ubuntu1) saucy; urgency=low

  [ Xi Zhu ]
  * Change GtkInfobar Error foreground & background colors to make them more readable. (LP: #1144611)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 291

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 12 Jun 2013 00:02:55 +0000

ubuntu-themes (13.04daily13.05.31-0ubuntu1) saucy; urgency=low

  [ Alexandre Belloni ]
  * Fix desktop background not showing (LP: #1159430). (LP: #1159430)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 289

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 31 May 2013 00:03:23 +0000

ubuntu-themes (13.04daily13.05.30-0ubuntu1) saucy; urgency=low

  * Automatic snapshot from revision 287

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 30 May 2013 00:24:33 +0000

ubuntu-themes (13.04daily13.05.29ubuntu.unity.next-0ubuntu1) saucy; urgency=low

  * Automatic snapshot from revision 286 (ubuntu-unity/next)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 29 May 2013 16:55:47 +0000

ubuntu-themes (13.04daily13.05.20ubuntu.unity.next-0ubuntu1) raring; urgency=low

  [ Łukasz 'sil2100' Zemczak ]
  * debian/control, debian/rules:
    - Changes related to compliance to our packaging standards

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 285 (ubuntu-unity/next)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 20 May 2013 00:01:00 +0000

ubuntu-themes (13.04daily13.04.12-0ubuntu1) raring; urgency=low

  * Automatic snapshot from revision 283

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 12 Apr 2013 00:02:22 +0000

ubuntu-themes (13.04daily13.03.13.1-0ubuntu1) raring; urgency=low

  [ Renato Araujo Oliveira Filho ]
  * Adding ubuntu-mobile-icons package
  * [FFe] New ubuntu-mobile-icons package (LP: #1154047)
  * integrate touch icon theme into normal ubuntu icon theme project
    (LP: #1150011)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 281

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 13 Mar 2013 08:07:55 +0000

ubuntu-themes (13.04daily13.03.12-0ubuntu1) raring; urgency=low

  [ Sebastien Bacher ]
  * Launcher - Update the icons used for the Software Centre, Nautilus,
    and Software Updater (LP: #1081691)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 279

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 12 Mar 2013 00:02:05 +0000

ubuntu-themes (13.04daily13.03.05-0ubuntu1) raring; urgency=low

  * Automatic snapshot from revision 277

 -- Automatic PS uploader <ps-jenkins@lists.canonical.com>  Tue, 05 Mar 2013 00:01:43 +0000

ubuntu-themes (13.04daily13.02.20-0ubuntu1) raring; urgency=low

  [ Ryan Lortie ]
  * ubuntu-themes don't work with gtk 3.7 (LP: #1130183)

  [ Automatic PS uploader ]
  * Automatic snapshot from revision 275

 -- Automatic PS uploader <ps-jenkins@lists.canonical.com>  Wed, 20 Feb 2013 00:01:27 +0000

ubuntu-themes (13.04daily13.02.14-0ubuntu1) raring; urgency=low

  [ Adolfo Jayme Barrientos ]
  * calendar applet no longer grays out days for months other than
    current (LP: #876167)

  [ Automatic PS uploader ]
  * Automatic snapshot from revision 273

 -- Automatic PS uploader <ps-jenkins@lists.canonical.com>  Thu, 14 Feb 2013 00:01:53 +0000

ubuntu-themes (13.04daily13.02.04-0ubuntu1) raring; urgency=low

  [ Michael Terry ]
  * Unity Greeter - Text highlight in password field should be white
    (LP: #1056944)

  [ Automatic PS uploader ]
  * Automatic snapshot from revision 271

 -- Automatic PS uploader <ps-jenkins@lists.canonical.com>  Mon, 04 Feb 2013 00:00:56 +0000

ubuntu-themes (13.04daily13.01.10-0ubuntu1) raring; urgency=low

  [ Dmitry Shachnev ]
  * Remove user-desktop.icon, we no longer use it in window switcher
    and it looks uglier than its humanity equivalent.
    + Remove no longer needed build-dependencies on ubuntu-wallpapers
      and imagemagick.
    + Remove no longer needed code in debian/rules.

  [ Iain Lane ]
  * Increase 'upstream' version. 

  [ Automatic PS uploader ]
  * Automatic snapshot from revision 269

 -- Automatic PS uploader <ps-jenkins@lists.canonical.com>  Thu, 10 Jan 2013 16:12:20 +0000

ubuntu-themes (13.04daily12.12.11-0ubuntu1) raring; urgency=low

  [ Didier Roche ]
  * Remove unapplied patch
  * Distro-patch is now inlined upstream
  * Remove now unsupported transition Breaks/Replaces/Conflits
  * Add Vcs-Bzr add notice
  * Delete uneeded gconf tweaks
  * Switch to dh9
  * Refresh debian/copyright
  * Add split mode
  * Rename light-themes to ubuntu-themes and merge other source packages:
    - Integrating ubuntu-mono package and Mathieu's below work
    - Integrating ubuntu-artwork with the distro logo into this one as well.
      Add an epoch to the binary package as it's already rev 58.
  * Build in parallel, some minor packaging fixes
  * Add COPYING license and fix debian/copyright
  * Automatic snapshot from revision 256 (bootstrap)

  [ Mathieu Trudel-Lapierre ]
  * debian/control:
    - Bump debhelper Build-Depends to >= 9.
    - Update style to use trailing commas at the end of dependency lists.
    - Update Vcs-Bzr, Vcs-Browser and add a notice to uploaders.
  * debian/compat: bump to compat level 9.
  * debian/rules:
    - Clean up -- remove commented lines, add some whitespace for clarity.
    - Use dh_install with --fail-missing.
  * debian/copyright: update to DEP-8 format; fix copyright instances to make
    sure they are properly listed as GPL-3 where appropriate (instead of 3+),
    and CC-BY-SA-3.0.
  * debian/warty-final-ubuntu.jpg: removed.
  * Move built copies of the desktop icons from debian/places to places/ where
    it belongs; adjust path in debian/rules accordingly.

  [ Automatic PS uploader ]
  * Automatic snapshot from revision 265

 -- Automatic PS uploader <ps-jenkins@lists.canonical.com>  Tue, 11 Dec 2012 11:48:54 +0000

light-themes (0.1.93) quantal; urgency=low

  * New upstream snapshot with a few bug fixes including one to make the 
    GtkSpinners widget spin correctly (lp: #1051851)

 -- Sebastien Bacher <seb128@ubuntu.com>  Fri, 28 Sep 2012 18:40:49 +0200

light-themes (0.1.92-0ubuntu1) quantal; urgency=low

  * New upstream snapshot
    - Some fixes for ubuntu online accounts
    - Theme the switch in the primary toolbar
    - Some fixes for unity greeter
    - Some tweaks to baobab
    - Fix progressbar in cell renderer

 -- Michael Terry <mterry@ubuntu.com>  Thu, 30 Aug 2012 15:23:54 -0400

light-themes (0.1.91-0ubuntu1) quantal; urgency=low

  * New upstream snapshot
    - New checkbuttons and radio, with hover states
    - Restore the panel text shadow
    - Merge GtkLevel block theming
    - unity-greeter: theme new combo boxes

 -- Michael Terry <mterry@ubuntu.com>  Tue, 28 Aug 2012 13:19:14 -0400

light-themes (0.1.90-0ubuntu1) quantal; urgency=low

  * New upstream snapshot

 -- Ken VanDine <ken.vandine@canonical.com>  Wed, 08 Aug 2012 14:49:16 -0400

light-themes (0.1.11-0ubuntu1) quantal; urgency=low

  * New upstream snapshot
    - work around GtkComboBox bug triggered by transition in the theme 
      CSS (LP: #1015497)

 -- Ken VanDine <ken.vandine@canonical.com>  Fri, 22 Jun 2012 10:20:19 -0400

light-themes (0.1.10-0ubuntu1) quantal; urgency=low

  * New upstream snapshot
    - Updates to work with gtk 3.5.4 (LP: #1000545)

 -- Ken VanDine <ken.vandine@canonical.com>  Mon, 18 Jun 2012 10:41:59 -0400

light-themes (0.1.9.2-0ubuntu1) quantal; urgency=low

  * New upstream snapshot
    - Add backdrop option, fixes Ambiance theming for menu bar & window 
      list (LP: #955376, LP: #981289)
    - Enable the Ubuntu icon for the Applications menu (LP: #986988)

 -- Ken VanDine <ken.vandine@canonical.com>  Wed, 30 May 2012 14:51:05 -0400

light-themes (0.1.9.1-0ubuntu1) precise; urgency=low

  * New upstream snapshot
    - Remove the need for gtk2-engines-pixbuf in the gtk2 theme, 
      saves some CD space
  * debian/control
    - Dropped depends for gtk2-engines-pixbuf

 -- Ken VanDine <ken.vandine@canonical.com>  Thu, 12 Apr 2012 09:31:04 -0400

light-themes (0.1.9-0ubuntu1) precise; urgency=low

  * New upstream snapshot
    - unity-greeter: fixes for buttons/entries
    - Fixes native scrollbars
    - GtkTreeview tweaks
  * debian/control
    - bump standards version to 3.9.3

 -- Ken VanDine <ken.vandine@canonical.com>  Fri, 06 Apr 2012 11:14:33 -0400

light-themes (0.1.8.32-0ubuntu3) precise; urgency=low

  * debian/patches/greeter-white-border.patch:
    - Make a design-team-requested minor tweak to the greeter.
      Makes focus glow around buttons white instead of orange.
      Patch taken from upstream.  (UIFe, LP: #975153)

 -- Michael Terry <mterry@ubuntu.com>  Fri, 06 Apr 2012 10:08:20 -0400

light-themes (0.1.8.32-0ubuntu2) precise; urgency=low

  * debian/control
    - depend on gtk2-engines-pixbuf, which was inadvertently dropped 
      in a previous upload 

 -- Ken VanDine <ken.vandine@canonical.com>  Thu, 05 Apr 2012 09:06:08 -0400

light-themes (0.1.8.32-0ubuntu1) precise; urgency=low

  * New upstream snapshot
    - Fix fg_color for GtkComboBox (LP: #949368)

 -- Ken VanDine <ken.vandine@canonical.com>  Thu, 29 Mar 2012 16:37:39 -0400

light-themes (0.1.8.31-0ubuntu1) precise; urgency=low

  * New upstream snapshot 
    - Set the background-color for the GtkDrawingArea for notebook (LP: #922516)
    - contact info tooltips not readable in empathy  (LP: #929651)
    - Ambiance/Radiance Nautilus Sidepane Invisible Drag & Drop File 
      Selection (LP: #945014)
    - gnome-panel: fixed low-contrast labels in window list (LP: #828392)
    - gnome-panel: fixed gradient range for Ambiance
    - gnome-panel: fix cropped icons in bottom panel (LP: #926487)
    - gnome-panel: fix border artifact around applet frames (LP: #920843)
    - gnome-panel: theming for separator (LP: #945644)
    
 -- Ken VanDine <ken.vandine@canonical.com>  Wed, 14 Mar 2012 16:08:44 -0400

light-themes (0.1.8.30-0ubuntu2) precise; urgency=low

  * {Ambiance,Radiance}/gtk-3.0/gtk-widgets.css
    - fix the broken animation in the spinner

 -- Ken VanDine <ken.vandine@canonical.com>  Fri, 02 Mar 2012 13:19:42 -0500

light-themes (0.1.8.30-0ubuntu1) precise; urgency=low

  * New snapshot
    - Added unfocused theme (LP: #940190)
    - Selected Text Should Be White on Nautilus Location Bar (LP: #931091)

 -- Ken VanDine <ken.vandine@canonical.com>  Wed, 29 Feb 2012 16:44:24 -0500

light-themes (0.1.8.29-0ubuntu1) precise; urgency=low

  * {Ambiance,Radiance}/gtk-3.0/gtk-widgets.css
    - Don't set GtkDrawingArea background-color to @transparent, it breaks 
      applications like shotwell (LP: #931630)

 -- Ken VanDine <ken.vandine@canonical.com>  Tue, 21 Feb 2012 11:53:31 -0500

light-themes (0.1.8.29) precise; urgency=low

  * New upstream snapshot
    - Fixes for yelp (LP: #929126)
  * debian/control
    - added Vcs

 -- Ken VanDine <ken.vandine@canonical.com>  Thu, 09 Feb 2012 12:23:56 -0500

light-themes (0.1.8.28.1) precise; urgency=low

  * Updated nautilus.css for Radiance to fix deprecations for gtk 3.3.14
  * Fixed text selection and background for gedit 

 -- Ken VanDine <ken.vandine@canonical.com>  Wed, 08 Feb 2012 10:00:17 -0500

light-themes (0.1.8.28) precise; urgency=low

  * Fixes to the menuitem label color when selected
  * Some theming for the unity greeter
  * Fixes to menubar items and tweaks to Firefox/Thunderbird
  * Updated to work with gtk 3.3.14, requires new unico
  * debian/control
    - bumped depends for gtk3-engines-unico to >= 1.0.1-0ubuntu2

 -- Ken VanDine <ken.vandine@canonical.com>  Wed, 08 Feb 2012 09:20:09 -0500

light-themes (0.1.8.27.2) precise; urgency=low

  * Ambiance/gtk-2.0/gtkrc, Radiance/gtk-2.0/gtkrc
    - gtk2 theme bugs in thunderbird have been resolved, so undoing the 
      previous revert

 -- Ken VanDine <ken.vandine@canonical.com>  Mon, 06 Feb 2012 11:00:42 -0500

light-themes (0.1.8.27.1) precise; urgency=low

  * Ambiance/gtk-2.0/gtkrc, Radiance/gtk-2.0/gtkrc
    - Revert gtk2 menu changes that caused issues in thunderbird until 
      we can get that fixed properly

 -- Ken VanDine <ken.vandine@canonical.com>  Fri, 03 Feb 2012 09:17:02 -0500

light-themes (0.1.8.27) precise; urgency=low

  * New snapshot
    - Fix styling of bread crumbs (LP: #917830)
    - Minor fixes for both gtk2 and gtk3 based themes

 -- Ken VanDine <ken.vandine@canonical.com>  Thu, 26 Jan 2012 10:10:44 -0500

light-themes (0.1.8.26) precise; urgency=low

  * New snapshot
    - Fixes for gtk 3.3.8
    - Fixes separator padding/height in menuitem
    - First set of fixes to notebook tab padding
    - Updates for the spinbutton
    - Updates for scale and overlay scrollbar

 -- Ken VanDine <ken.vandine@canonical.com>  Tue, 17 Jan 2012 10:35:10 -0500

light-themes (0.1.8.25) oneiric; urgency=low

  * New snapshot
    - the text on desktop icons doesn't adapt to the background 
      color  (LP: #854401)

 -- Ken VanDine <ken.vandine@canonical.com>  Tue, 20 Sep 2011 09:04:00 -0700

light-themes (0.1.8.24) oneiric; urgency=low

  * New snapshot version

 -- Sebastien Bacher <seb128@ubuntu.com>  Thu, 08 Sep 2011 21:16:25 +0200

light-themes (0.1.8.23) oneiric; urgency=low

  * Some tweaks to follow changes in unico 1.0.1

 -- Ken VanDine <ken.vandine@canonical.com>  Thu, 01 Sep 2011 16:00:52 -0400

light-themes (0.1.8.22) oneiric; urgency=low

  * New snapshot

 -- Ken VanDine <ken.vandine@canonical.com>  Thu, 25 Aug 2011 12:21:44 -0400

light-themes (0.1.8.21) oneiric; urgency=low

  * New snapshot
    - Fix for Ambiance unfocused metacity

 -- Ken VanDine <ken.vandine@canonical.com>  Wed, 10 Aug 2011 21:40:22 -0400

light-themes (0.1.8.20) oneiric; urgency=low

  * New snapshot

 -- Ken VanDine <ken.vandine@canonical.com>  Wed, 10 Aug 2011 13:53:02 -0400

light-themes (0.1.8.19) oneiric; urgency=low

  * {Ambiance,Radiance}/metacity-1/metacity-theme-1.xml:
    - make all shadow size of 8 to minimize recent perf issue with
      unity-window-decorator, waiting for the real fix.

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 21 Jul 2011 07:32:08 +0200

light-themes (0.1.8.18) oneiric; urgency=low

  * Radiance/gtk-3.0/apps/gnome-panel.css: Fix syntax error. (LP: #804157)

 -- Martin Pitt <martin.pitt@ubuntu.com>  Wed, 06 Jul 2011 10:23:48 +0200

light-themes (0.1.8.17) oneiric; urgency=low

  * New snapshot
    - fix datetime indicator calendar difficult to read with Ambiance
      (LP: #804348)

 -- Didier Roche <didrocks@ubuntu.com>  Mon, 04 Jul 2011 12:54:01 +0200

light-themes (0.1.8.16) oneiric; urgency=low

  * New snapshot
    - use with new modal dialog plugin for compiz
    - adjust size and color for the expanders
    - removed some deprecated stuff
    - adjust text-shadow
    - style default buttons
    - tweaks to the focus ring, required unico 0.1.0+r74
  * debian/control
    - Require gtk3-engines-unico >= 0.1.0+r74

 -- Ken VanDine <ken.vandine@canonical.com>  Thu, 30 Jun 2011 10:36:34 +0100

light-themes (0.1.8.15) oneiric; urgency=low

  * Added gtk3 version of Radiance 

 -- Ken VanDine <ken.vandine@canonical.com>  Mon, 20 Jun 2011 13:16:16 -0400

light-themes (0.1.8.14) oneiric; urgency=low

  * New snapshot with unico based gtk3 theme
  * debian/control
    - Added a depends on gtk3-engines-unico (>= 0.1.0+r69)
    - Bumped standards version to 3.9.2

 -- Ken VanDine <ken.vandine@canonical.com>  Fri, 17 Jun 2011 16:27:28 -0400

light-themes (0.1.8.13.1) natty-proposed; urgency=low

  [Andrea Cimitan]
  * Don't load gedit.rc custom settings, as they are introducing
    regressions (LP: #740864)

 -- Paul Sladen <sladen@ubuntu.com>  Fri, 29 Apr 2011 15:11:15 +0200

light-themes (0.1.8.13) natty; urgency=low

  [James Schriver]
  * Ambiance/Radiance/apps/gedit.rc
    - Add gedit specific theming bits fixes (LP: #740864)
    - Minor gedit specific theming tweaks
  * Ambiance/gtk-2.0/gtkrc
    - Adjust dark settings to fix me-menu (LP: #664794)

  [Andrea Cimitan]
  * Ambiance/Radiance/gtk-2.0/gtkrc
  - Tweaked colors for overlay-scrollbars (LP: #767524)
  * Ambiance/Radiance/gtk-3.0/
  - Directories removed (unused)

 -- James Schriver <jws141@gmail.com>  Sun, 17 Apr 2011 00:31:42 -0400

light-themes (0.1.8.12) natty; urgency=low

  [James Schriver]
  * Ambiance/metacity-1/metacity-theme-1.xml
    - Darken frame and bottom edge fix for (LP:740579)
  * Radiance/apps/chromium.rc
    - Fix incognito theming in Radiance (LP: #697854)
  * Radiance/metacity/metacity-theme-1.xml
    - Revert fix borderless overlap (LP: #733504) as this is a fix
      for "0" pixel borders"

 -- James Schriver <jws141@gmail.com>  Mon, 11 Apr 2011 11:13:13 -0400

light-themes (0.1.8.11) natty; urgency=low

  [Andrea Cimitan]
  * Ambiance/Radiance/gtk-2.0/gtkrc
    - Fix inconsistent menu item distances (LP: #659866)
  * Ambiance/apps/gnome-terminal.rc
    - Add dark-terminal theming to tweak resize grip 
  * Ambiance/Radiance/apps/chromium.rc
    - Add specific chromium theming bits (LP: #697854)

  [Daniel ForƩ]
  * Ambiance/gtk-2.0/apps/ubuntuone.rc
    - Further tweaks following on from (LP: #715717)
    - May need further adjusting to cope with widgetname adjustments
      in the application itself.

  [James Schriver]
  * Radiance/metacity/metacity-theme-1.xml
    - Fix borderless overlap (LP: #733504)*
    - Update <info> meta-data; version, and incorrect Radiance *name*.
    - Downcase some hexadecimal colours

  [Paul Sladen]
  * This release is known not to be perfect but is an iterative
    improvement on the previous and should get a new base-line.

 -- Paul Sladen <sladen@canonical.com>  Mon, 11 Apr 2011 08:36:37 +0000

light-themes (0.1.8.10) natty; urgency=low

  * {Amb,Rad}iance/metacity-1/metacity-theme-1.xml
    Revert borders to 1px (blandness, and issues with
    Metacity and Unity-2D).  (LP: #733431, #733233)

 -- Paul Sladen <sladen@canonical.com>  Sat, 12 Mar 2011 13:28:45 +0000

light-themes (0.1.8.9) natty; urgency=low

  [Neil J. Patel]
  * {Amb,Rad}iance/metacity-1/metacity-theme-1.xml
    Make borders = 0
    - Invisible grip size = 5
    - Shadow = 45.0 radius and 0.75 opacity (LP: #733233)

 -- Paul Sladen <sladen@canonical.com>  Fri, 11 Mar 2011 12:35:01 +0000

light-themes (0.1.8.8) natty; urgency=low

  * Ambiance/gtk-2.0/gtkrc
    - Removed style for IdoMessageDialog
  * Radiance/gtk-2.0/gtkrc
    - Removed style for IdoMessageDialog

 -- Ken VanDine <ken.vandine@canonical.com>  Thu, 24 Feb 2011 21:17:19 -0500

light-themes (0.1.8.7) natty; urgency=low

  [Daniel ForƩ]
  * apps/ubuntuone.rc: Move the Ubuntu One-specific themeing for when
    running under light-themes into the theme.  This impoves the
    look of the Ubuntu One clients when running under other themes.
    (LP: #715717)

 -- Paul Sladen <sladen@ubuntu.com>  Wed, 23 Feb 2011 16:20:00 +0000

light-themes (0.1.8.6) natty; urgency=low

  * Ambiance/gtk-2.0/gtkrc, Radiance/gtk-2.0/gtkrc
    - Set style for IdoMessageDialog used by incoming call notifications 
      in empathy

 -- Ken VanDine <ken.vandine@canonical.com>  Fri, 28 Jan 2011 23:03:18 -0500

light-themes (0.1.8.5) natty; urgency=low

  [ Sam Spilsbury ]
  * New Ambiance properties for <shadow> and <padding> added to
    metacity theme files (for invisible window grip support).
    These are read by libmetacity-private so that they can be
    exported by new functionality and picked up by
    'unity-window-decorator' which was introduced in compiz-gnome
    1:0.9.2.1+glibmainloop4. Partial solution to (LP: #160311).

  [ Paul Sladen ]
  * Apply Ambiance/.../metacity-theme-1.xml changes to Radiance.
  * Add Breaks: metacity (<< 1:2.30.3-0ubuntu2) since the introduction
    of new parsing support will prevent backporting to maverick unless
    the corresponding patch to Metacity is backported first.

 -- Paul Sladen <sladen@ubuntu.com>  Thu, 27 Jan 2011 10:22:00 +0000

light-themes (0.1.8.4) natty; urgency=low

  * Add symlinks so the themes work in GTK3

 -- Robert Ancell <robert.ancell@canonical.com>  Thu, 11 Nov 2010 16:20:13 +1100

light-themes (0.1.8.3) maverick-proposed; urgency=low

  * Include cpu-freq among the panel applets known to the Ambiance theme
    (LP: #640096)

 -- John S Gruber <JohnSGruber@gmail.com>  Fri, 01 Oct 2010 23:00:56 -0400

light-themes (0.1.8.2) maverick; urgency=low

  * Removes a warning due to the usage of symbolic colors for odd-row-color
  * Workaround for firefox's menubar item text in Radiance

 -- Andrea Cimitan <andrea.cimitan@gmail.com>  Tue, 05 Oct 2010 15:40:26 +0200

light-themes (0.1.8.1) maverick; urgency=low

  * helps making disabled menu items more readable (LP: #617192)

 -- Andrea Cimitan <andrea.cimitan@gmail.com>  Mon, 27 Sep 2010 16:42:10 +0200

light-themes (0.1.8) maverick; urgency=low

  * usability fixes based on the user feedback (LP: #634422)
    - Menuitem speedup
    - Subtle shadow on inactive notebookā€™s tabs
    - White text color on GtkProgressBar
    - Increased visibility of the resize gripper
    - Fixed contrast applied to elements in GtkStatusbar
    - More compatibility with custom color specified in Appearance Preferences
    - Increased contrast between text and background
    - Tweaks to the odd row color inside GtkTreeView

 -- Ken VanDine <ken.vandine@canonical.com>  Tue, 21 Sep 2010 17:09:53 -0400

light-themes (0.1.7) maverick; urgency=low

  * New version
    - Updated for maverick
    - Dropped the -maverick-beta themes and use the default names
  * debian/source/format
    - Specify source format
  * debian/control
    - Bump standards version to 3.9.1

 -- Ken VanDine <ken.vandine@canonical.com>  Thu, 26 Aug 2010 14:06:05 -0400

light-themes (0.1.6.8) maverick; urgency=low

  * New version
    - include Ambiance-maverick-beta and a -dark variant

 -- Ken VanDine <ken.vandine@canonical.com>  Tue, 10 Aug 2010 09:49:13 -0400

light-themes (0.1.6.8~ppa2) maverick; urgency=low

  * Update of Ambiance-maverick-beta and inclusion of -dark variant

 -- Kenneth Wimer <kwwii@ubuntu.com>  Tue, 10 Aug 2010 11:41:27 +0200

light-themes (0.1.6.8~ppa1) maverick; urgency=low

  * Adding latest changes to Ambiance which now requires the latest git snapshot of the murrine theme engine. 
  * Bumping version number for maverick

 -- Kenneth Wimer <kwwii@ubuntu.com>  Thu, 05 Aug 2010 15:28:32 +0200

light-themes (0.1.6.7) maverick; urgency=low

  * Updated Ambiance for ido calendar theming, thanks Cody Russell

 -- Sebastien Bacher <seb128@ubuntu.com>  Thu, 22 Jul 2010 21:33:30 +0200

light-themes (0.1.6.6~ppa4) lucid; urgency=low

  [Ambiance] 
  * New metacity buttons with all states 
  * Adding source files for buttons
  * Adding CSD enabled theme
  * Adding fix for Chromium
  * Changing button colors
  * Adding new expander style option
  * Adding gripper style
  * New defualt button state style

 -- Kenneth Wimer <kwwii@ubuntu.com>  Fri, 07 May 2010 16:01:45 +0100

light-themes (0.1.6.6~ppa3) lucid; urgency=low

  * Ambiance/Radiance: Changing colours to match latest design, playing with new padding and border values 

 -- Kenneth Wimer <kwwii@ubuntu.com>  Wed, 05 May 2010 16:06:13 +0100

light-themes (0.1.6.6~ppa2) lucid; urgency=low

  * Ambiance/Radiance: Removing nautilus-sidebar definiton so that the nautilus side pane is white

 -- Kenneth Wimer <kwwii@ubuntu.com>  Tue, 04 May 2010 09:38:04 +0100

light-themes (0.1.6.6~ppa1) lucid; urgency=low

  * Ambiance/Radiance: Change evolution hyperlinks to blue and visited to orange
   - Add nautilus-handle size = 2
  * Ambiance: Metacity add close_prelight icon (Thanks to vish) (LP: #565255).
   - Metacity adjust close prelight alpha = .8 

 -- James Schriver <jws141@gmail.com>  Thu, 22 Apr 2010 08:57:01 -0400

light-themes (0.1.6.5) lucid; urgency=low

  * Fixing incorrect gconf settings for button layout
  * Radiance: Sync link color with Ambiance 

 -- Kenneth Wimer <kwwii@ubuntu.com>  Thu, 15 Apr 2010 16:09:03 +0100

light-themes (0.1.6.4) lucid; urgency=low

  * Changing link color to fix LP: #549760 
  [James Schriver]
  * Ambiance: Adjust sublety of metacity icons prelight 
   - Colorize close icon prelight for added glow and pronounced prelight 
  * Ambiance/Radiance:  Adjust scrollbar lighting (LP: #542686).
   - Remove progressbar lightbordershade (LP: #551107).
   - Global trough_shades for scrollbar/progressbar

 -- Kenneth Wimer <kwwii@ubuntu.com>  Wed, 14 Apr 2010 15:45:29 +0100

light-themes (0.1.6.3) lucid; urgency=low

  * Changing button order and adding new buttons 
  * Fixing error in Radiance mouseOver effect

 -- Kenneth Wimer <kwwii@ubuntu.com>  Thu, 01 Apr 2010 18:20:49 +0100

light-themes (0.1.6.2) lucid; urgency=low

  * Adding property to use wide icons

 -- Kenneth Wimer <kwwii@ubuntu.com>  Wed, 31 Mar 2010 19:50:54 +0100

light-themes (0.1.6.1) lucid; urgency=low

  * Ambiance/Radiance: Fix spinbuttonstyle with non-gtk applications (LP: #549110).
  * Ambiance: Matched FG[PRELIGHT] menu-item and panel (LP: #536984).
   - Cleaned up dark code 

 -- James Schriver <jws141@gmail.com>  Mon, 29 Mar 2010 23:38:25 -0400

light-themes (0.1.6.0~ppa1) lucid; urgency=low

  * Adding more button images to solve problems with focused vs ufocused
  * Adding button layout to index.theme to fix appearance capplet problem
  * Adding code to make the terminal theme without a profile
  * Ambiance/Radiance: Fix windows control's right alignment (LP: #548532).
   - Fix trough transparency (LP: #548468). 
   - Adjust scrollbar contrast with more distinct borders/add active slider (LP: #537375).
   - Fix menubaritemstyle = 0 (LP: #548735).
  * Ambiance: Fix dropdown list firefox (LP: #532259).
  * Radiance: Fix panel bg[ACTIVE] (LP: #536844).   

 -- Kenneth Wimer <kwwii@ubuntu.com>  Fri, 26 Mar 2010 15:13:30 +0000

light-themes (0.1.5.9) lucid; urgency=low

  * Adding new listviewheaderstyle and seperatorstyle
  * Fixing Radiance menu seperator padding
  * Adding buttons and metactiy config for unfocused windows
  * Rearraning values to best match intended design
  * Ambiance/Radiance: Reduce progressbar appearance (LP: #535175).
   - Minor beautifications / reduced code to buttons, treeview-header, spinbutton, and comboboxentry closer to the original design. Thanks to l3on.
   - Adjustment to scale / scrollbar to utilize bg_color for customization
   - Mixed focus color (LP: #535177).
   - Cleaned up code
   - Fix panel visibility (LP: #536844).
   - Fix inactive entry text and focus
   - Restore missing style sections
   - Fix separator-menu-item Mozilla GTK (LP: #538164).
   - Fix metacity border not defined (LP: #537920).
   - Rewritten metacity themes using trough bg's and icons; prelight, presses, etc. were added (LP: #538721).
   - Fix GtkTreeView::indent-expanders (LP: #540973).
   - Fix round maximized metacity bottom corners (LP: #541542). 
  * Ambiance: Fix brown scale in Banshee (LP: #538500).
   - Fix comboboxentry (LP: #540511).
   - Fix Evolution button/text (LP: #539188).
   - Fix white border on show desktop icon (LP: #544962).
  * Ambiance/Radiance: Global button settings
   - Fix scale borders (LP: #545024). 


 -- Kenneth Wimer <kwwii@ubuntu.com>  Wed, 24 Mar 2010 14:17:17 +0100

light-themes (0.1.5.8) lucid; urgency=low

  * Fixing panel spacing in Radiance (lp: #527267)
  * Fixing menuitem look in Ambiance 

 -- Kenneth Wimer <kwwii@ubuntu.com>  Thu, 11 Mar 2010 12:15:31 +0000

light-themes (0.1.5.7) lucid; urgency=low

  * Minor fixes in Ambiance, Radiance fix for lp:#522471

 -- Kenneth Wimer <kwwii@ubuntu.com>  Wed, 10 Mar 2010 15:04:40 +0000

light-themes (0.1.5.6) lucid; urgency=low

  * Bringing things back inline with the original design

 -- Kenneth Wimer <kwwii@ubuntu.com>  Tue, 09 Mar 2010 11:42:16 +0000

light-themes (0.1.5.5) lucid; urgency=low

  [ James Schriver ]
  * Ambiance/Radiance: Deprecate pixmap scrollbars now drawn via the murrine engine 
   - Visual refresh of buttons, notebook, comboboxentry for theme consistency
   - Add border_shade and colors
   - Add additional murrine options through_shades, shadow_shades, etc.
   - Sync scale with visual scrollbar changes for theme consistency
   - Fix blurry BG[INSENSITIVE] text/menubar text
   - Fix GtkScrollbar::min-slider-length = 36 (LP: #533537).
   - Adjust global border_shades for consistent shading with combobox
  * Ambiance: Fix text on memenu (LP: #532843).
   - Clean up panel; Fix (LP: #533081) panel buttons with no contrast 
   - Fix statusbar (LP: #532964).
   - Fix dark text CPU applet on panel (LP: #532385).
   - Fix system monitor artifacts (LP: #533271).
   - Fix Gedit and Gimp menu separators (LP: #532323).
  * Radiance: Fix indistinguishable notebook tabs (LP: #532340).
   - Fix statusbar (LP: #532693).
  * Ambiance/Radiance: Fix metacity frame_style_maximized close and minimize unfocused prelight (LP: #532690).

  [ Kenneth Wimer ]
  * Ambiance/Radiance: set trough border only under scrollbar
  * Ambiance/Radiance: set automnemonics to 1 (lp: #532927)
  * Setting focus_color

 -- Kenneth Wimer <kwwii@ubuntu.com>  Mon, 08 Mar 2010 21:13:33 +0100

light-themes (0.1.5.4) lucid; urgency=low

  * debian/gconf-defaults:
    - correctly set the wm buttons on the left corner

  [ James Schriver ]
  * Fix dark menubar text OOo (LP: #532461).

 -- Sebastien Bacher <seb128@ubuntu.com>  Fri, 05 Mar 2010 15:09:46 +0100

light-themes (0.1.5.3) lucid; urgency=low

  * Update by Kenneth Wimer to fix some other issue

 -- Sebastien Bacher <seb128@ubuntu.com>  Fri, 05 Mar 2010 00:42:30 +0100

light-themes (0.1.5.2) lucid; urgency=low

  * Update by Kenneth Wimer to fix a warning in the ambiance gtkrc and the 
    slider color in the radiance theme

 -- Sebastien Bacher <seb128@ubuntu.com>  Thu, 04 Mar 2010 23:27:57 +0100

light-themes (0.1.5.1) lucid; urgency=low

  * Use the correct theme names in the indexes too

 -- Sebastien Bacher <seb128@ubuntu.com>  Thu, 04 Mar 2010 22:15:05 +0100

light-themes (0.1.5) lucid; urgency=low

  * Initial Ubuntu Upload

  [ Kenneth Wimer ]
  * Initial packaging

  [ Martin Pitt ]
  * debian/rules:
    - dh7 usage cleaning

 -- Sebastien Bacher <seb128@ubuntu.com>  Thu, 04 Mar 2010 20:54:24 +0100