File: changelog

package info (click to toggle)
metacity 1%3A3.30.1-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 21,784 kB
  • sloc: ansic: 60,914; sh: 4,730; makefile: 395; xml: 220; sed: 16
file content (1430 lines) | stat: -rw-r--r-- 48,375 bytes parent folder | download
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
metacity (1:3.30.1-2) unstable; urgency=medium

  * Add -Wl,-O1 to our LDFLAGS
  * Bump Standards-Version to 4.3.0

 -- Jeremy Bicha <jbicha@debian.org>  Thu, 27 Dec 2018 10:52:12 -0500

metacity (1:3.30.1-1) unstable; urgency=medium

  * New upstream bugfix release.

 -- Dmitry Shachnev <mitya57@debian.org>  Sun, 09 Sep 2018 19:07:43 +0300

metacity (1:3.30.0-2) unstable; urgency=medium

  * Fix the arch: all build by using override_dh_installwm-arch.

 -- Dmitry Shachnev <mitya57@debian.org>  Sun, 02 Sep 2018 22:11:47 +0300

metacity (1:3.30.0-1) unstable; urgency=medium

  * New upstream release.
  * Update Homepage URL to point to gitlab.gnome.org.
  * Remove dbgsym migration, it is no longer needed.
  * Use dh_installwm instead of manual prerm/postinst scripts.
  * Move the manpage from metacity-common to metacity to make it work.
  * Bump Standards-Version to 4.2.1, no changes needed.

 -- Dmitry Shachnev <mitya57@debian.org>  Sun, 02 Sep 2018 20:50:37 +0300

metacity (1:3.28.0-1) unstable; urgency=medium

  [ Jeremy Bicha ]
  * Update Vcs fields for migration to https://salsa.debian.org/
  * Bump debhelper compat to 11
  * Add debian/docs to install NEWS and README

  [ Dmitry Shachnev ]
  * New upstream release.
  * Bump required automake and libgtk-3-dev build-dependencies,
    according to upstream configure.ac.
  * Bump Standards-Version to 4.1.3, no changes needed.

 -- Dmitry Shachnev <mitya57@debian.org>  Wed, 14 Mar 2018 16:53:19 +0300

metacity (1:3.26.0-1) unstable; urgency=medium

  * New upstream release.
  * Drop fix_keybindings.diff, it was coming from upstream.
  * Bump Standards-Version to 4.1.1, no changes needed.

 -- Dmitry Shachnev <mitya57@debian.org>  Tue, 03 Oct 2017 10:36:30 +0700

metacity (1:3.25.2-2) experimental; urgency=medium

  * Drop useless recommends on gnome-session | x-session-manager.
  * Backport upstream fix to make window shortcuts working again.

 -- Dmitry Shachnev <mitya57@debian.org>  Thu, 13 Jul 2017 15:29:28 +0300

metacity (1:3.25.2-1) experimental; urgency=medium

  * New upstream development release.
  * Bump Standards-Version to 4.0.0, no changes needed.

 -- Dmitry Shachnev <mitya57@debian.org>  Sun, 02 Jul 2017 17:18:05 +0300

metacity (1:3.25.1-1) experimental; urgency=medium

  * New upstream development release.
  * Bump libgtk-3-dev dependency to 3.20.0, following configure.ac.
  * Add two new symbols to debian/libmetacity1.symbols.
  * Update debian/copyright.

 -- Dmitry Shachnev <mitya57@debian.org>  Mon, 24 Apr 2017 16:52:08 +0300

metacity (1:3.24.1-1) unstable; urgency=medium

  * New upstream bugfix release.
  * Upload to unstable.

 -- Dmitry Shachnev <mitya57@debian.org>  Fri, 23 Jun 2017 15:01:34 +0300

metacity (1:3.24.0-2) experimental; urgency=medium

  * Build-depend on automake 1.13, as required by configure.ac.
    Fixes FTBFS with aspcud resolver in experimental.

 -- Dmitry Shachnev <mitya57@debian.org>  Mon, 20 Mar 2017 17:47:26 +0300

metacity (1:3.24.0-1) experimental; urgency=medium

  * New upstream release.
  * Update Vcs fields for Svn → Git migration.

 -- Dmitry Shachnev <mitya57@debian.org>  Mon, 20 Mar 2017 11:26:34 +0300

metacity (1:3.22.1-1) unstable; urgency=medium

  * New upstream bugfix release.

 -- Dmitry Shachnev <mitya57@debian.org>  Thu, 03 Nov 2016 21:18:40 +0300

metacity (1:3.22.0-1) unstable; urgency=medium

  * New upstream release.
  * Rename libmetacity0 to libmetacity1, following upstream soname change.
  * Convert from cdbs to debhelper.

 -- Dmitry Shachnev <mitya57@debian.org>  Sun, 25 Sep 2016 21:20:26 +0300

metacity (1:3.20.3-1) unstable; urgency=medium

  * New upstream bugfix release.

 -- Dmitry Shachnev <mitya57@debian.org>  Fri, 12 Aug 2016 19:59:23 +0300

metacity (1:3.20.2-1) unstable; urgency=medium

  * New upstream bugfix release.
  * Drop upstream patch titlebar_resize.diff.

 -- Dmitry Shachnev <mitya57@debian.org>  Tue, 19 Jul 2016 21:44:32 +0300

metacity (1:3.20.1.1-1) unstable; urgency=medium

  * New upstream bugfix release.
  * Add a patch from upstream to restore window resize using titlebar
    (titlebar_resize.diff).
  * Drop Breaks/Replaces, no more needed because metacity-common no
    longer ships the themes.

 -- Dmitry Shachnev <mitya57@debian.org>  Tue, 28 Jun 2016 10:06:20 +0300

metacity (1:3.20.0-1) unstable; urgency=medium

  * New upstream release.
  * Drop all patches, applied upstream.
  * Bump libglib2.0-dev build-dependency to 2.44.0, following upstream.
  * Bump libgtk-3-dev build-dependency to 3.19.8, following upstream.
  * Bump libxcomposite-dev build-dependency to 0.3, following upstream.
  * Drop intltool build-dependency, no longer needed.
  * Replace libmetacity-private3a package with libmetacity0.
  * Drop no longer installed files from metacity-common.install.
  * Update debian/copyright.

 -- Dmitry Shachnev <mitya57@debian.org>  Sat, 11 Jun 2016 10:34:53 +0300

metacity (1:3.18.4-3) unstable; urgency=medium

  * Use one error trap for the whole free_win function (taken from upstream
    gnome-3-18 branch, fixes another crash).

 -- Dmitry Shachnev <mitya57@debian.org>  Tue, 31 May 2016 13:48:06 +0300

