summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: ffd71bd957bf9b5dcdd436a9afa0778c4319fad1 (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
commit 276eae936334c109ffa6b2e3199f97b1885dfa62
Merge: 4a1eb4d 61d109a
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Sun Jan 20 14:00:54 2013 -0500

    Merged.

commit 4a1eb4d4d53baf0c34d1c7ecf8cce1a74a93db50
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Sun Jan 20 13:54:48 2013 -0500

    Removed unused code.

 src/capplet/mate-notification-properties.c |    2 --
 1 file changed, 2 deletions(-)

commit 193ba3d4a28b7930bf66bf51ca2e9a0ecfc61edf
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Sun Jan 20 13:53:58 2013 -0500

    Backend now supports selecting which monitor to display a notification on.

 src/daemon/daemon.c |   18 +++++++++++++++---
 src/daemon/daemon.h |    2 ++
 2 files changed, 17 insertions(+), 3 deletions(-)

commit 5618708514ac34257e9ba93af96e9ef32a4ad0c2
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Sun Jan 20 13:52:47 2013 -0500

    Added "use-active-monitor" and "monitor-number" keys to gschema.

 data/org.mate.NotificationDaemon.gschema.xml |   10 ++++++++++
 1 file changed, 10 insertions(+)

commit fdb4b281f45e012005f01a6bc430e2a3f9875c17
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Thu Jan 17 14:21:48 2013 -0500

    Can now select which monitor to display a notification on.
    
    mate-notification-properties now offers the user the option to
    to display notifications on the active monitor (previous
    default behavior) or to display them on a specific monitor.

 src/capplet/mate-notification-properties.c  |  200 ++++++++++++++++++++-
 src/capplet/mate-notification-properties.ui |  258 +++++++++++++++++----------
 2 files changed, 360 insertions(+), 98 deletions(-)

commit 61d109a6e5794cf393d1f9d5bebda10f8efce902
Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
Date:   Tue Dec 25 21:50:14 2012 -0600

    Fix engine loading portability
    
    Use GModule APIs for determining engine filenames.  Also, link with
    the -no-undefined flag, required on PE platforms.

 src/capplet/mate-notification-properties.c |    5 +++--
 src/daemon/engines.c                       |    7 ++-----
 src/themes/coco/Makefile.am                |    2 +-
 src/themes/nodoka/Makefile.am              |    2 +-
 src/themes/slider/Makefile.am              |    2 +-
 src/themes/standard/Makefile.am            |    2 +-
 6 files changed, 9 insertions(+), 11 deletions(-)

commit 2f0f21bde5e00fc0abb3379ffb9f23574e9508ad
Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
Date:   Tue Dec 25 22:14:36 2012 -0600

    Remove gettext and libtool files

 ABOUT-NLS             |  393 --
 ltmain.sh             | 9655 -------------------------------------------------
 macros/codeset.m4     |   23 -
 macros/gettext.m4     |  523 ---
 macros/glibc21.m4     |   32 -
 macros/iconv.m4       |   96 -
 macros/intltool.m4    |  216 --
 macros/isc-posix.m4   |   24 -
 macros/lcmessage.m4   |   32 -
 macros/lib-ld.m4      |   97 -
 macros/lib-link.m4    |  521 ---
 macros/lib-prefix.m4  |  148 -
 macros/libtool.m4     | 7982 ----------------------------------------
 macros/ltoptions.m4   |  384 --
 macros/ltsugar.m4     |  123 -
 macros/ltversion.m4   |   23 -
 macros/lt~obsolete.m4 |   98 -
 macros/progtest.m4    |   59 -
 18 files changed, 20429 deletions(-)

commit ef8c9fcc148c2f71440943efb1b344ce25880735
Merge: 4f219a3 ab9c099
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Dec 24 16:34:01 2012 -0800

    Merge pull request #8 from cygwinports/master
    
    Add mateconf-gsettings-data-convert file

commit ab9c0996314fbda9643e884181ca708d61bd0c67
Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
Date:   Mon Dec 24 18:04:14 2012 -0600

    Add mateconf-gsettings-data-convert file

 data/Makefile.am                      |    4 ++++
 data/mate-notification-daemon.convert |    5 +++++
 2 files changed, 9 insertions(+)

commit 4f219a36db5f32014b2d44ac5f2f77f7ab5852c8
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Oct 21 11:29:54 2012 +0200

    change default settings
    default theme is Nodoka
    default position is on top right (panel notification area is on top right too)

 data/org.mate.NotificationDaemon.gschema.xml |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 85fb7f06d06ea1647995e84cd96e9214c11a53dc
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Sep 1 20:57:43 2012 +0200

    fix typo in configure.ac

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

commit 2d7e34441f4d33dc1edb5e9871b66b4977069bae
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Aug 3 12:26:32 2012 +0200

    migrate to GSettings

 configure.ac                                 |   16 +++---
 data/Makefile.am                             |   19 ++-----
 data/mate-notification-daemon.schemas.in     |   53 ------------------
 data/org.mate.NotificationDaemon.gschema.xml |   24 +++++++++
 src/capplet/mate-notification-properties.c   |   75 ++++++--------------------
 src/daemon/daemon.c                          |   32 ++++-------
 src/daemon/daemon.h                          |   15 +++---
 src/daemon/engines.c                         |   11 ++--
 8 files changed, 72 insertions(+), 173 deletions(-)

commit 597a9064e4d2df85d53726928e576a9be53d22fb
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Tue Jul 31 20:11:25 2012 -0400

    Fixed incorrect fsf address. Closes issue #6.

 intl/bindtextdom.c                         |    2 +-
 intl/dcgettext.c                           |    2 +-
 intl/dcigettext.c                          |    2 +-
 intl/dcngettext.c                          |    2 +-
 intl/dgettext.c                            |    2 +-
 intl/dngettext.c                           |    2 +-
 intl/eval-plural.h                         |    2 +-
 intl/explodename.c                         |    2 +-
 intl/finddomain.c                          |    2 +-
 intl/gettext.c                             |    2 +-
 intl/gettextP.h                            |    2 +-
 intl/gmo.h                                 |    2 +-
 intl/hash-string.h                         |    2 +-
 intl/intl-compat.c                         |    2 +-
 intl/l10nflist.c                           |    2 +-
 intl/libgnuintl.h                          |    2 +-
 intl/loadinfo.h                            |    2 +-
 intl/loadmsgcat.c                          |    2 +-
 intl/localcharset.c                        |    2 +-
 intl/localealias.c                         |    2 +-
 intl/localename.c                          |    2 +-
 intl/ngettext.c                            |    2 +-
 intl/os2compat.c                           |    2 +-
 intl/os2compat.h                           |    2 +-
 intl/osdep.c                               |    2 +-
 intl/plural-exp.c                          |    2 +-
 intl/plural-exp.h                          |    2 +-
 intl/plural.c                              |    6 +++---
 intl/textdomain.c                          |    2 +-
 src/capplet/mate-notification-properties.c |    4 ++--
 src/daemon/daemon.c                        |    4 ++--
 src/daemon/daemon.h                        |    4 ++--
 src/daemon/engines.c                       |    4 ++--
 src/daemon/engines.h                       |    4 ++--
 src/daemon/sound.c                         |    4 ++--
 src/daemon/sound.h                         |    4 ++--
 src/daemon/stack.c                         |    4 ++--
 src/daemon/stack.h                         |    4 ++--
 src/themes/slider/theme.c                  |    4 ++--
 src/themes/standard/theme.c                |    4 ++--
 40 files changed, 53 insertions(+), 53 deletions(-)

commit 90229ab4ea11be5c7c8220f89455b702700ffa7a
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Thu Jul 5 14:29:27 2012 -0400

    Preparing for 1.4 release.

 ChangeLog              |  178 +++++++++++++++++++++++++++++++++++++++++++++---
 configure.ac           |    2 +-
 distro/ubuntu/build    |   35 ----------
 distro/ubuntu/postinst |   11 ---
 distro/ubuntu/postrm   |    8 ---
 distro/ubuntu/preinst  |    8 ---
 distro/ubuntu/prerm    |   11 ---
 7 files changed, 169 insertions(+), 84 deletions(-)

commit 306d7aca16e3ec6498414be1d289bb9e708a6259
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Jul 4 15:37:59 2012 +0200

    sync translations with transifex

 po/LINGUAS  |    9 +++
 po/af.po    |  155 ++++++++++++++++++++++++++++++++++++++++++++++++++
 po/ar.po    |  161 ++++++++++++++++++++++++++++++++++++++++++++--------
 po/ast.po   |  155 ++++++++++++++++++++++++++++++++++++++++++++++++++
 po/ca.po    |  155 ++++++++++++++++++++++++++++++++++++++++++++++++++
 po/cs.po    |  177 ++++++++++++++++++++++++++++++----------------------------
 po/da.po    |  142 ++++++++++++++++++++++++++++++----------------
 po/de.po    |   92 ++++++++++++++++--------------
 po/el.po    |  147 ++++++++++++++++++++++++++++++------------------
 po/es.po    |  177 ++++++++++++++++++++++++++++++----------------------------
 po/es_CL.po |  155 ++++++++++++++++++++++++++++++++++++++++++++++++++
 po/et.po    |  121 +++++++++++++++++++++++++++++----------
 po/eu.po    |   90 ++++++++++++++++--------------
 po/fr.po    |  169 ++++++++++++++++++++++++++++++-------------------------
 po/gl.po    |  151 +++++++++++++++++++++++++------------------------
 po/he.po    |  155 ++++++++++++++++++++++++++++++++++++++++++++++++++
 po/hu.po    |  154 +++++++++++++++++++++++++-------------------------
 po/id.po    |  155 ++++++++++++++++++++++++++++++++++++++++++++++++++
 po/it.po    |  107 +++++++++++++++++------------------
 po/ja.po    |  170 +++++++++++++++++++++++++++++--------------------------
 po/lt.po    |  152 +++++++++++++++++++++++++------------------------
 po/nb.po    |  126 ++++++++++++++++++++++++++++-------------
 po/nl.po    |   92 ++++++++++++++++--------------
 po/pa.po    |  153 +++++++++++++++++++++++++-------------------------
 po/pl.po    |  156 +++++++++++++++++++++++++--------------------------
 po/pt.po    |  155 ++++++++++++++++++++++++++++++++++++++++++++++++++
 po/pt_BR.po |  151 +++++++++++++++++++++++++------------------------
 po/ru.po    |  179 ++++++++++++++++++++++++++++++----------------------------
 po/sl.po    |  180 ++++++++++++++++++++++++++++++++---------------------------
 po/sv.po    |  168 ++++++++++++++++++++++++++++++++-----------------------
 po/tr.po    |  154 ++++++++++++++++++++++++++++++++++++++++++++++++++
 po/uk.po    |  154 ++++++++++++++++++++++++++++++++++++++++++++++++++
 po/zh_CN.po |  149 +++++++++++++++++++++++++------------------------
 33 files changed, 3308 insertions(+), 1458 deletions(-)

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

    add gnome copyrights file

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

commit 6f9d49a3a1a6981f0cc09ae30d63505585e60c76
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Jun 8 11:46:35 2012 +0200

    port to libmatewnck

 configure.ac              |    2 +-
 distro/archlinux/PKGBUILD |    2 +-
 src/daemon/daemon.c       |   29 ++++++++++++++---------------
 3 files changed, 16 insertions(+), 17 deletions(-)

commit 3695f8d4564daf9a2149e9fb956b55f265a4257b
Merge: 73f4151 941db15
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed May 16 03:40:02 2012 -0700

    Merge pull request #5 from MDykstra/master
    
    backward compatible dependency on gmodule-2.0

commit 941db158dd9b8feba94c9b2b6367ae255539ff2f
Author: Marcel Dijkstra <marcel.dykstra@gmail.com>
Date:   Wed May 16 12:39:01 2012 +0200

    only depend on gmodule-2.0 if it exists

 configure.ac |    2 ++
 1 file changed, 2 insertions(+)

commit 73f4151156db00b2a0239fe45042588ae548ef3e
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun May 13 17:39:11 2012 +0200

    make new themes names translatable

 src/capplet/mate-notification-properties.c |   10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

commit 969f937d75533119f617feecce1cfbb43cc528c8
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat May 12 16:19:29 2012 +0200

    bump version to 1.3.1

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

commit ba4a0d842f8e9c5beffc25ca62b72bf7a86c83fb
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat May 12 16:18:40 2012 +0200

    scale icon if size is greater than IMAGE_SIZE

 src/daemon/daemon.c |   50 +++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 49 insertions(+), 1 deletion(-)

commit b915b2e6dcc1ff03f8768bd8f28b877ec28ed372
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat May 12 16:18:18 2012 +0200

    fix icon in preview dialog

 src/capplet/mate-notification-properties.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b67c6422995a9459548f478aa61a4dd3ec0437c0
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed May 9 18:03:07 2012 +0200

    add coco (notify-osd like) and nodoka (from fedora) themes, start 1.3 release

 AUTHORS                          |    7 +
 configure.ac                     |    8 +-
 src/themes/Makefile.am           |    2 +-
 src/themes/coco/Makefile.am      |    9 +
 src/themes/coco/coco-theme.c     |  629 +++++++++++++++++++++++
 src/themes/nodoka/Makefile.am    |    9 +
 src/themes/nodoka/nodoka-theme.c | 1032 ++++++++++++++++++++++++++++++++++++++
 src/themes/slider/theme.c        |    2 +-
 8 files changed, 1693 insertions(+), 5 deletions(-)

commit 07a45e51f10d27b201004b661812eed107c5d831
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Feb 23 15:31:56 2012 +0100

    update translations (de, eu, nl)
    eu is a new translation

 po/LINGUAS         |    1 +
 po/Makefile.in.in~ |  217 ----------------------------------------------------
 po/de.po           |  144 +++++++++++++++++-----------------
 po/eu.po           |  147 +++++++++++++++++++++++++++++++++++
 po/nl.po           |  148 +++++++++++++++++++++++++++++------
 5 files changed, 347 insertions(+), 310 deletions(-)

commit 03d844827da69b46f7a9791c46e544954242b0ba
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Wed Feb 22 21:19:55 2012 -0500

    Preparing for 1.2 release

 AUTHORS      |   51 +++++-----
 ChangeLog    |  291 +++++++++++++++++++++++++++++++++++++++++++++++++++-------
 README       |    1 +
 autogen.sh   |    4 +-
 configure.ac |    2 +-
 5 files changed, 288 insertions(+), 61 deletions(-)

commit b203c311dc9e5edf1f62c4e3170a0f76a2b9643e
Author: Perberos <perberos@gmail.com>
Date:   Mon Jan 30 13:14:50 2012 -0300

    set patch on archlinux script

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

commit c68c4c34bfc601ad735d50e6f7482df5762ab7ce
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Tue Jan 10 14:25:04 2012 -0500

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

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

commit 7155750255a6594e816095c3c0b5fbf49cad096e
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Jan 2 16:28:04 2012 +0100

    updated it translation

 po/it.po |  127 ++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 70 insertions(+), 57 deletions(-)

commit 456dc22287e3135a2702f5759af375c5606e8715
Author: Perberos <perberos@gmail.com>
Date:   Sun Jan 1 18:46:00 2012 -0300

    GDK_DISPLAY() is deprecated

 src/daemon/stack.c |   50 ++++++++++++++------------------------------------
 1 file changed, 14 insertions(+), 36 deletions(-)

commit ec315ced4c463abe0db561867e54454a370c269c
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Jan 2 00:40:10 2012 +0100

    missing 'G', or we was using a DonkeyKong library??

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

commit 14c8b0f4b9a366ca4c4b5a5aa63a91ab2ac03f7c
Merge: f6b5b7e c8dadc4
Author: Perberos <perberos@gmail.com>
Date:   Wed Dec 28 12:45:57 2011 -0800

    Merge pull request #1 from RetroX/patch-1
    
    Shouldn't conflict with notification-daemon.

commit c8dadc48a116d4de12905704a045f24f1530ea98
Author: Alex Charron <classixretrox@gmail.com>
Date:   Wed Dec 28 15:20:37 2011 -0500

    Shouldn't conflict with notification-daemon.

 distro/archlinux/PKGBUILD |    1 -
 1 file changed, 1 deletion(-)

commit f6b5b7eb3f0214f93a8540ee85da60b8e8aef036
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Dec 10 00:53:40 2011 +0100

    updated version to 1.1.0

 AUTHORS      |    1 +
 configure.ac |    2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit a4f57728a5cd402beb0325e321981cbb1ef19307
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Dec 10 00:51:47 2011 +0100

    removed autogenerated files

 INSTALL                         |  365 -------
 Makefile.in                     |  822 --------------
 aclocal.m4                      | 2277 ---------------------------------------
 config.guess                    | 1501 --------------------------
 config.h.in                     |  116 --
 config.rpath                    |  497 ---------
 config.sub                      | 1705 -----------------------------
 data/Makefile.in                |  671 ------------
 depcomp                         |  630 -----------
 install-sh                      |  520 ---------
 intl/Makefile.in                |  337 ------
 missing                         |  376 -------
 mkinstalldirs                   |  162 ---
 po/Makefile.in.in               |  217 ----
 src/Makefile.in                 |  616 -----------
 src/capplet/Makefile.in         |  669 ------------
 src/daemon/Makefile.in          |  617 -----------
 src/themes/Makefile.in          |  616 -----------
 src/themes/slider/Makefile.in   |  604 -----------
 src/themes/standard/Makefile.in |  600 -----------
 20 files changed, 13918 deletions(-)

commit d818374ac01d031988c1252d02c329a2c8cc9a1e
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Fri Dec 2 20:18:55 2011 -0500

    Changed version to 2011.12.01

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

commit 781b0ff3f74abd6f5353b6d08763bbba93f2f21c
Author: Perberos <perberos@gmail.com>
Date:   Thu Dec 1 22:49:12 2011 -0300

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

 ABOUT-NLS                                          |  393 +
 AUTHORS                                            |   25 +
 COPYING                                            |  340 +
 ChangeLog                                          |   47 +
 INSTALL                                            |  365 +
 Makefile.am                                        |   45 +
 Makefile.in                                        |  822 ++
 NEWS                                               |  220 +
 acinclude.m4                                       |   40 +
 aclocal.m4                                         | 2277 +++++
 autogen.sh                                         |   22 +
 config.guess                                       | 1501 +++
 config.h.in                                        |  116 +
 config.rpath                                       |  497 +
 config.sub                                         | 1705 ++++
 configure.ac                                       |  280 +
 data/Makefile.am                                   |   58 +
 data/Makefile.in                                   |  671 ++
 data/icons/16x16/mate-notification-properties.png  |  Bin 0 -> 514 bytes
 data/icons/22x22/mate-notification-properties.png  |  Bin 0 -> 560 bytes
 data/icons/24x24/mate-notification-properties.png  |  Bin 0 -> 554 bytes
 data/icons/32x32/mate-notification-properties.png  |  Bin 0 -> 725 bytes
 data/icons/48x48/mate-notification-properties.png  |  Bin 0 -> 938 bytes
 .../scalable/mate-notification-properties.svg      |  122 +
 data/mate-notification-daemon.schemas.in           |   53 +
 data/org.freedesktop.mate.Notifications.service.in |    3 +
 depcomp                                            |  630 ++
 distro/archlinux/PKGBUILD                          |   43 +
 distro/archlinux/mate-notification-daemon.install  |   18 +
 distro/ubuntu/build                                |   35 +
 distro/ubuntu/postinst                             |   11 +
 distro/ubuntu/postrm                               |    8 +
 distro/ubuntu/preinst                              |    8 +
 distro/ubuntu/prerm                                |   11 +
 install-sh                                         |  520 ++
 intl/ChangeLog                                     |    4 +
 intl/Makefile.in                                   |  337 +
 intl/VERSION                                       |    1 +
 intl/bindtextdom.c                                 |  369 +
 intl/config.charset                                |  440 +
 intl/dcgettext.c                                   |   58 +
 intl/dcigettext.c                                  | 1167 +++
 intl/dcngettext.c                                  |   60 +
 intl/dgettext.c                                    |   59 +
 intl/dngettext.c                                   |   61 +
 intl/eval-plural.h                                 |  105 +
 intl/explodename.c                                 |  192 +
 intl/finddomain.c                                  |  198 +
 intl/gettext.c                                     |   64 +
 intl/gettextP.h                                    |  201 +
 intl/gmo.h                                         |  100 +
 intl/hash-string.h                                 |   59 +
 intl/intl-compat.c                                 |  166 +
 intl/l10nflist.c                                   |  400 +
 intl/libgnuintl.h                                  |  137 +
 intl/loadinfo.h                                    |  121 +
 intl/loadmsgcat.c                                  |  445 +
 intl/localcharset.c                                |  345 +
 intl/locale.alias                                  |   78 +
 intl/localealias.c                                 |  419 +
 intl/localename.c                                  |  693 ++
 intl/ngettext.c                                    |   68 +
 intl/os2compat.c                                   |  109 +
 intl/os2compat.h                                   |   46 +
 intl/osdep.c                                       |   24 +
 intl/plural-exp.c                                  |  156 +
 intl/plural-exp.h                                  |  122 +
 intl/plural.c                                      | 1322 +++
 intl/plural.y                                      |  409 +
 intl/ref-add.sin                                   |   31 +
 intl/ref-del.sin                                   |   26 +
 intl/textdomain.c                                  |  142 +
 ltmain.sh                                          | 9655 ++++++++++++++++++++
 macros/codeset.m4                                  |   23 +
 macros/gettext.m4                                  |  523 ++
 macros/glibc21.m4                                  |   32 +
 macros/iconv.m4                                    |   96 +
 macros/intltool.m4                                 |  216 +
 macros/isc-posix.m4                                |   24 +
 macros/lcmessage.m4                                |   32 +
 macros/lib-ld.m4                                   |   97 +
 macros/lib-link.m4                                 |  521 ++
 macros/lib-prefix.m4                               |  148 +
 macros/libtool.m4                                  | 7982 ++++++++++++++++
 macros/ltoptions.m4                                |  384 +
 macros/ltsugar.m4                                  |  123 +
 macros/ltversion.m4                                |   23 +
 macros/lt~obsolete.m4                              |   98 +
 macros/progtest.m4                                 |   59 +
 missing                                            |  376 +
 mkinstalldirs                                      |  162 +
 po/LINGUAS                                         |   24 +
 po/Makefile.in.in                                  |  217 +
 po/Makefile.in.in~                                 |  217 +
 po/POTFILES.in                                     |    6 +
 po/Rules-quot                                      |   42 +
 po/ar.po                                           |   42 +
 po/boldquot.sed                                    |   10 +
 po/cs.po                                           |  147 +
 po/da.po                                           |  110 +
 po/de.po                                           |  144 +
 po/el.po                                           |  114 +
 po/en@boldquot.header                              |   25 +
 po/en@quot.header                                  |   22 +
 po/es.po                                           |  146 +
 po/et.po                                           |   89 +
 po/fr.po                                           |  137 +
 po/gl.po                                           |  151 +
 po/hu.po                                           |  154 +
 po/insert-header.sin                               |   23 +
 po/it.po                                           |  141 +
 po/ja.po                                           |  140 +
 po/lt.po                                           |  150 +
 po/nb.po                                           |  104 +
 po/nl.po                                           |   43 +
 po/pa.po                                           |  153 +
 po/pl.po                                           |  156 +
 po/pt_BR.po                                        |  151 +
 po/quot.sed                                        |    6 +
 po/ru.po                                           |  148 +
 po/sl.po                                           |  141 +
 po/sv.po                                           |  126 +
 po/zh_CN.po                                        |  149 +
 src/Makefile.am                                    |    3 +
 src/Makefile.in                                    |  616 ++
 src/capplet/Makefile.am                            |   26 +
 src/capplet/Makefile.in                            |  669 ++
 src/capplet/mate-notification-properties.c         |  477 +
 .../mate-notification-properties.desktop.in        |   11 +
 src/capplet/mate-notification-properties.ui        |  261 +
 src/daemon/Makefile.am                             |   30 +
 src/daemon/Makefile.in                             |  617 ++
 src/daemon/daemon.c                                | 1650 ++++
 src/daemon/daemon.h                                |  103 +
 src/daemon/engines.c                               |  338 +
 src/daemon/engines.h                               |   60 +
 src/daemon/notificationdaemon.xml                  |   40 +
 src/daemon/sound.c                                 |   39 +
 src/daemon/sound.h                                 |   29 +
 src/daemon/stack.c                                 |  409 +
 src/daemon/stack.h                                 |   50 +
 src/themes/Makefile.am                             |    3 +
 src/themes/Makefile.in                             |  616 ++
 src/themes/slider/Makefile.am                      |   15 +
 src/themes/slider/Makefile.in                      |  604 ++
 src/themes/slider/theme.c                          |  914 ++
 src/themes/standard/Makefile.am                    |   11 +
 src/themes/standard/Makefile.in                    |  600 ++
 src/themes/standard/theme.c                        | 1049 +++
 149 files changed, 52862 insertions(+)