summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 648f6c005a409fd8af73c69b40e343cd65cef4c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
commit 3328432d7f8e963a37065308fa8a681c1b741741
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Jan 11 22:56:52 2013 +0100

    Fix update of GSettings enum preferences

 src/core/prefs.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c2ef215448099a7a3cc83c2d8a5780b42227e484
Merge: 3ba5164 f86f199
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Dec 20 01:31:20 2012 -0800

    Merge pull request #29 from cygwinports/master
    
    [marco] Add mateconf-gsettings-data-convert file

commit f86f19970944d3e396eb94bc6b7ec368aae7063f
Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
Date:   Wed Dec 19 22:00:34 2012 -0600

    Add mateconf-gsettings-data-convert file

 src/Makefile.am   |    4 ++
 src/marco.convert |  153 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 157 insertions(+)

commit 3ba516419041962944da9f9bdf0cb55810a2ad02
Merge: d72b5f2 3c82397
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Tue Nov 20 20:57:16 2012 -0800

    Merge pull request #26 from sbalneav/master
    
    Deprecations and warnings

commit 3c82397d3fdbbaa8d1614a6f5eeeaad4ef20d3f6
Author: Scott Balneaves <sbalneav@alburg.net>
Date:   Tue Nov 20 22:50:33 2012 -0600

    Fix deprecations and compile warnings.  Clean compile

 src/compositor/compositor-xrender.c |   10 ++++++++--
 src/core/boxes.c                    |    2 --
 src/core/display.c                  |    4 ++++
 src/core/errors.c                   |    8 +++++++-
 src/core/keybindings.c              |    4 ++++
 src/core/main.c                     |   12 +++++++++++-
 src/core/prefs.c                    |   35 ++++++++++++++++++++---------------
 src/core/screen.c                   |    4 ++--
 src/core/testasyncgetprop.c         |    8 +++++++-
 src/core/window.c                   |   14 ++++++++++----
 src/ui/testgradient.c               |    8 +++++++-
 src/ui/themewidget.c                |    8 +++++++-
 12 files changed, 87 insertions(+), 30 deletions(-)

commit d72b5f2a0bbd035a98979c3519de90a194f67e05
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Sun Nov 18 20:57:29 2012 -0500

    fixed incorrect fsf addresses.

 src/compositor/compositor-private.h |    4 ++--
 src/compositor/compositor-xrender.c |    4 ++--
 src/compositor/compositor-xrender.h |    4 ++--
 src/compositor/compositor.c         |    4 ++--
 src/core/atomnames.h                |    4 ++--
 src/core/bell.c                     |    4 ++--
 src/core/bell.h                     |    4 ++--
 src/core/boxes.c                    |    4 ++--
 src/core/constraints.c              |    4 ++--
 src/core/constraints.h              |    4 ++--
 src/core/core.c                     |    4 ++--
 src/core/delete.c                   |    4 ++--
 src/core/display-private.h          |    4 ++--
 src/core/display.c                  |    4 ++--
 src/core/edge-resistance.c          |    4 ++--
 src/core/edge-resistance.h          |    4 ++--
 src/core/effects.c                  |    4 ++--
 src/core/effects.h                  |    4 ++--
 src/core/errors.c                   |    4 ++--
 src/core/eventqueue.c               |    4 ++--
 src/core/eventqueue.h               |    4 ++--
 src/core/frame-private.h            |    4 ++--
 src/core/frame.c                    |    4 ++--
 src/core/group-private.h            |    4 ++--
 src/core/group-props.c              |    4 ++--
 src/core/group-props.h              |    4 ++--
 src/core/group.c                    |    4 ++--
 src/core/group.h                    |    4 ++--
 src/core/iconcache.c                |    4 ++--
 src/core/iconcache.h                |    4 ++--
 src/core/keybindings.c              |    4 ++--
 src/core/keybindings.h              |    4 ++--
 src/core/main.c                     |    4 ++--
 src/core/place.c                    |    4 ++--
 src/core/place.h                    |    4 ++--
 src/core/prefs.c                    |    4 ++--
 src/core/schema-bindings.c          |    4 ++--
 src/core/screen-private.h           |    4 ++--
 src/core/screen.c                   |    4 ++--
 src/core/session.c                  |    4 ++--
 src/core/session.h                  |    4 ++--
 src/core/stack.c                    |    4 ++--
 src/core/stack.h                    |    4 ++--
 src/core/testboxes.c                |    4 ++--
 src/core/util.c                     |    4 ++--
 src/core/window-private.h           |    4 ++--
 src/core/window-props.c             |    4 ++--
 src/core/window-props.h             |    4 ++--
 src/core/window.c                   |    4 ++--
 src/core/workspace.c                |    4 ++--
 src/core/workspace.h                |    4 ++--
 src/core/xprops.c                   |    4 ++--
 src/include/all-keybindings.h       |    4 ++--
 src/include/boxes.h                 |    4 ++--
 src/include/common.h                |    4 ++--
 src/include/compositor.h            |    4 ++--
 src/include/core.h                  |    4 ++--
 src/include/display.h               |    4 ++--
 src/include/errors.h                |    4 ++--
 src/include/frame.h                 |    4 ++--
 src/include/main.h                  |    4 ++--
 src/include/prefs.h                 |    4 ++--
 src/include/resizepopup.h           |    4 ++--
 src/include/screen.h                |    4 ++--
 src/include/tabpopup.h              |    4 ++--
 src/include/types.h                 |    4 ++--
 src/include/ui.h                    |    4 ++--
 src/include/util.h                  |    4 ++--
 src/include/window.h                |    4 ++--
 src/include/xprops.h                |    4 ++--
 src/tools/marco-grayscale.c         |    4 ++--
 src/tools/marco-mag.c               |    4 ++--
 src/tools/marco-message.c           |    4 ++--
 src/tools/marco-window-demo.c       |    4 ++--
 src/ui/draw-workspace.c             |    4 ++--
 src/ui/draw-workspace.h             |    4 ++--
 src/ui/fixedtip.c                   |    4 ++--
 src/ui/fixedtip.h                   |    4 ++--
 src/ui/frames.c                     |    4 ++--
 src/ui/frames.h                     |    4 ++--
 src/ui/gradient.c                   |    4 ++--
 src/ui/gradient.h                   |    4 ++--
 src/ui/menu.c                       |    4 ++--
 src/ui/menu.h                       |    4 ++--
 src/ui/metaaccellabel.c             |    4 ++--
 src/ui/metaaccellabel.h             |    4 ++--
 src/ui/preview-widget.c             |    4 ++--
 src/ui/preview-widget.h             |    4 ++--
 src/ui/resizepopup.c                |    4 ++--
 src/ui/tabpopup.c                   |    4 ++--
 src/ui/testgradient.c               |    4 ++--
 src/ui/theme-parser.c               |    4 ++--
 src/ui/theme-parser.h               |    4 ++--
 src/ui/theme-viewer.c               |    4 ++--
 src/ui/theme.c                      |    4 ++--
 src/ui/theme.h                      |    4 ++--
 src/ui/themewidget.c                |    4 ++--
 src/ui/themewidget.h                |    4 ++--
 src/ui/ui.c                         |    4 ++--
 src/wm-tester/main.c                |    4 ++--
 100 files changed, 200 insertions(+), 200 deletions(-)