metacity (1:3.18.4-2) unstable; urgency=medium

  * Updates from upstream gnome-3-18 branch:
    - Fixes to the icon cache code.
    - Ignoring events outside of frame in get_control.
    - Fix for XError crash in free_win function (LP: #1582687).

 -- Dmitry Shachnev <mitya57@debian.org>  Thu, 26 May 2016 15:42:03 +0300

metacity (1:3.18.4-1) unstable; urgency=medium

  * New upstream release.
  * Migrate to automatic dbgsym packages.
    - Build-depend on debhelper 9.20160114~ for this.
  * Mark metacity-common as Multi-Arch: foreign.
  * Bump Standards-Version to 3.9.8, no changes needed.

 -- Dmitry Shachnev <mitya57@debian.org>  Mon, 25 Apr 2016 10:34:04 +0300

metacity (1:3.18.3-1) unstable; urgency=medium

  * New upstream release.
  * Bump Standards-Version to 3.9.7, no changes needed.

 -- Dmitry Shachnev <mitya57@debian.org>  Wed, 30 Mar 2016 17:37:19 +0200

metacity (1:3.18.2-1) unstable; urgency=medium

  [ Dmitry Shachnev ]
  * New upstream bugfix release.

  [ Matthias Klose ]
  * Multiarchify the library packages.

 -- Dmitry Shachnev <mitya57@debian.org>  Thu, 18 Feb 2016 17:15:42 +0300

metacity (1:3.18.1-1) unstable; urgency=medium

  * New upstream release.

  [ Michael Biebl ]
  * Use https:// for Vcs-Browser.

 -- Dmitry Shachnev <mitya57@debian.org>  Wed, 14 Oct 2015 14:53:26 +0300

metacity (1:3.18.0-2) unstable; urgency=medium

  * Fix version number in libmetacity-private3 Breaks/Replaces
    (closes: #800879).

 -- Dmitry Shachnev <mitya57@debian.org>  Mon, 05 Oct 2015 09:55:11 +0300

metacity (1:3.18.0-1) unstable; urgency=medium

  * New upstream release.
  * Drop all patches, applied upstream.
  * Stop recommending gnome-themes-standard, as Metacity themes are now
    in metacity-common package.
  * Rename libmetacity-private3 package to libmetacity-private3a.
    There was an ABI break upstream, which is legitimate from upstream
    point of view (as 3.17.x was an unstable branch), but we shipped
    3.17.x in unstable so we need to adopt accordingly.
  * Update debian/copyright and switch to 1.0 format.
  * Bump debhelper compatibility level to 9.

 -- Dmitry Shachnev <mitya57@debian.org>  Thu, 24 Sep 2015 15:14:02 +0300

metacity (1:3.17.2-4) unstable; urgency=medium

  * Add a patch to fix potential crash when destroying windows
    (from Alberts Muktupāvels).

 -- Dmitry Shachnev <mitya57@debian.org>  Wed, 08 Jul 2015 14:49:11 +0300

metacity (1:3.17.2-3) unstable; urgency=medium

  * Update README.Debian.
  * Remove manpages from debian/ directory, we are shipping upstream
    manpages anyway.
  * Backport upstream patch (check_display.diff) to check for valid
    display in meta_prefs_get_compositing_manager function.
  * Upload to unstable.

 -- Dmitry Shachnev <mitya57@debian.org>  Mon, 15 Jun 2015 13:33:07 +0300

metacity (1:3.17.2-2) experimental; urgency=medium

  * Add missing Breaks/Replaces on old gnome-accessibility-themes
    (closes: #787858)

 -- Dmitry Shachnev <mitya57@debian.org>  Sat, 06 Jun 2015 15:09:55 +0300

metacity (1:3.17.2-1) experimental; urgency=medium

  * New upstream release.
  * Drop unnecessary breaks from libmetacity-private3 package.
    Thanks Ansgar Burchardt for the suggestion.

 -- Dmitry Shachnev <mitya57@debian.org>  Sat, 06 Jun 2015 12:13:51 +0300

metacity (1:3.17.1-1) experimental; urgency=medium

  * New upstream release.
  * Rename libmetacity-private2 to libmetacity-private3, following
    upstream soname bump.
  * Build-depend on libgtk-3-dev 3.15.2 (according to configure.ac).
  * Update libmetacity-private3.symbols (there are many new exported
    symbols).
  * Break/Replace gnome-themes-standard-data (<< 3.15.90), because of
    a file conflict.
  * Watch unstable releases.
  * Remove dependency on gnome-icon-theme, no longer needed.
  * Install the correct file (NEWS) as upstream changelog.
  * Remove no longer needed configure option.

 -- Dmitry Shachnev <mitya57@debian.org>  Tue, 02 Jun 2015 00:00:04 +0300

metacity (1:3.14.3-1) unstable; urgency=medium

  * New upstream bugfix release.
  * Drop initialize_variables.patch, applied upstream.

 -- Dmitry Shachnev <mitya57@debian.org>  Fri, 28 Nov 2014 09:35:28 +0300

metacity (1:3.14.1-2) unstable; urgency=medium

  * Backport initialize_variables.patch from upstream to fix a bug
    when Chromium was not showing in Alt-Tab list.
  * Build-depend on Gtk+ 3.12, for gtk_widget_set_margin_[start/end].

 -- Dmitry Shachnev <mitya57@debian.org>  Sat, 25 Oct 2014 18:56:01 +0400

metacity (1:3.14.1-1) unstable; urgency=medium

  * New upstream bugfix release.

 -- Dmitry Shachnev <mitya57@debian.org>  Wed, 15 Oct 2014 13:49:27 +0400

metacity (1:3.14.0-1) unstable; urgency=medium

  * New upstream release.
    - Compatible with gnome-themes-standard 3.14.
  * Update libglib2.0-dev build-dependency.
  * Rename libmetacity-private1 to libmetacity-private2,
    following upstream soname bump.
  * Update libmetacity-private2.symbols.
  * Drop Replaces on libmetacity-private0*, as there is no file
    conflict (keep only Breaks).
  * Drop hardcoded metacity dependency on private library,
    it is pulled in by metacity-theme-viewer via shlibdeps.
  * Bump Standards-Version to 3.9.6, no changes needed.
  * Add metacity-dbg package containing the debugging symbols.
  * Stop shipping libmetacity-private.a static library.

 -- Dmitry Shachnev <mitya57@debian.org>  Fri, 10 Oct 2014 09:36:23 +0400

metacity (1:3.12.0-2) unstable; urgency=medium

  * Team upload.

  [ Dmitry Shachnev ]
  * Add missing licensing information to debian/copyright. Thanks to
    Thorsten Alteholz for the bug report (closes: #754863).
  * Reformat debian/copyright to be more DEP5-like.

 -- Andreas Henriksson <andreas@fatal.se>  Mon, 28 Jul 2014 20:13:38 +0200

metacity (1:3.12.0-1) unstable; urgency=medium

  * New upstream release (closes: #751683).
    - Ported to Gtk+ 3.
    - Compositing manager is now enabled by default.
    - Adds support for Ubuntu themes (closes: #610936).
  * Drop all patches, applied upstream.
  * Build-depend on libgtk-3-dev and libcanberra-gtk3-dev.
  * Rename libmetacity-private0a to libmetacity-private1,
    following upstream soname bump.
  * Add symbols file for libmetacity-private1.
  * Remove duplicate Section field, add Homepage field.
  * Build with dh-autoreconf.
  * Run wrap-and-sort.
  * Update debian/copyright.
  * Bump Standards-Version to 3.9.5, no changes needed.

 -- Dmitry Shachnev <mitya57@gmail.com>  Thu, 19 Jun 2014 16:08:07 +0400

metacity (1:2.34.13-1) unstable; urgency=low

  * New upstream release.
  * Remove 10_leak.patch, merged upstream.
  * Port to new documentation infrastructure. Use yelp-tools instead of
    gnome-doc-utils.
  * Bump Standards-Version to 3.9.4. No further changes.

 -- Michael Biebl <biebl@debian.org>  Mon, 10 Jun 2013 12:05:04 +0200

metacity (1:2.34.3-4) unstable; urgency=low

  * Cherry-pick some upstream patches.
    + 10_leak.patch: small memory leak.
    + 11_remove_thumbnails.patch: remove the code to make thumbnails of
      active windows. It is too slow. Closes: #696323.
    + 12_icons_96px.patch: use 96x96 icons by default.

 -- Josselin Mouette <joss@debian.org>  Thu, 20 Dec 2012 00:21:46 +0100

metacity (1:2.34.3-3) unstable; urgency=low

  [ Josselin Mouette ]
  * 01_focus_new_window.patch: new patch from upstream bugzilla.
    Correctly focus new windows even when they appear behind an “always
    on top” window. Closes: #515577.

  [ Michael Biebl ]
  * Rebuild with xz compression for binary packages.

 -- Michael Biebl <biebl@debian.org>  Tue, 07 Aug 2012 01:37:33 +0200

metacity (1:2.34.3-2) unstable; urgency=low

  * Upload to unstable.
  * Replace Suggests: gnome-themes with Recommends: gnome-themes-standard
    since Adwaita is the preferred window manager theme and we want it to be
    installed by default.
  * Use strict dependency between metacity/libmetacity-private0a and
    metacity-common to ensure we have the correct version of metacity-common
    providing the org.gnome.metacity gsettings schema.

 -- Michael Biebl <biebl@debian.org>  Wed, 30 May 2012 12:33:45 +0200

metacity (1:2.34.3-1) experimental; urgency=low

  * New upstream release.
  * Bump Build-Depends on libgtk2.0-dev to (>= 2.24.0) and libglib2.0-dev to
    (>= 2.25.10).
  * Replace libgconf2-dev Build-Depends with gsettings-desktop-schemas-dev
    (>= 3.3.0).
  * Replace libgnome2-common Depends with gsettings-desktop-schemas
    (>= 3.3.0).
  * Bump Suggests gnome-control-center to (>= 1:3.4.0).
  * Install GSettings schemas and GConf conversion script.
  * Bump Standards-Version to 3.9.3.
  * Update Vcs-* URLs.

 -- Michael Biebl <biebl@debian.org>  Mon, 14 May 2012 19:09:58 +0200

metacity (1:2.34.1-2) unstable; urgency=low

  [ Josselin Mouette ]
  * Depend on gnome-icon-theme. Closes: #638141.

  [ Michael Biebl ]
  * Use a strict dependency between metacity and libmetacity-private.
  * Due to incompatible changes in libmetacity-private, which broke reverse
    dependencies like compiz, rename the library package to
    libmetacity-private0a. Closes: #629310
  * Add Breaks/Replaces: libmetacity-private0 to libmetacity-private0a.
  * Add a lintian override for the package-name-doesnt-match-sonames warning.
  * debian/watch: Track .xz tarballs.

 -- Michael Biebl <biebl@debian.org>  Tue, 25 Oct 2011 14:31:59 +0200

metacity (1:2.34.1-1) unstable; urgency=low

  * New upstream release.
  * debian/watch:
    - Don't run uupdate.
    - Switch to .bz2 tarballs.
  * Bump debhelper compatibility level to 8.
    - Update Build-Depends on debhelper.
    - Strip debian/tmp/ from .install files.
  * debian/control.in:
    - Bump Standards-Version to 3.9.2. No further changes.
    - Remove old Conflicts and Replaces which are no longer necessary.
  * Remove debian/patches/01_Wcast-align.patch and dh-autoreconf usage. The
    package no longer builds with -Werror so this is not necessary anymore.

 -- Michael Biebl <biebl@debian.org>  Wed, 20 Jul 2011 12:52:05 +0200

metacity (1:2.34.0-1) unstable; urgency=low

  [ Josselin Mouette ]
  * Depend on libgnome2-common for the GConf schemas. This will be
    necessary until metacity is ported to GSettings.

  [ Martin Pitt ]
  * debian/control.in: Add missing Vcs-* fields.

  [ Josselin Mouette ]
  * New upstream release.
    + Fixes interaction with Java/Tk applications. Closes: #512401.
  * Bump GTK+ build-dependency.
  * 02_restart_hint.patch, 04_gdk_grab_tracking.patch,
    05_36_workspaces.patch: dropped, merged upstream.
  * 90_autotools.patch, 99_ltmain_as-needed.patch: dropped.
  * Use dh-autoreconf instead.

 -- Josselin Mouette <joss@debian.org>  Thu, 02 Jun 2011 17:42:02 +0200

metacity (1:2.30.1-3) unstable; urgency=low

  [ Josselin Mouette ]
  * 05_36_workspaces.patch: patch from Bas van Sisseren. Fix assertion
    failure when more than 16 workspaces are defined.
    Closes: #576651, #586207, #598016.

  [ Emilio Pozuelo Monfort ]
  * debian/patches/05_36_workspaces.patch:
    - Apply the patch to the correct file.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Tue, 05 Oct 2010 01:04:28 +0200

metacity (1:2.30.1-2) unstable; urgency=low

  * Refresh 02_restart_hint.patch.
  * 03_gtop_error.patch: patch from Tomaž Šolc to handle libgtop errors.
    Closes: #549290.
  * Switch to 3.0 source format.
  * 04_gdk_grab_tracking.patch: patch from Owen Taylor to prevent events
    from being transmitted to the wrong window. Closes: #559576.

 -- Josselin Mouette <joss@debian.org>  Wed, 16 Jun 2010 23:32:32 +0200

metacity (1:2.30.1-1) unstable; urgency=low

  * New upstream stable release:
    + debian/patches/90_autotools.patch:
      - Updated for the new version.

 -- Sebastian Dröge <slomo@debian.org>  Mon, 12 Apr 2010 17:43:11 +0200

metacity (1:2.28.1-1) unstable; urgency=low

  * New upstream release:
    + debian/patches/10_remove_sigchld_handler.patch:
      - Dropped, merged upstream.
    + debian/patches/90_autotools.patch:
      - Regenerated for the new version.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 25 Mar 2010 22:29:27 +0100

metacity (1:2.28.0-3) unstable; urgency=low

  * debian/patches/10_remove_sigchld_handler.patch:
    - Patch from upstream git, remove a global SIGCHLD handler that could
      cause deadlocks. It also allows metacity to build on GNU/Hurd again
      as the patch removes the SA_SIGINFO usage.
  * debian/control.in:
    - Standards-Version is 3.8.3, no changes needed.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sun, 06 Dec 2009 17:26:31 +0100

metacity (1:2.28.0-2) unstable; urgency=low

  * 02_restart_hint.patch: patch from Owen Taylor. Don’t restart
    metacity unconditionnally if there is another WM running.
    Closes: #553342, #551512.

 -- Josselin Mouette <joss@debian.org>  Tue, 03 Nov 2009 19:43:29 +0100

metacity (1:2.28.0-1) unstable; urgency=low

  * New upstream release.
  * Add build-dependencies on gtop and canberra.
  * 10_ignore_callbacks.patch: dropped, merged upstream.
  * 90_autotools.patch: updated for the new version.
  * Update list of files to install.

 -- Josselin Mouette <joss@debian.org>  Sat, 26 Sep 2009 02:08:59 +0200

metacity (1:2.26.0-3) unstable; urgency=high

  * 10_ignore_callbacks.patch: stolen upstream. Fix a bug leading to
    some callbacks being ignored. Closes: #533917.

 -- Josselin Mouette <joss@debian.org>  Wed, 24 Jun 2009 12:04:26 +0200

metacity (1:2.26.0-2) unstable; urgency=low

  * Use patchsys-quilt; build-depend on quilt.
  * 01_Wcast-align.patch: don’t use -Wcast-align, it gives incorrect
    warnings (errors thanks to -Werror) when some pointers are converted
    back and forth to XPointers. Closes: #532655.
  * 90_autotools.patch: relibtoolize the whole package.

 -- Josselin Mouette <joss@debian.org>  Wed, 10 Jun 2009 21:52:35 +0200

metacity (1:2.26.0-1) unstable; urgency=low

  [ Josselin Mouette ]
  * Fix typo in changelog entry.

  [ Loic Minier ]
  * Let metacity suggest gnome-themes as it attempts to use the Clearlooks
    Metacity theme by default and logs a warning when it can't be used.
  * Let metacity suggest xdg-user-dirs as it fails creating the
    .config/metacity sub-directory and logs a warning if .config isn't created
    by xdg-user-dirs.

  [ Josselin Mouette ]
  * Set the team as primary maintainer. Closes: #523545.
  * Fixup in the descriptions.
  * New upstream release.
  * Update build-dependencies.
  * Bump shlibs for libmetacity-private0.

 -- Josselin Mouette <joss@debian.org>  Tue, 09 Jun 2009 20:36:03 +0200

metacity (1:2.24.0-2) unstable; urgency=low

  * Rename libmetacity0 to libmetacity-private0 because of an
    unexpected ABI change. Closes: #510096.
  * Remove trailing -1's in build-depends.
  * debian/copyright: write complete list of copyright holders.
  * Upload to unstable.

 -- Josselin Mouette <joss@debian.org>  Mon, 16 Feb 2009 18:03:57 +0100

metacity (1:2.24.0-1) experimental; urgency=low

  * New upstream release.
    + Implements one-way maximisation. Closes: #450837.
    + Fixes issues when disabling the compositor. Closes: #476492.
  * Bump shlibs version to 1:2.24.0.
  * Standards version is 3.8.0.
  * 01_doublefree_maximize.patch: dropped, merged upstream.
  * Install the .desktop in the metacity package.

 -- Josselin Mouette <joss@debian.org>  Sat, 22 Nov 2008 15:57:58 +0100

metacity (1:2.22.0-2) unstable; urgency=low

  [ Sven Arvidsson ]
  * Add README.Debian, describing how to enable the compositor.
    (Closes: #471442)

  [ Josselin Mouette ]
  * 01_doublefree_maximize.patch: stolen upstream (r3817). Fixes
    vertical maximisation bug caused by an invalid free.
    Closes: #452139.
  * control.in: make metacity the first package so that it gets the
    README.Debian.

 -- Josselin Mouette <joss@debian.org>  Thu, 18 Sep 2008 16:53:19 +0200

metacity (1:2.22.0-1) unstable; urgency=low

  [ Bradley Smith ]
  * New upstream development release.

  [ Sam Morris ]
  * Build-depend on libxcomposite-dev for composite manager.

  [ Sebastian Dröge ]
  * New upstream stable release:
    + debian/rules:
      - Drop check-dist include.
      - Update shlibs to >= 2.22.0 because of new API.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 14 Mar 2008 13:54:19 +0100

metacity (1:2.21.5-1) experimental; urgency=low

  [ Riccardo Setti ]
  * New metacity package.
  * build with compositor extension.

  [ Bradley Smith ]
  * Update Standards Version to 3.7.3. (No changes)
  * Add check-dist.

 -- Riccardo Setti <giskard@debian.org>  Thu, 20 Dec 2007 02:29:13 +0100

metacity (1:2.20.1-2) UNRELEASED; urgency=low

  * Let metacity-common replace metacity instead of conflicting to ease
    upgrades.

 -- Loic Minier <lool@dooz.org>  Wed, 28 Nov 2007 19:00:45 +0100

metacity (1:2.20.1-1) unstable; urgency=low

  [ Josselin Mouette ]
  * Recommend gnome-session | x-session-manager. Closes: #225640.
  * Remove metacity.menu. Closes: #397645.

  [ Sebastian Dröge ]
  * New upstream bugfix release.

 -- Sebastian Dröge <slomo@debian.org>  Mon, 19 Nov 2007 13:57:21 +0100

metacity (1:2.20.0-1) unstable; urgency=low

  * New upstream release:
    + debian/patches/01_session_tolerate_missing_file.patch,
      debian/patches/02_fix_crash_on_session_saving.patch:
      - Dropped, merged upstream.
    + debian/rules:
      - Bump shlibs to >= 2.19.5.
    + debian/metacity-common.install:
      - Ship keybinding stuff.
  * debian/control.in:
    + Drop duplicated libxinerama-dev build dependency.

 -- Sebastian Dröge <slomo@debian.org>  Sat, 22 Sep 2007 10:46:36 +0200

metacity (1:2.18.5-1) unstable; urgency=low

  * New upstream stable release; no API change.

 -- Loic Minier <lool@dooz.org>  Tue, 19 Jun 2007 12:07:17 +0200

metacity (1:2.18.3-2) unstable; urgency=low

  * 99_ltmain_as-needed.patch: make --as-needed work for the library
    too.

 -- Josselin Mouette <joss@debian.org>  Wed, 06 Jun 2007 23:40:52 +0200

metacity (1:2.18.3-1) unstable; urgency=low

  * Drop metacity-common postinst as it was scheduled to be dropped post-etch.
  * Rewrite metacity postinst and prerm to use safer individual if tests
    instead of trying to list all possible args in a case; reported by
    Lior Kaplan; closes: #421206.
  * New upstream stable release; no API change.

 -- Loic Minier <lool@dooz.org>  Mon, 28 May 2007 17:48:18 +0200

metacity (1:2.18.2-3) unstable; urgency=low

  * New patch 02_fix_crash_on_session_saving.patch, taken from Ubuntu.
    Fix a crash that would occur when the current session is saved and would
    corrupt ~/.gnome2/session. Gnome bug #433253

 -- Sebastian Dröge <slomo@debian.org>  Thu, 26 Apr 2007 15:44:10 +0200

metacity (1:2.18.2-2) unstable; urgency=low

  * Add -z defs to LDFLAGS; cleanups.
  * Upload to unstable; drop check-dist include.
  * Add a ${misc:Depends}.
  * Drop useless --enable-xsync=yes from configure flags.
  * Wrap build-deps and deps.
  * Bump dep on libgtk2.0-dev to >= 2.10.0-1.

 -- Loic Minier <lool@dooz.org>  Sat, 14 Apr 2007 15:12:50 +0200

metacity (1:2.18.2-1) experimental; urgency=low

  * New upstream stable release.

 -- Loic Minier <lool@dooz.org>  Mon, 09 Apr 2007 08:47:47 +0200

metacity (1:2.18.1-1) experimental; urgency=low

  * New upstream stable release; no API change; bug fixes and translations.
  * Drop obsolete README.Debian; misc cleanups.

 -- Loic Minier <lool@dooz.org>  Sun, 08 Apr 2007 09:23:44 +0200

metacity (1:2.18.0-1) experimental; urgency=low

  [ Marco Cabizza ]
  * New upstream release: not enabling compositor, too unstable, and libcm
    seems dead upstream.

  [ Riccardo Setti ]
  * Updated debhelper compatibility to 5

  [ Loic Minier ]
  * Set LDFLAGS directly instead of via DEB_CONFIGURE_SCRIPT_ENV; build-dep on
    cdbs >= 0.4.41.
  * Fix metacity-common.install to list the correct dirs.

 -- Loic Minier <lool@dooz.org>  Mon, 26 Mar 2007 22:27:08 +0200

metacity (1:2.16.5-1) experimental; urgency=low

  [ Loic Minier ]
  * Add a get-orig-source target to retrieve the upstream tarball.
  * Include the new check-dist Makefile to prevent accidental uploads to
    unstable; bump build-dep on gnome-pkg-tools to >= 0.10.

  [ Josselin Mouette ]
  * 01_session_tolerate_missing_file.patch: register differently to the
    session, in order to handle gracefully the case where a session file
    is missing on the disk (closes: #315169, #391287).
  * New upstream release.

 -- Josselin Mouette <joss@debian.org>  Sun,  4 Mar 2007 10:29:40 +0100

metacity (1:2.16.3-1) experimental; urgency=low

  [ Marco Cabizza ]
  * New upstream release.

  [ Loic Minier ]
  * Merge 1:2.14.5-2.

  [ Josselin Mouette ]
  * Use ${gnome:Version} and ${gnome:NextVersion} to loosen the
    dependencies.
  * Build-depend on gnome-pkg-tools 0.6.
  * Call gnome-version.mk.
  * Replace the x-dev build-dependency by x11proto-core-dev.

 -- Josselin Mouette <joss@debian.org>  Tue, 21 Nov 2006 20:50:05 +0100

metacity (1:2.16.2-1) experimental; urgency=low

  * New upstream release, with backwards incompatible changes in internal API.

 -- Loic Minier <lool@dooz.org>  Mon, 25 Sep 2006 17:47:56 +0200

metacity (1:2.16.1-1) experimental; urgency=low

  [ Loïc Minier ]
  * Remove superfluous dh_installcatalogs call and bump cdbs build-dep to
    >= 0.4.37, thanks Peter Eisentraut. (Closes: #361156)
    [debian/control, debian/control.in, debian/rules]
  * Don't mention non-existing Info documentation in the metacity and
    metacity-message man pages, thanks Piotr Engelking. (Closes: #365450)
    [debian/metacity.1, debian/metacity-message.1]
  * Fix watch file.

  [ Marco Cabizza ]
  * New upstream release, target experimental:
    - Bumping up libgtk2.0-dev build-dep to 2.10
  * Setting myself as the maintainer.

 -- Marco Cabizza <marco87@gmail.com>  Wed, 13 Sep 2006 18:46:45 +0200

metacity (1:2.14.5-2) unstable; urgency=low

  * Remove superfluous dh_installcatalogs call and bump cdbs build-dep to
    >= 0.4.37, thanks Peter Eisentraut. (Closes: #361156)
    [debian/control, debian/control.in, debian/rules]
  * Don't mention non-existing Info documentation in the metacity and
    metacity-message man pages, thanks Piotr Engelking. (Closes: #365450)
    [debian/metacity.1, debian/metacity-message.1]
  * Fix watch file.
  * Fix typo in debian/metacity-message.1; thanks Per Bojsen; closes: #397864.

 -- Loic Minier <lool@dooz.org>  Fri, 10 Nov 2006 09:38:49 +0100

metacity (1:2.14.5-1) unstable; urgency=low

  * New upstream release.

 -- Loic Minier <lool@dooz.org>  Tue, 30 May 2006 15:47:36 +0200

metacity (1:2.14.3-1) unstable; urgency=low

  [ Gustavo Noronha Silva ]
  * New upstream release.
    + Doesn't steal focus (closes: #361273).

  [ Josselin Mouette ]
  * Make the package binNMU-safe.
    + Build-depend on dpkg-dev 1.13.19.
    + Use ${source:Version} and ${binary:Version}.
  * Standards version is 3.7.2.
  * Bump shlibs version to 2.14.

  [ Loic Minier ]
  * Stop shipping /usr/lib/*.la files in libmetacity-dev.
    [debian/libmetacity-dev.install]

 -- Josselin Mouette <joss@debian.org>  Sun, 14 May 2006 23:30:56 +0200

metacity (1:2.14.1-2) unstable; urgency=low

  * Simple rebuild to get rid of references to Xcursor.la / Xrender.la.

 -- Loic Minier <lool@dooz.org>  Tue,  2 May 2006 16:45:22 +0200

metacity (1:2.14.1-1) unstable; urgency=low

  * New upstram version.
    * Adds edge resistance. Closes: #191649.
  * patches/000_raise-on-click.patch: Fixed upstream; dropped.

 -- Dafydd Harries <daf@debian.org>  Thu, 30 Mar 2006 19:50:23 +0100

metacity (1:2.12.3-3) unstable; urgency=low

  * Also explicitely remove catalogs installed by past metacity packages.
    [debian/metacity-common.preinst]
  * Move these clenaups to postinst.
    [debian/metacity-common.preinst, debian/metacity-common.postinst]

 -- Loic Minier <lool@dooz.org>  Sun, 12 Feb 2006 16:53:48 +0100

metacity (1:2.12.3-2) unstable; urgency=low

  * Clean up metacity's postinst.
    [debian/metacity.postinst]
  * Clean up /etc/sgml/metacity.cat and .old left over by metacity.
    [debian/metacity-common.preinst]

 -- Loic Minier <lool@dooz.org>  Sun, 12 Feb 2006 16:35:07 +0100

metacity (1:2.12.3-1) unstable; urgency=low

  * New upstream release.
  * Update patch to support a new raise on click mode and choice of this mode
    to apply without fuzz.  Also note this patch has been rejected upstream.
    [debian/patches/000_raise-on-click.patch]
  * New metacity-common package holds arch-independent files and registers
    schemas. (Closes: #218365, #234665, #240211)
    [debian/metacity.dirs, debian/metacity-common.links,
    debian/metacity.install, debian/control, debian/control.in,
    debian/metacity-common.postinst, debian/metacity.catalog,
    debian/metacity-common.manpages, debian/metacity.postrm,
    debian/metacity-common.dirs, debian/metacity-common.install,
    debian/metacity-common.catalog, debian/changelog,
    debian/metacity-common.postrm, debian/rules, debian/metacity.links,
    debian/metacity.postinst, debian/metacity.manpages]
  * Actually ship license information.
    [debian/copyright]
  * Version the metacity and libmetacity dependency on metacity-common with
    Source-Version.
    [debian/control, debian/control.in]
  * Install SGML catalogs with dh_installcatalogs, move them below
    /usr/share/sgml/metacity-common, in the metacity-common package.
    [debian/control, debian/control, debian/metacity-common.catalog,
    debian/metacity-common.postinst, debian/metacity-common.postrm,
    debian/metacity-common.sgmlcatalogs, debian/rules]
  * Drop the /usr/share/metacity/dtd symlink.
    [debian/metacity-common.links]
  * Drop /usr/share/sgml/dtd creation.
    [debian/metacity-common.dirs]
  * Drop useless /usr/share/metacity from metacity-common.
    [debian/metacity-common.install]
  * Drop obsolete cleanup "rm -rf".
    [debian/rules]
  * Give .dtd installation to dh_install.
    [debian/metacity-common.install, debian/rules]

 -- Loic Minier <lool@dooz.org>  Sat, 11 Feb 2006 21:10:40 +0100

metacity (1:2.12.2-3) unstable; urgency=high

  * Add xorg build-deps (libice-dev, libsm-dev, libx11-dev, libxext-dev,
    libxinerama-dev, libxrandr-dev, x-dev) thanks to "xlibs-split".
    (Closes: #347000)
    [debian/control, debian/control.in]
  * Relibtoolizing would get Debian's AC_PATH_XTRA, but I add a libxt-dev
    build-dep and pass --as-needed because the patch was like uh 1.1 MB.
    [debian/control, debian/control.in, debian/rules]

 -- Loic Minier <lool@dooz.org>  Mon,  9 Jan 2006 22:47:36 +0100

metacity (1:2.12.2-2) unstable; urgency=low

  * Upload to unstable.

 -- Josselin Mouette <joss@debian.org>  Sun,  8 Jan 2006 01:49:55 +0100

metacity (1:2.12.2-1) experimental; urgency=low

  * New upstream release.

 -- Jordi Mallach <jordi@debian.org>  Sun, 25 Dec 2005 23:20:10 +0100

metacity (1:2.12.1-1) experimental; urgency=low

  * New upstream release.
  * watch: update for 2.12.
  * 000_raise-on-click.patch: update to make patch apply cleanly.
  * rules: bump shlibs for new symbols.

 -- Josselin Mouette <joss@debian.org>  Sun,  9 Oct 2005 16:50:22 +0200

metacity (1:2.10.3-2) unstable; urgency=low

  * debian/control.in:
    - don't Build-Depends on xlibs-pic, Build-Depend on libxinerama-dev
      (Closes: #320589).
  * debian/patches/000_metacity-debian-xinerama-pic.patch:
    - not useful with xorg.

 -- Sebastien Bacher <seb128@debian.org>  Tue,  2 Aug 2005 17:40:43 +0200

metacity (1:2.10.3-1) unstable; urgency=low

  * New upstream version.
  * Bump Standards-Version to 3.6.2.
  * Add CDBS' utils to rules.

 -- Loic Minier <lool@dooz.org>  Fri, 29 Jul 2005 10:56:05 +0200

metacity (1:2.10.2-1) unstable; urgency=low

  * New upstream version.

 -- Sebastien Bacher <seb128@debian.org>  Tue, 28 Jun 2005 23:09:14 +0200

metacity (1:2.10.1-2) unstable; urgency=low

  * Upload to unstable.

 -- Jordi Mallach <jordi@debian.org>  Sun, 12 Jun 2005 19:03:18 +0200

metacity (1:2.10.1-1) experimental; urgency=low

  * New upstream version.

 -- Sebastien Bacher <seb128@debian.org>  Wed, 13 Apr 2005 17:35:20 +0200

metacity (1:2.10.0-1) experimental; urgency=low

  * New upstream version.
  * debian/patches/000_raise-on-click.patch:
    - updated.
  * debian/watch:
    - updated.

 -- Sebastien Bacher <seb128@debian.org>  Fri,  8 Apr 2005 21:33:44 +0200

metacity (1:2.8.8-1) unstable; urgency=low

  * GNOME team upload.
  * New upstream release.

 -- Jordi Mallach <jordi@debian.org>  Wed, 29 Dec 2004 17:18:05 +0100

metacity (1:2.8.6-1) unstable; urgency=low

  * New upstream release.
  * Upload to unstable.

 -- Sebastien Bacher <seb128@debian.org>  Thu, 18 Nov 2004 13:23:27 +0100

metacity (1:2.8.5-2) experimental; urgency=low

  * debian/metacity.postinst:
    - removed the static gconf registration.
  * debian/metacity-theme-viewer.1:
    - manpage written by Jose M. Moya" <josem@die.upm.es> (Closes: #252108).
  * debian/metacity-window-demo.1:
    - manpage written by Jose M. Moya" <josem@die.upm.es> (Closes: #252110).
  * debian/metacity.manpages:
    - updated.

 -- Sebastien Bacher <seb128@debian.org>  Fri, 17 Sep 2004 22:11:51 +0200

metacity (1:2.8.5-1) experimental; urgency=low

  * GNOME team upload.
  * New upstream release.
  * Sebastien Bacher:
    - Switched to CDBS.
    - debian/rules: converted to CDBS
    - debian/*.files: replaced with .install files.
  * J.H.M. Dassen (Ray):
    - [debian/control.in] Bumped libstartup-notification0-dev as
      configure requires 0.7.
  * Jordi Mallach:
    - debian/control.in: add cdbs to build-deps.

 -- Jordi Mallach <jordi@debian.org>  Tue, 14 Sep 2004 20:30:36 +0200

metacity (1:2.8.1-4) unstable; urgency=low

  * debian/rules:
    - added a dh_gconf call.
  * debian/metacity.postinst:
    - removed the static schemas registration, dh_gconf handles that right.

 -- Sebastien Bacher <seb128@debian.org>  Fri,  6 Aug 2004 18:17:03 +0200

metacity (1:2.8.1-3) unstable; urgency=low

  * GNOME Team Upload.
  * Upload in unstable.

 -- Sebastien Bacher <seb128@debian.org>  Wed, 26 May 2004 14:28:32 +0200

metacity (1:2.8.1-2) experimental; urgency=low

  * debian/patches/000_raise-on-click.patch:
    + patch from bugzilla to choose to raise or not the window which has
      the focus in mouse and sloppy modes. (Closes: #228768).
      The gconf key to use is /apps/metacity/general/raise_on_click.
  * Gnome Team Upload.

 -- Sebastien Bacher <seb128@debian.org>  Wed, 26 May 2004 14:19:51 +0200

metacity (1:2.8.1-1) experimental; urgency=low

  * New upstream release.
  * debian/patches/000_metacity-debian-xinerama-pic.patch:
    + updated
  * GNOME Team Upload.

 -- Sebastien Bacher <seb128@debian.org>  Wed,  5 May 2004 21:17:15 +0200

metacity (1:2.8.0-3) experimental; urgency=low

  * GNOME team upload.
  * debian/rules: get the epoch included in the shlib version for
    libmetacity0.

 -- Jordi Mallach <jordi@debian.org>  Tue,  6 Apr 2004 14:04:36 +0200

metacity (1:2.8.0-2) experimental; urgency=low

  * Added Build-Depends on gnome-pkg-tools and libxml-parser-perl
    (Closes: #240639).

 -- Sebastien Bacher <seb128@debian.org>  Sat,  3 Apr 2004 23:46:56 +0200

metacity (1:2.8.0-1) experimental; urgency=low

  * New upstream release:
    + converts "show desktop mode" to "all windows are minimized" when
      you open a new window (Closes: #217467).
    + fixes bug with panel not listed before clicking on them
      (Closes: #224054).
    + fixes multi-tab handling (Closes: #227708).
    + includes always on top menu entry (Closes: #204212).
    + includes wireframes support (Closes: #184849).
    + should fix bug with applications changing workspace
      (Closes: #224156, #230782).
    + switches window truncates title (Closes: #186324).
  * debian/control.in, debian/rules:
    + adapted for the Gnome Team.
  * debian/patches/000_metacity-debian-xinerama-pic.patch:
    + updated.
  * debian/patches/001_metacity-focus.patch:
    + removed since the changes are included in the new version.
  * debian/watch:
    + updated to 2.8 branch.

 -- Sebastien Bacher <seb128@debian.org>  Sun, 28 Mar 2004 12:26:22 +0200

metacity (1:2.6.3-2) unstable; urgency=low

  * debian/patches/001_metacity-focus.patch :
    + new patch to fix focus problem with panels in mouse and sloppy modes
      (Closes: #224858).
  * Gnome Team Upload.

 -- Sebastien Bacher <seb128@debian.org>  Sun, 18 Jan 2004 19:31:49 +0100

metacity (1:2.6.3-1) unstable; urgency=low

  * New upstream release.
  * Gnome Team Upload.

 -- Sebastien Bacher <seb128@debian.org>  Sat, 20 Dec 2003 23:17:21 +0100

metacity (1:2.6.2-2) unstable; urgency=low

  * debian/patches/000_metacity-debian-xinerama-pic.patch:
    - updated to fix a link problem (Closes: #216693).

 -- Sebastien Bacher <seb128@debian.org>  Tue, 21 Oct 2003 13:56:24 +0200

metacity (1:2.6.2-1) unstable; urgency=low

  * New upstream release.
  * debian/patches/:
    - 000_metacity-2.4.34-usage.patch: removed.
    - 000_metacity-debian-xinerama-pic.patch: updated.
    - 001_metacity-2.4.55-non-weak-symbols.patch: removed.
  * Update Build-Depends.
  * Gnome Team Upload.

 -- Sebastien Bacher <seb128@debian.org>  Sat, 18 Oct 2003 19:33:23 +0200

metacity (1:2.4.55-3) unstable; urgency=low

  * debian/metacity.1:
    - fixed the incorrect option. (closes: Bug#209159)
  * debian/metacity.prerm:
    - fixed removing alternatives issue. (closes: Bug#211502)

 -- Akira TAGOH <tagoh@debian.org>  Wed,  8 Oct 2003 18:44:56 +0900

metacity (1:2.4.55-2) unstable; urgency=low

  * debian/patches/000_metacity-debian-xinerama-pic.patch:
    - update to fix the unnecessary library dependencies in .la.
      (closes: Bug#195774)

 -- Akira TAGOH <tagoh@debian.org>  Thu, 12 Jun 2003 01:25:45 +0900

metacity (1:2.4.55-1) unstable; urgency=low

  * New upstream release.
  * debian/patches/:
    - 000_metacity-2.4.34-save-workspace.patch: removed.
    - 001_metacity-2.4.55-non-weak-symbols.patch: updated.

 -- Akira TAGOH <tagoh@debian.org>  Mon,  2 Jun 2003 02:50:50 +0900

metacity (1:2.4.34-3) unstable; urgency=low

  * debian/control:
    - suggests gnome-control-center instead of metacity-properties.
      (closes: Bug#192752)
    - bumped Standards-Version to 3.5.10.0.
  * debian/patches/001_metacity-2.4.34-non-weak-symbols.patch:
    - applied a backported patch to fix undefined non-weak symbols.
      (closes: Bug#187347)
  * debian/metacity.postinst:
    - set a priority to 60 for x-window-manager according to the latest
      policy.

 -- Akira TAGOH <tagoh@debian.org>  Mon, 19 May 2003 06:30:37 +0900

metacity (1:2.4.34-2) unstable; urgency=low

  * Revert to 2.4.34 to use stable release.
    - should works now. (closes: Bug#187749, Bug#187387, Bug#187982)
  * debian/README.Debian:
    - described NVidia drivers issue. (closes: Bug#181056)
  * debian/patches/:
    - 000_metacity-2.4.34-usage.patch: applied it again.
    - 000_metacity-2.4.34-save-workspace.patch: applied a backported patch
      from CVS to really fix Bug#186033 in 2.4.34.
    - 000_metacity-2.5.0-noframe-window.patch: removed.

 -- Akira TAGOH <tagoh@debian.org>  Mon, 14 Apr 2003 00:29:52 +0900

metacity (2.5.0-2) unstable; urgency=low

  * debian/patches/:
    - 000_metacity-debian-xinerama-pic.patch:
      use libXinerama_pic.a instead of libXinerama.a.
    - 000_metacity-2.5.0-noframe-window.patch:
      applied a backported patch from CVS to work no frame window.
      (closes: Bug#187316)
  * debian/control:
    - requires xlibs-pic >= 4.2.1-6.

 -- Akira TAGOH <tagoh@debian.org>  Fri,  4 Apr 2003 04:26:49 +0900

metacity (2.5.0-1) unstable; urgency=low

  * New upsream release.
    - Workspace names are saved now. (closes: Bug#186033)
  * debian/control:
    - bumped Standards-Version to 3.5.9.
    - changed a section for libmetacity-dev to libdevel.
  * debian/compat:
    - use it instead of DH_COMPAT.
  * debian/patches/
    - 000_metacity-2.4.34-usage.patch: removed.

 -- Akira TAGOH <tagoh@debian.org>  Wed,  2 Apr 2003 00:16:38 +0900

metacity (2.4.34-1) unstable; urgency=low

  * New upstream release.
    - contains a fix of 64-bit bug. so should be fixed. (closes: Bug#179698)
    - should be fixed. (closes: Bug#177814)
  * debian/patches/000_metacity-2.4.34-usage.patch:
    applied to fix a typo in usage. (closes: Bug#179699)

 -- Akira TAGOH <tagoh@debian.org>  Fri,  7 Feb 2003 04:38:32 +0900

metacity (2.4.21-2) unstable; urgency=low

  * debian/control:
    - suggests metacity-properties instead of gnome-control-center.
  * debian/metacity.docs:
    - moved from libmetacity0. (closes: Bug#178966)
  * debian/metacity.postinst:
    - run gconftool-2 with HOME=/root

 -- Akira TAGOH <tagoh@debian.org>  Sun,  2 Feb 2003 16:50:02 +0900

metacity (2.4.21-1) unstable; urgency=low

  * New upstream release.
  * debian/patches/:
    - 000_metacity-2.4.13-args.patch: removed, because it was merged to the
      upstream.
    - 000_metacity-2.4.8-properties.patch: removed.
  * debian/control: add Suggests: gnome-control-center.
  * debian/rules: drop --enable-config-dialog. metacity-properties is
    obsolete. use gnome-window-properties in gnome-control-center instead of.

 -- Akira TAGOH <tagoh@debian.org>  Wed, 29 Jan 2003 00:39:57 +0900

metacity (2.4.13-2) unstable; urgency=low

  * debian/docs: add NEWS file (closes: Bug#176317)

 -- Akira TAGOH <tagoh@debian.org>  Tue, 14 Jan 2003 23:15:48 +0900

metacity (2.4.13-1) unstable; urgency=low

  * New upstream release.
  * debian/control:
    - updated Build-Depends.
    - add libgtk2.0-dev to Depends for libmetacity-dev
  * debian/rules: enable startup-notification.
  * debian/patches/:
    - 000_metacity-2.4.8-dont-pass-NULL.patch:
      removed.
    - 000_metacity-2.4.13-args.patch:
      applied to fix the working of configure options.

 -- Akira TAGOH <tagoh@debian.org>  Sat, 11 Jan 2003 07:06:24 +0900

metacity (2.4.8-4) unstable; urgency=low

  * upstream bug was closed. so it should be fixed. (closes: Bug#152075)
  * debian/rules: don't use dh_installwm until it will supports the
    registration of manpage as slave.
  * debian/metacity.postinst: runs update-alternatives. (closes: Bug#175756)
  * debian/metacity.prerm: runs update-alternatives.

 -- Akira TAGOH <tagoh@debian.org>  Thu,  9 Jan 2003 03:40:15 +0900

metacity (2.4.8-3) unstable; urgency=low

  * debian/metacity.postinst:
    fix the wrong registration. (closes: Bug#173789, Bug#174358)

 -- Akira TAGOH <tagoh@debian.org>  Fri, 27 Dec 2002 05:01:25 +0900

metacity (2.4.8-2) unstable; urgency=low

  * debian/patches/000_metacity-2.4.8-dont-pass-NULL.patch:
    applied to fix the segfault at startup. (closes: Bug#173594, Bug#173604)

 -- Akira TAGOH <tagoh@debian.org>  Fri, 20 Dec 2002 01:08:43 +0900

metacity (2.4.8-1) unstable; urgency=low

  * New upstream release.
  * debian/patches/000_metacity-2.4.3-stack.patch:
    removed, because this release contains it.
  * debian/control:
    - fix description-synopsis-ends-with-full-stop.
    - add libmetacity0 and libmetacity-dev
  * debian/rules:
    - install metacity-theme.dtd as a sgml catalog. (closes: Bug#170041)
    - build with --enable-config-dialog until we upload GNOME 2.2.
  * debian/metacity.postinst:
    - use gconftool-2 --get-default-source to get GCONF_CONFIG_SOURCE
    - runs update-catalog.
  * debian/patches/000_metacity-2.4.8-properties.patch:
    applied to fix the missing file.

 -- Akira TAGOH <tagoh@debian.org>  Thu, 12 Dec 2002 09:21:35 +0900

metacity (2.4.3-2) unstable; urgency=low

  * debian/patches/000_metacity-2.4.3-stack.patch: backported to fix the
    random crashes. (closes: Bug#168653)

 -- Akira TAGOH <tagoh@debian.org>  Wed, 13 Nov 2002 00:32:14 +0900

metacity (2.4.3-1) unstable; urgency=low

  * New upstream release. (closes: Bug#166919)
  * debian/rules: support noopt option for DEB_BUILD_OPTIONS.
  * debian/control: improve a description. Thanks stephen farrell.

 -- Akira TAGOH <tagoh@debian.org>  Thu,  7 Nov 2002 23:16:47 +0900

metacity (2.4.1-1) unstable; urgency=low

  * New upstream release. (closes: Bug#160535)
    - Should be fixed. (closes: Bug#157995)
  * Set a priority to 40 for x-window-manager according to Bug#155680.
    (closes: Bug#155494)
  * debian/metacity.1: updated.
  * debian/metacity-message.1: added.
  * debian/control:
    - bumped Standards-Version to 3.5.7.
    - updated Build-Depends.

 -- Akira TAGOH <tagoh@debian.org>  Sat, 14 Sep 2002 20:01:35 +0900

metacity (2.4.0-1) unstable; urgency=low

  * New upstream release.
    - switching the workspaces should works now. (closes: Bug#151500)
  * debian/control: update Build-Depends for libgtk2.0-dev.

 -- Akira TAGOH <tagoh@debian.org>  Fri,  9 Aug 2002 02:35:15 +0900

metacity (2.3.987-1) unstable; urgency=low

  * New upstream release.
  * debian/control: add libglade2-dev to Build-Depends (closes: Bug#149489)

 -- Akira TAGOH <tagoh@debian.org>  Tue, 11 Jun 2002 14:38:06 +0900

metacity (2.3.610-1) unstable; urgency=low

  * New upstream release.
    - Should be fixed in this release. (closes: Bug#146127)

 -- Akira TAGOH <tagoh@debian.org>  Wed,  5 Jun 2002 19:15:41 +0900

metacity (2.3.377-2) unstable; urgency=low

  * debian/docs: includes theme-format.txt (closes: Bug#147644)

 -- Akira TAGOH <tagoh@debian.org>  Tue, 21 May 2002 19:24:00 +0900

metacity (2.3.377-1) unstable; urgency=low

  * New upstream release.

 -- Akira TAGOH <tagoh@debian.org>  Tue, 21 May 2002 11:02:28 +0900

metacity (2.3.233-2) unstable; urgency=low

  * debian/control: fix the misleading description. (closes: Bug#145942)

 -- Akira TAGOH <tagoh@debian.org>  Tue,  7 May 2002 14:29:36 +0900

metacity (2.3.233-1) unstable; urgency=low

  * New upstream release.

 -- Akira TAGOH <tagoh@debian.org>  Sun,  5 May 2002 03:21:05 +0900

metacity (2.3.144-2) unstable; urgency=low

  * debian/control: Add Provides: x-window-manager.

 -- Akira TAGOH <tagoh@debian.org>  Fri,  3 May 2002 07:31:17 +0900

metacity (2.3.144-1) unstable; urgency=low

  * New upstream release.
    - keybindings are configurable now. (closes: Bug#144657)

 -- Akira TAGOH <tagoh@debian.org>  Tue, 30 Apr 2002 03:32:36 +0900

metacity (2.3.89-1) unstable; urgency=low

  * New upstream release.
  * debian/scripts/vars.build: fix bashism.
  * debian/rules: add GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=yes to install
    rule.
  * debian/metacity.manpages: remove metacity-restart.1 entry. this command
    no longer exists.

 -- Akira TAGOH <tagoh@debian.org>  Tue, 16 Apr 2002 21:35:19 +0900

metacity (2.3.55-1) unstable; urgency=low

  * I have taken over from Thom.
  * New upstream release.
  * Build against the latest libraries (closes: Bug#139215)
  * debian/rules:
    - support DEB_HOST_GNU_TYPE and DEB_BUILD_GNU_TYPE.
    - support debug and nostrip options for DEB_BUILD_OPTIONS.
    - copying the latest config.sub and config.guess.

 -- Akira TAGOH <tagoh@debian.org>  Tue, 26 Mar 2002 02:18:26 +0900

metacity (2.3.34-2) unstable; urgency=low

  * Added build-depend on docbook-to-man (Closes: #134433)

 -- Thom May <thom@debian.org>  Sun, 17 Feb 2002 20:14:28 +0000

metacity (2.3.34-1) unstable; urgency=low

  * Initial Release. (Closes: #107181)

 -- Thom May <thom@debian.org>  Sun, 10 Feb 2002 12:03:22 +0000