commit f92f68f71e49c87a21774df9afe91b4459774921
Merge: 366e3b6 6404a98
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Nov 11 09:19:47 2012 -0800

    Merge pull request #24 from ketheriel/master
    
    fix startup rendering effects with composite enabled

commit 6404a98fb79e7bb4c3e9c5ca9919e12c946679d7
Author: Nelson Marques <nmo.marques@gmail.com>
Date:   Sun Nov 11 16:58:20 2012 +0000

    fix startup rendering effect with composite enabled

 src/compositor/compositor-xrender.c |    2 ++
 1 file changed, 2 insertions(+)

commit 366e3b67f24f3f93a47222aeae16173a9039bd16
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Oct 31 15:20:55 2012 +0100

    set maximum workspaces number to 16

 src/core/prefs.c               |    2 +-
 src/org.mate.marco.gschema.xml |    1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 545ba2f33c2cf0bdd3842f0ff823010ee7f9e05b
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Oct 27 16:55:23 2012 +0200

    bump version to 1.5.2

 configure.in |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2021a69960802a6ee2562b7047a3c0eb968c470b
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Oct 27 16:37:04 2012 +0200

    migrate keybindings xml files for gsettings

 src/50-marco-desktop-key.xml.in |   17 +--
 src/50-marco-global-key.xml.in  |  131 +++++++++++++++++++
 src/50-marco-key.xml.in         |  269 ---------------------------------------
 src/50-marco-window-key.xml.in  |  201 +++++++++++++++++++++++++++++
 src/Makefile.am                 |    5 +-
 5 files changed, 342 insertions(+), 281 deletions(-)

commit 44205a3b8439614e1a2b176006e9f8e6a6c49439
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Oct 27 15:44:51 2012 +0200

    schema-id is new in glib 2.32

 src/core/prefs.c |    4 ++++
 1 file changed, 4 insertions(+)

commit f5946af8359cebfebb23f2174678cbdc7c31d3eb
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Oct 27 15:39:59 2012 +0200

    fix get schema name

 src/core/prefs.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit ac9664dd0310fe98caf30e6cca3af4d3886c9291
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Oct 17 12:27:59 2012 +0200

    bump version to 1.5.1

 configure.in |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 01e99a95e4f03c36fa227e462ab1b1937a1ba225
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Oct 17 12:27:21 2012 +0200

    update NEWS file

 NEWS |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit cab5893d5e33fa40a14ca3a471c03532075f73c3
Merge: 23656ae 354fc0e
Author: Nelson Marques <nmo.marques@gmail.com>
Date:   Tue Oct 16 09:48:54 2012 -0700

    Merge pull request #17 from ketheriel/master
    
    improve support for button layout (ported from Ubuntu)

commit 354fc0e850efbfa44065bcd2f9f3fb1b2267f135
Author: Nelson Marques <nmo.marques@gmail.com>
Date:   Tue Oct 16 17:34:30 2012 +0100

    improve button theming - taken from Ubuntu

 src/ui/theme.c |   52 +++++++++++++++++++++++++++-------------------------
 src/ui/theme.h |    2 ++
 2 files changed, 29 insertions(+), 25 deletions(-)

commit 23656ae5a7fa38ab90cb35fe9ad2604253fb1185
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Oct 11 16:57:24 2012 +0200

    function call needs to pass NULL-pointer as last argument

 src/core/prefs.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2f516a620bbde0463b6464ee1ac12c2b86ab7746
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Oct 1 22:52:51 2012 +0200

    bump version to 1.5.0

 configure.in |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7f595187a140a45ee5ba2fc2b9c068b46d829f79
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Oct 1 22:52:14 2012 +0200

    migrate to gsettings

 HACKING                        |    8 +-
 README                         |   31 +-
 configure.in                   |   37 +-
 po/POTFILES.in                 |    3 -
 src/Makefile.am                |   30 +-
 src/core/core.c                |   42 +-
 src/core/keybindings.c         |    4 +-
 src/core/prefs.c               | 1189 ++++++++++------------------------------
 src/core/screen.c              |    6 +-
 src/include/all-keybindings.h  |  394 +++++--------
 src/include/prefs.h            |    4 +-
 src/marco.schemas.in.in        |  611 ---------------------
 src/org.mate.marco.gschema.xml |  722 ++++++++++++++++++++++++
 13 files changed, 1193 insertions(+), 1888 deletions(-)

commit 2c0d59c170ac3ef987d21599cfac7c909e8fe729
Merge: 4829cf1 467e86c
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Aug 31 14:44:58 2012 -0700

    Merge pull request #12 from NiceandGently/master
    
    desktop-file-validate error with marco-wm.desktop

commit 467e86c24efe67adfccd786d37bc9a73ed4c81d0
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Sat Sep 1 00:38:41 2012 +0300

    Update src/marco-wm.desktop.in

 src/marco-wm.desktop.in |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4829cf1bbcbc0b30c439b48d85ff29139561280b
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Aug 28 11:31:40 2012 +0200

    fix HACKING file
    https://github.com/mate-desktop/mate-window-manager/issues/11

 HACKING |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit 631ad4f4051a99919e6e4ea0e5e08b990f4ffa22
Merge: d4b4416 ae71d9d
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Aug 27 07:56:36 2012 -0700

    Merge pull request #10 from stefanct/master
    
    Allow alt+tab etc while drag'n'drop is active

commit ae71d9d2a8cb95fee662a997bde3329796b3cdb3
Author: Stefan Tauner <stefan.tauner@gmx.at>
Date:   Thu Aug 23 16:37:30 2012 +0200

    Fix key handling while drag and drop is active
    
    This is still not fixed "upstream" (i.e. in metacity) but many distributions
    ship with this patch. The patch is from Matthias Clasen (Redhat).
    See https://bugzilla.gnome.org/show_bug.cgi?id=135056#c33 and
    https://bugs.launchpad.net/ubuntu/+source/metacity/+bug/111939
    for details.

 src/core/display.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d4b44167b9b14ee37479061ca3cd413ace1bd3ad
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Tue Aug 21 15:41:33 2012 -0400

    Preparing for 1.4.1 release.

 ChangeLog    |   60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.in |    2 +-
 2 files changed, 61 insertions(+), 1 deletion(-)

commit eef48c40861ebe35c088adc80bdde1600acda22e
Author: Perberos <perberos@gmail.com>
Date:   Sun Aug 12 18:35:51 2012 -0300

    removing metacity-restartstyle.patch, because it was already included

 distro/archlinux/PKGBUILD                    |    3 +-
 distro/archlinux/metacity-restartstyle.patch |  139 --------------------------
 2 files changed, 1 insertion(+), 141 deletions(-)

commit de92a9f787d80c681a1678c027dfe3dababbc8a3
Author: Perberos <perberos@gmail.com>
Date:   Sun Aug 12 16:36:34 2012 -0300

    Update src/compositor/compositor-xrender.c
    
    manually edit from fix-grey-compositor.patch sent by Leandro Vital to set the default background to black (instead of grey) when compositing.

 src/compositor/compositor-xrender.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit a32218e8141e13dc83d88ddf5e11afe1dc8fbd4f
Merge: 4877f47 d97bf7a
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Aug 1 08:33:31 2012 -0700

    Merge pull request #6 from NiceandGently/master
    
    apply Should-set-RestartStyleHint-to-RestartIfRunning-wh.patch for issue #2

commit d97bf7aab0358d423cfc2b3a00079662fc821dff
Author: raveit65 <chat-to-me@raveit.de>
Date:   Wed Aug 1 13:16:42 2012 +0200

    apply Should-set-RestartStyleHint-to-RestartIfRunning-wh.patch

 src/core/display-private.h |    2 +-
 src/core/display.c         |   15 ++++-----------
 src/core/main.c            |    5 ++---
 src/core/session.c         |    8 --------
 4 files changed, 7 insertions(+), 23 deletions(-)

commit 4877f47e6d29289e49a4e1b4a12e8b736711678c
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Fri Jul 13 00:23:53 2012 -0300

    Added newline to as.po

 po/as.po |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 891fd1ae0d6a4cb9174c4afb38a6e04e7df750e7
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Tue Jul 10 21:46:09 2012 -0400

    Preparing for 1.4 release.

 ChangeLog |   28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

commit 610f6f0fc37d01619c36b9e4bb6a18f2f61fe1e0
Author: Perberos <perberos@gmail.com>
Date:   Tue Jul 10 00:34:39 2012 -0300

    Adjust the icon size according to the size of the title bar

 src/themes/Spidey/metacity-theme-1.xml |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit e0d1023a4940dea7d3ddc8ad0e21823b9f48fe0c
Author: Perberos <perberos@gmail.com>
Date:   Tue Jul 10 00:32:41 2012 -0300

    Adjust the icon size according to the size of the title bar

 src/themes/Spidey-Left/metacity-theme-1.xml |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit fd1e4d0c7a34cd53937436c665cf833f582e2366
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Thu Jul 5 14:21:46 2012 -0400

    Preparing for 1.4 release.

 ChangeLog    |  229 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 configure.in |    2 +-
 2 files changed, 226 insertions(+), 5 deletions(-)

commit 9cbe69d61f9826fd368d1eaec939d35fe851b775
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Jul 4 16:01:28 2012 +0200

    sync translations with transifex

 po/am.po          | 3048 +++++++++++++++--------------------
 po/ar.po          | 2101 ++++---------------------
 po/as.po          | 2417 +++++-----------------------
 po/ast.po         | 1353 ++++++----------
 po/az.po          | 3925 +++++++++++++++++----------------------------
 po/be.po          | 3094 +++++++++++++++++-------------------
 po/bg.po          | 1037 +++++-------
 po/bn.po          | 2135 ++++---------------------
 po/bn_IN.po       | 1137 +++++---------
 po/br.po          | 2119 +++++++++++++------------
 po/bs.po          | 4014 +++++++++++++++++-----------------------------
 po/ca.po          | 2567 +++++-------------------------
 po/ca@valencia.po | 2561 +++++-------------------------
 po/crh.po         | 1241 +++++----------
 po/cs.po          |  941 +++++------
 po/cy.po          | 3937 +++++++++++++---------------------------------
 po/da.po          | 1166 ++++----------
 po/de.po          | 2458 +++++------------------------
 po/dz.po          | 3201 ++++++++++++++++---------------------
 po/el.po          | 1113 +++++--------
 po/en_CA.po       | 4546 ++++++++++++++++++-----------------------------------
 po/en_GB.po       | 2349 +++++----------------------
 po/eo.po          |  627 ++++----
 po/es.po          | 2482 +++++------------------------
 po/et.po          | 1034 +++++++-----
 po/eu.po          |  955 +++++------
 po/fa.po          | 3969 +++++++++++++++++-----------------------------
 po/fi.po          |  985 +++++-------
 po/fr.po          | 1176 +++++---------
 po/ga.po          |  780 +++++----
 po/gl.po          | 1020 +++++-------
 po/gu.po          | 1036 +++++-------
 po/ha.po          | 2598 +++++++-----------------------
 po/he.po          | 2280 ++++-----------------------
 po/hi.po          | 1145 +++++---------
 po/hr.po          | 3696 +++++++++++++------------------------------
 po/hu.po          | 1033 +++++-------
 po/hy.po          | 3386 ++++++++++++++++-----------------------
 po/id.po          |  812 +++++-----
 po/ig.po          | 2490 +++++++----------------------
 po/is.po          | 3191 +++++++++++++++----------------------
 po/it.po          | 1173 +++++---------
 po/ja.po          | 2249 ++++----------------------
 po/ka.po          | 4414 ++++++++++++++++++---------------------------------
 po/kn.po          | 1028 +++++-------
 po/ko.po          |  900 ++++-------
 po/ku.po          |  954 +++++------
 po/lt.po          | 2565 +++++-------------------------
 po/lv.po          |  983 ++++--------
 po/mai.po         |  913 +++++------
 po/mg.po          | 4179 +++++++++++++++++-------------------------------
 po/mk.po          | 3755 ++++++++++++++-----------------------------
 po/ml.po          |  852 ++++------
 po/mn.po          | 4073 +++++++++++++++++------------------------------
 po/mr.po          |  850 ++++------
 po/ms.po          | 3277 ++++++++++++++++----------------------
 po/nb.po          |  868 ++++------
 po/nds.po         |  753 +++++----
 po/ne.po          | 3931 ++++++++++++++++-----------------------------
 po/nl.po          | 1085 +++++--------
 po/nn.po          | 2642 ++++++-------------------------
 po/oc.po          | 1109 +++++--------
 po/or.po          | 1176 +++++---------
 po/pa.po          | 2092 ++++--------------------
 po/pl.po          | 1085 +++++--------
 po/pt.po          | 2528 +++++------------------------
 po/pt_BR.po       | 2536 +++++-------------------------
 po/ro.po          | 1027 +++++-------
 po/ru.po          | 1015 +++++-------
 po/si.po          | 3218 ++++++++++++++-----------------------
 po/sk.po          | 2397 +++++-----------------------
 po/sl.po          |  857 +++++-----
 po/sq.po          | 3576 ++++++++++-------------------------------
 po/sr.po          | 2434 +++++-----------------------
 po/sr@latin.po    | 2434 +++++-----------------------
 po/sv.po          |  861 +++++-----
 po/ta.po          |  874 ++++------
 po/te.po          | 1031 +++++-------
 po/th.po          | 2103 ++++---------------------
 po/tk.po          | 3022 +++++++++++++++--------------------
 po/tr.po          | 2501 ++++++-----------------------
 po/uk.po          | 1027 +++++-------
 po/vi.po          | 3855 +++++++++++++--------------------------------
 po/wa.po          | 3200 +++++++++++++++----------------------
 po/xh.po          | 4031 +++++++++++++++++------------------------------
 po/yo.po          | 2462 +++++++----------------------
 po/zh_CN.po       |  831 ++++------
 po/zh_HK.po       | 1855 ++++------------------
 po/zh_TW.po       | 2033 ++++--------------------
 89 files changed, 56387 insertions(+), 129382 deletions(-)

commit bfeb5339f7eadbee5a3ee067dff7ebe3b1353c1b
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Jul 4 15:54:35 2012 +0200

    add po gnome copyrights file

 po/gnome-copyrights.txt | 1128 +++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 1128 insertions(+)

commit 919e73331003c911f8767050dc629f4057f246b1
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Sat May 26 12:52:34 2012 -0400

    Bumped version to 1.3.0

 configure.in |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 07e8c1019b0e3b8fc49304bae6c074e282053925
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Sat May 26 12:42:33 2012 -0400

    Fixes https://github.com/mate-desktop/mate-window-manager/issues/4

 src/core/prefs.c        |   38 ++++++++++++++++++++++++++++++++++++++
 src/core/screen.c       |    8 +++++++-
 src/include/prefs.h     |    4 ++++
 src/marco.schemas.in.in |   15 +++++++++++++++
 4 files changed, 64 insertions(+), 1 deletion(-)

commit ce3d3a4b6e0a93eea4d54ac4bc2907b7432e136b
Merge: 6e5c6ab e2d0da8
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Thu May 10 13:08:46 2012 -0700

    Merge pull request #3 from benpicco/features
    
    new marco features

commit e2d0da87ec3f7add9643c7f7f424df080d95d8dc
Author: Alexander Larsson <alexl@redhat.com>
Date:   Mon Jan 9 17:55:18 2012 +0100

    Introduce key combination to switch between windows on all workspaces taken from https://bugzilla.gnome.org/show_bug.cgi?id=577699

 src/core/display-private.h    |    3 +-
 src/core/display.c            |  121 +++++++++++++++++++++++++++--------------
 src/core/keybindings.c        |   11 ++++
 src/include/all-keybindings.h |    6 ++
 src/include/common.h          |    2 +
 5 files changed, 100 insertions(+), 43 deletions(-)

commit dacdbd19b2d6037235aa4ed1bd28f89286236046
Author: Benjamin Valentin <benpicco@zedat.fu-berlin.de>
Date:   Mon Jan 9 17:47:29 2012 +0100

    implement option for classic and toroidal workspace switching, based on https://bugzilla.gnome.org/show_bug.cgi?id=89315

 src/core/prefs.c        |   25 +++++++++++++-
 src/core/workspace.c    |   87 ++++++++++++++++++++++++++++++++++++++++++-----
 src/include/common.h    |    7 ++++
 src/include/prefs.h     |    2 ++
 src/marco.schemas.in.in |   23 +++++++++++++
 5 files changed, 134 insertions(+), 10 deletions(-)

commit 3f122b87a866edb62d0402058f83974cf8a8fd54
Author: Dylan McCall <dylanmccall@ubuntu.com>
Date:   Mon Jan 9 02:36:16 2012 +0100

    Use positional sound for audible window bell
    
    Many components in the GNOME desktop use libcanberra-gtk to play sounds, which
    has led us to a wonderful world of positional sounds (in many cases), where a
    sound seems to come from the same direction as an interaction on the screen.
    
    Metacity uses libcanberra for audible bells, so it is pretty straight-forward
    to get the same feature. In my opinion, it would make Metacity's bell sound
    suddenly awesome, for a number of reasons.
    
    To implement the feature, Metacity needs to give a few extra properties to
    Canberra, which describe the position of the window associated with the bell.
    
    	taken from https://bugzilla.gnome.org/show_bug.cgi?id=616743

 src/core/bell.c |   36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

commit 01aeeb15748062b183c5ec400ef7bad67cf60f27
Author: Benjamin Valentin <benpicco@zedat.fu-berlin.de>
Date:   Sun Jan 8 07:49:32 2012 +0100

    Change the behavior of the maximize button so that a middle click on it will maximize the window vertically, a right click horizontally.

 src/include/common.h |    4 ++++
 src/ui/frames.c      |   53 ++++++++++++++++++++++++++++++++++++++------------
 2 files changed, 45 insertions(+), 12 deletions(-)

commit 6e5c6ab190ca9bddf0e2b694abd0100ab5fcc11c
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Feb 25 19:52:59 2012 +0100

    Some fixes for 1.2 release

 MAINTAINERS  |   43 -------------------------------------------
 README       |   41 +++++++----------------------------------
 configure.in |    2 +-
 3 files changed, 8 insertions(+), 78 deletions(-)

commit 6f3aa7937bbf28bb0037a7d60afe6f5548713749
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Thu Feb 23 21:10:59 2012 -0500

    Preparing for 1.2 release

 AUTHORS                |    8 +-
 ChangeLog              |  376 ++++++++++++++++++++++++++++++++++++++++++++++++
 autogen.sh             |    4 +-
 configure.in           |    2 +-
 distro/ubuntu/build    |   35 -----
 distro/ubuntu/postinst |    9 --
 distro/ubuntu/preinst  |    8 --
 distro/ubuntu/prerm    |   11 --
 8 files changed, 386 insertions(+), 67 deletions(-)

commit db0b7a3a63db55669207ef45df22e48deac33431
Author: Perberos <perberos@gmail.com>
Date:   Mon Jan 30 12:18:17 2012 -0300

    set patch on archlinux script

 distro/archlinux/PKGBUILD |   12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

commit 321ccc54a66763f40b2c7176754d0f49664cb750
Author: Perberos <perberos@gmail.com>
Date:   Mon Jan 30 12:14:38 2012 -0300

    removing autogenerated files

 depcomp                         |  630 -------------------------
 doc/Makefile.in                 |  609 ------------------------
 doc/creating_themes/Makefile.in |  981 ---------------------------------------
 doc/man/Makefile.in             |  489 -------------------
 po/Makefile.in.in               |  217 ---------
 src/wm-tester/Makefile.in       |  574 -----------------------
 6 files changed, 3500 deletions(-)

commit b0db9d3a5b1e60536bd6648b0e0a7ac96553a11f
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Tue Jan 10 14:52:56 2012 -0500

    Changed mate.gr.jp to gnome.gr.jp as requested in issue #86

 po/ChangeLog |  244 +++++++++++++++++++++++++++++-----------------------------
 po/ja.po     |   10 +--
 2 files changed, 127 insertions(+), 127 deletions(-)

commit 9b2f64c8d7862ec36c59201466ab6307e96e8bdc
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Fri Dec 9 23:19:55 2011 -0500

    updated version

 configure.in              |    8 ++++----
 distro/archlinux/PKGBUILD |    2 +-
 distro/ubuntu/build       |    2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)

commit 24818854837a35c38c1aa90f834032e315f3fe42
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Fri Dec 2 19:24:33 2011 -0500

    Changed version to 2011.12.01

 configure.in              |    4 ++--
 distro/archlinux/PKGBUILD |    2 +-
 distro/ubuntu/build       |    2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

commit 28a029a4990d2a84f9d6a0b890eba812ea503998
Author: Perberos <perberos@gmail.com>
Date:   Thu Dec 1 23:52:01 2011 -0300

    moving from https://github.com/perberos/mate-desktop-environment

 AUTHORS                                         |    1 +
 COPYING                                         |  340 +
 ChangeLog                                       |    1 +
 HACKING                                         |  298 +
 MAINTAINERS                                     |   43 +
 Makefile.am                                     |    7 +
 NEWS                                            |    1 +
 README                                          |  473 ++
 autogen.sh                                      |   25 +
 configure.in                                    |  582 ++
 depcomp                                         |  630 ++
 distro/archlinux/PKGBUILD                       |   40 +
 distro/archlinux/mate-window-manager.install    |   17 +
 distro/archlinux/metacity-restartstyle.patch    |  139 +
 distro/ubuntu/build                             |   35 +
 distro/ubuntu/postinst                          |    9 +
 distro/ubuntu/preinst                           |    8 +
 distro/ubuntu/prerm                             |   11 +
 doc/Makefile.am                                 |    4 +
 doc/Makefile.in                                 |  609 ++
 doc/code-overview.txt                           |  185 +
 doc/creating_themes/C/calstblx.dtd              |  215 +
 doc/creating_themes/C/creating-marco-themes.xml |  286 +
 doc/creating_themes/C/dbcentx.mod               |  384 +
 doc/creating_themes/C/dbgenent.mod              |   41 +
 doc/creating_themes/C/dbhierx.mod               | 2193 ++++++
 doc/creating_themes/C/dbnotnx.mod               |  101 +
 doc/creating_themes/C/dbpoolx.mod               | 8701 +++++++++++++++++++++++
 doc/creating_themes/C/docbookx.dtd              |  170 +
 doc/creating_themes/C/htmltblx.mod              |  245 +
 doc/creating_themes/C/soextblx.dtd              |  321 +
 doc/creating_themes/Makefile.am                 |   24 +
 doc/creating_themes/Makefile.in                 |  981 +++
 doc/dialogs.txt                                 |   32 +
 doc/how-to-get-focus-right.txt                  |  253 +
 doc/man/Makefile.am                             |    4 +
 doc/man/Makefile.in                             |  489 ++
 doc/man/marco-message.1                         |   60 +
 doc/man/marco-theme-viewer.1                    |   43 +
 doc/man/marco-window-demo.1                     |   25 +
 doc/man/marco.1                                 |   60 +
 doc/marco-theme.dtd                             |  273 +
 doc/theme-format.txt                            |  330 +
 po/ChangeLog                                    | 4964 +++++++++++++
 po/LINGUAS                                      |   95 +
 po/Makefile.in.in                               |  217 +
 po/POTFILES.in                                  |   32 +
 po/POTFILES.skip                                |    2 +
 po/am.po                                        | 2695 +++++++
 po/ar.po                                        | 3571 ++++++++++
 po/as.po                                        | 3706 ++++++++++
 po/ast.po                                       | 2472 +++++++
 po/az.po                                        | 3172 +++++++++
 po/be.po                                        | 2403 +++++++
 po/be@latin.po                                  | 3877 ++++++++++
 po/bg.po                                        | 2420 +++++++
 po/bn.po                                        | 3570 ++++++++++
 po/bn_IN.po                                     | 2404 +++++++
 po/br.po                                        | 2058 ++++++
 po/bs.po                                        | 3263 +++++++++
 po/ca.po                                        | 3947 ++++++++++
 po/ca@valencia.po                               | 3946 ++++++++++
 po/crh.po                                       | 2614 +++++++
 po/cs.po                                        | 2370 ++++++
 po/cy.po                                        | 3804 ++++++++++
 po/da.po                                        | 2679 +++++++
 po/de.po                                        | 3833 ++++++++++
 po/dz.po                                        | 2576 +++++++
 po/el.po                                        | 2486 +++++++
 po/en@shaw.po                                   | 2291 ++++++
 po/en_CA.po                                     | 3631 ++++++++++
 po/en_GB.po                                     | 3776 ++++++++++
 po/eo.po                                        | 2190 ++++++
 po/es.po                                        | 3818 ++++++++++
 po/et.po                                        | 1942 +++++
 po/eu.po                                        | 2382 +++++++
 po/fa.po                                        | 3236 +++++++++
 po/fi.po                                        | 2402 +++++++
 po/fr.po                                        | 2489 +++++++
 po/ga.po                                        | 2169 ++++++
 po/gl.po                                        | 2426 +++++++
 po/gu.po                                        | 2339 ++++++
 po/ha.po                                        | 3599 ++++++++++
 po/he.po                                        | 3736 ++++++++++
 po/hi.po                                        | 2448 +++++++
 po/hr.po                                        | 3679 ++++++++++
 po/hu.po                                        | 2422 +++++++
 po/hy.po                                        | 2853 ++++++++
 po/id.po                                        | 2035 ++++++
 po/ig.po                                        | 3513 +++++++++
 po/is.po                                        | 2720 +++++++
 po/it.po                                        | 2511 +++++++
 po/ja.po                                        | 3684 ++++++++++
 po/ka.po                                        | 3417 +++++++++
 po/kn.po                                        | 2453 +++++++
 po/ko.po                                        | 2345 ++++++
 po/ku.po                                        | 2383 +++++++
 po/la.po                                        | 2182 ++++++
 po/lt.po                                        | 3962 +++++++++++
 po/lv.po                                        | 2416 +++++++
 po/mai.po                                       | 2240 ++++++
 po/mg.po                                        | 3484 +++++++++
 po/mk.po                                        | 3610 ++++++++++
 po/ml.po                                        | 2311 ++++++
 po/mn.po                                        | 3312 +++++++++
 po/mr.po                                        | 2311 ++++++
 po/ms.po                                        | 2754 +++++++
 po/nb.po                                        | 2325 ++++++
 po/nds.po                                       | 2002 ++++++
 po/ne.po                                        | 3338 +++++++++
 po/nl.po                                        | 2481 +++++++
 po/nn.po                                        | 3809 ++++++++++
 po/oc.po                                        | 2462 +++++++
 po/or.po                                        | 2475 +++++++
 po/pa.po                                        | 3537 +++++++++
 po/pl.po                                        | 2436 +++++++
 po/pt.po                                        | 3917 ++++++++++
 po/pt_BR.po                                     | 3916 ++++++++++
 po/ro.po                                        | 2418 +++++++
 po/ru.po                                        | 2415 +++++++
 po/rw.po                                        | 3240 +++++++++
 po/si.po                                        | 2987 ++++++++
 po/sk.po                                        | 3822 ++++++++++
 po/sl.po                                        | 2078 ++++++
 po/sq.po                                        | 3999 +++++++++++
 po/sr.po                                        | 3833 ++++++++++
 po/sr@latin.po                                  | 3833 ++++++++++
 po/sv.po                                        | 2082 ++++++
 po/ta.po                                        | 2331 ++++++
 po/te.po                                        | 2332 ++++++
 po/th.po                                        | 3546 +++++++++
 po/tk.po                                        | 2679 +++++++
 po/tr.po                                        | 3735 ++++++++++
 po/uk.po                                        | 2401 +++++++
 po/vi.po                                        | 3752 ++++++++++
 po/wa.po                                        | 2715 +++++++
 po/xh.po                                        | 3294 +++++++++
 po/yo.po                                        | 3493 +++++++++
 po/zh_CN.po                                     | 2330 ++++++
 po/zh_HK.po                                     | 3396 +++++++++
 po/zh_TW.po                                     | 3510 +++++++++
 rationales.txt                                  |   79 +
 src/50-marco-desktop-key.xml.in                 |   20 +
 src/50-marco-key.xml.in                         |  269 +
 src/Makefile.am                                 |  223 +
 src/compositor/compositor-private.h             |   54 +
 src/compositor/compositor-xrender.c             | 3078 ++++++++
 src/compositor/compositor-xrender.h             |   31 +
 src/compositor/compositor.c                     |  159 +
 src/core/async-getprop.c                        |  680 ++
 src/core/async-getprop.h                        |   67 +
 src/core/atomnames.h                            |  166 +
 src/core/bell.c                                 |  397 ++
 src/core/bell.h                                 |  108 +
 src/core/boxes.c                                | 1926 +++++
 src/core/constraints.c                          | 1382 ++++
 src/core/constraints.h                          |   48 +
 src/core/core.c                                 |  779 ++
 src/core/delete.c                               |  266 +
 src/core/display-private.h                      |  513 ++
 src/core/display.c                              | 5355 ++++++++++++++
 src/core/edge-resistance.c                      | 1277 ++++
 src/core/edge-resistance.h                      |   48 +
 src/core/effects.c                              |  735 ++
 src/core/effects.h                              |  170 +
 src/core/errors.c                               |  288 +
 src/core/eventqueue.c                           |  184 +
 src/core/eventqueue.h                           |   40 +
 src/core/frame-private.h                        |   88 +
 src/core/frame.c                                |  421 ++
 src/core/group-private.h                        |   43 +
 src/core/group-props.c                          |  234 +
 src/core/group-props.h                          |   37 +
 src/core/group.c                                |  274 +
 src/core/group.h                                |   53 +
 src/core/iconcache.c                            |  849 +++
 src/core/iconcache.h                            |   79 +
 src/core/keybindings.c                          | 3352 +++++++++
 src/core/keybindings.h                          |   60 +
 src/core/main.c                                 |  673 ++
 src/core/marco-Xatomtype.h                      |  136 +
 src/core/place.c                                |  932 +++
 src/core/place.h                                |   37 +
 src/core/prefs.c                                | 2794 ++++++++
 src/core/schema-bindings.c                      |  195 +
 src/core/screen-private.h                       |  226 +
 src/core/screen.c                               | 2815 ++++++++
 src/core/session.c                              | 1831 +++++
 src/core/session.h                              |   91 +
 src/core/stack.c                                | 1661 +++++
 src/core/stack.h                                |  402 ++
 src/core/testasyncgetprop.c                     |  497 ++
 src/core/testboxes.c                            | 1416 ++++
 src/core/util.c                                 |  641 ++
 src/core/window-private.h                       |  640 ++
 src/core/window-props.c                         | 1553 ++++
 src/core/window-props.h                         |  129 +
 src/core/window.c                               | 8178 +++++++++++++++++++++
 src/core/workspace.c                            | 1038 +++
 src/core/workspace.h                            |  113 +
 src/core/xprops.c                               | 1238 ++++
 src/include/all-keybindings.h                   |  386 +
 src/include/boxes.h                             |  290 +
 src/include/common.h                            |  300 +
 src/include/compositor.h                        |   76 +
 src/include/core.h                              |  208 +
 src/include/display.h                           |   48 +
 src/include/errors.h                            |   51 +
 src/include/frame.h                             |   31 +
 src/include/main.h                              |   43 +
 src/include/prefs.h                             |  233 +
 src/include/resizepopup.h                       |   47 +
 src/include/screen.h                            |   48 +
 src/include/tabpopup.h                          |   67 +
 src/include/types.h                             |   31 +
 src/include/ui.h                                |  209 +
 src/include/util.h                              |  136 +
 src/include/window.h                            |   39 +
 src/include/xprops.h                            |  227 +
 src/libmarco-private.pc.in                      |   12 +
 src/marco-wm.desktop.in                         |   20 +
 src/marco.desktop.in                            |   17 +
 src/marco.schemas.in.in                         |  573 ++
 src/themes/ClearlooksRe/metacity-theme-1.xml    | 1013 +++
 src/themes/Dopple-Left/metacity-theme-1.xml     | 1135 +++
 src/themes/Dopple/metacity-theme-1.xml          | 1135 +++
 src/themes/DustBlue/button_close_normal.png     |  Bin 0 -> 3830 bytes
 src/themes/DustBlue/button_close_prelight.png   |  Bin 0 -> 1393 bytes
 src/themes/DustBlue/button_close_pressed.png    |  Bin 0 -> 4087 bytes
 src/themes/DustBlue/button_max_normal.png       |  Bin 0 -> 3185 bytes
 src/themes/DustBlue/button_max_prelight.png     |  Bin 0 -> 1326 bytes
 src/themes/DustBlue/button_max_pressed.png      |  Bin 0 -> 4029 bytes
 src/themes/DustBlue/button_menu_normal.png      |  Bin 0 -> 3450 bytes
 src/themes/DustBlue/button_menu_prelight.png    |  Bin 0 -> 4041 bytes
 src/themes/DustBlue/button_menu_pressed.png     |  Bin 0 -> 4065 bytes
 src/themes/DustBlue/button_min_normal.png       |  Bin 0 -> 3152 bytes
 src/themes/DustBlue/button_min_prelight.png     |  Bin 0 -> 1413 bytes
 src/themes/DustBlue/button_min_pressed.png      |  Bin 0 -> 4093 bytes
 src/themes/DustBlue/menu.png                    |  Bin 0 -> 164 bytes
 src/themes/DustBlue/metacity-theme-1.xml        |  409 ++
 src/themes/Makefile.am                          |   53 +
 src/themes/Spidey-Left/metacity-theme-1.xml     | 1086 +++
 src/themes/Spidey/metacity-theme-1.xml          | 1086 +++
 src/themes/Splint-Left/metacity-theme-1.xml     |  802 +++
 src/themes/Splint/metacity-theme-1.xml          |  802 +++
 src/themes/WinMe/close_normal.png               |  Bin 0 -> 256 bytes
 src/themes/WinMe/close_normal_small.png         |  Bin 0 -> 223 bytes
 src/themes/WinMe/close_pressed.png              |  Bin 0 -> 256 bytes
 src/themes/WinMe/close_pressed_small.png        |  Bin 0 -> 219 bytes
 src/themes/WinMe/maximize_normal.png            |  Bin 0 -> 220 bytes
 src/themes/WinMe/maximize_pressed.png           |  Bin 0 -> 241 bytes
 src/themes/WinMe/metacity-theme-1.xml           |  375 +
 src/themes/WinMe/minimize_normal.png            |  Bin 0 -> 213 bytes
 src/themes/WinMe/minimize_pressed.png           |  Bin 0 -> 216 bytes
 src/themes/WinMe/restore_normal.png             |  Bin 0 -> 235 bytes
 src/themes/WinMe/restore_pressed.png            |  Bin 0 -> 257 bytes
 src/themes/eOS/close.png                        |  Bin 0 -> 1031 bytes
 src/themes/eOS/close_unfocused.png              |  Bin 0 -> 775 bytes
 src/themes/eOS/close_unfocused_over.png         |  Bin 0 -> 1031 bytes
 src/themes/eOS/maximize.png                     |  Bin 0 -> 845 bytes
 src/themes/eOS/maximize_unfocused.png           |  Bin 0 -> 775 bytes
 src/themes/eOS/maximize_unfocused_over.png      |  Bin 0 -> 845 bytes
 src/themes/eOS/menu.png                         |  Bin 0 -> 775 bytes
 src/themes/eOS/menu_prelight.png                |  Bin 0 -> 755 bytes
 src/themes/eOS/metacity-theme-1.xml             |  537 ++
 src/themes/eOS/minimize.png                     |  Bin 0 -> 800 bytes
 src/themes/eOS/minimize_unfocused.png           |  Bin 0 -> 775 bytes
 src/themes/eOS/minimize_unfocused_over.png      |  Bin 0 -> 800 bytes
 src/themes/eOS/trough_left.png                  |  Bin 0 -> 322 bytes
 src/themes/eOS/trough_left_unfocused.png        |  Bin 0 -> 324 bytes
 src/themes/eOS/trough_middle.png                |  Bin 0 -> 188 bytes
 src/themes/eOS/trough_middle_unfocused.png      |  Bin 0 -> 195 bytes
 src/themes/eOS/trough_right.png                 |  Bin 0 -> 330 bytes
 src/themes/eOS/trough_right_unfocused.png       |  Bin 0 -> 335 bytes
 src/themes/eOS/unmaximize.png                   |  Bin 0 -> 845 bytes
 src/themes/eOS/unmaximize_unfocused.png         |  Bin 0 -> 775 bytes
 src/themes/eOS/unmaximize_unfocused_over.png    |  Bin 0 -> 845 bytes
 src/tools/Makefile.am                           |   33 +
 src/tools/marco-grayscale.c                     |  109 +
 src/tools/marco-mag.c                           |  278 +
 src/tools/marco-message.c                       |  187 +
 src/tools/marco-window-demo.c                   | 1016 +++
 src/tools/marco-window-demo.png                 |  Bin 0 -> 3453 bytes
 src/ui/draw-workspace.c                         |  229 +
 src/ui/draw-workspace.h                         |   61 +
 src/ui/fixedtip.c                               |  133 +
 src/ui/fixedtip.h                               |   69 +
 src/ui/frames.c                                 | 2940 ++++++++
 src/ui/frames.h                                 |  163 +
 src/ui/gradient.c                               |  842 +++
 src/ui/gradient.h                               |   65 +
 src/ui/menu.c                                   |  509 ++
 src/ui/menu.h                                   |   51 +
 src/ui/metaaccellabel.c                         |  456 ++
 src/ui/metaaccellabel.h                         |  106 +
 src/ui/preview-widget.c                         |  601 ++
 src/ui/preview-widget.h                         |   87 +
 src/ui/resizepopup.c                            |  217 +
 src/ui/tabpopup.c                               |  967 +++
 src/ui/testgradient.c                           |  336 +
 src/ui/theme-parser.c                           | 4212 +++++++++++
 src/ui/theme-parser.h                           |   32 +
 src/ui/theme-viewer.c                           | 1338 ++++
 src/ui/theme.c                                  | 6652 +++++++++++++++++
 src/ui/theme.h                                  | 1190 ++++
 src/ui/themewidget.c                            |  183 +
 src/ui/themewidget.h                            |   78 +
 src/ui/ui.c                                     | 1117 +++
 src/wm-tester/Makefile.am                       |   25 +
 src/wm-tester/Makefile.in                       |  574 ++
 src/wm-tester/focus-window.c                    |   37 +
 src/wm-tester/main.c                            |  245 +
 src/wm-tester/test-gravity.c                    |  308 +
 src/wm-tester/test-resizing.c                   |  257 +
 src/wm-tester/test-size-hints.c                 |  136 +
 315 files changed, 386687 insertions(+)