File: ChangeLog

package info (click to toggle)
emerald-themes 0.8.18-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 4,816 kB
  • sloc: sh: 499; makefile: 99
file content (950 lines) | stat: -rw-r--r-- 28,998 bytes parent folder | download | duplicates (2)
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
commit b01e7ed2ccc839bdc9e58c41713021f413f9fa87
Author: Alex ARNAUD <aarnaud@hypra.fr>
Date:   Sat Apr 4 13:46:49 2020 -0600

    Release version 0.8.18

 NEWS    | 6 ++++++
 VERSION | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 86f3208303316811f2222d019db88fcd1aac8265
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Sun Dec 23 03:34:12 2018 +0100

    Fix dark/ directory permissions (#8)

 themes/import.sh | 1 +
 1 file changed, 1 insertion(+)

commit aa101206079d60cd899cd401b3c90b8f47c9bcd0
Author: Scott Moreau <oreaus@gmail.com>
Date:   Sun Nov 11 10:59:42 2018 -0700

    Post-release version increment

 VERSION | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4557044f9a54236cf334bf8cb57a37565920b392
Author: Scott Moreau <oreaus@gmail.com>
Date:   Sun Nov 11 10:28:21 2018 -0700

    Release version 0.8.16

 NEWS    | 8 ++++++++
 VERSION | 2 +-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit e2d234dbdcf30e21c91ae9402f790ff0e8904a4c
Author: Alexei Sorokin <sor.alexei@meowr.ru>
Date:   Fri May 25 19:42:45 2018 +0300

    Add "white" theme to the build system

 themes/Makefile.am | 1 +
 1 file changed, 1 insertion(+)

commit 5c95db6e2b0935965340576a93415a1ce7c2d3a2
Merge: b81f5f9 d34c023
Author: Alexei Sorokin <sor.alexei@meowr.ru>
Date:   Sun Aug 12 01:50:24 2018 +0300

    Merge branch 'white' into 'master'

commit b81f5f967518a47e44bcdc2c48d4e2a8b0cfa0af
Author: Alexei Sorokin <sor.alexei@meowr.ru>
Date:   Sat May 19 18:23:48 2018 +0300

    Add COPYING.GPL3 to EXTRA_DIST

 Makefile.am | 1 +
 1 file changed, 1 insertion(+)

commit 597c9b797c68f6fb732e545f31d3129fb9eaf490
Author: Elliot Chandler <elliot@futuramerlin.com>
Date:   Sat May 19 11:23:03 2018 -0400

    Add GPLv3+ license text

 COPYING.GPL3 | 674 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 674 insertions(+)

commit d34c023e76615c0ffdb982acf730cc81040b858e
Author: AHD <AHD666@users.noreply.github.com>
Date:   Sun Jul 23 05:15:08 2017 +0200

    white with state indication

 themes/white.emerald | Bin 0 -> 27576 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

commit 3f20b30aa6d3162bb93e35d5922205bf536c206d
Author: Elliot Chandler <elliot@futuramerlin.com>
Date:   Tue May 30 20:11:30 2017 -0400

    Add Wreathe theme for Emerald (#5)

 themes/Makefile.am     |   1 +
 themes/Wreathe.emerald | Bin 0 -> 96505 bytes
 2 files changed, 1 insertion(+)

commit 7bdadfe3031c5b6b184dbdb7a0f1c46a22c438e1
Author: Scott Moreau <oreaus@gmail.com>
Date:   Wed Apr 19 13:56:13 2017 -0600

    Post-release version increment

 VERSION | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5f90fb54a89593af8d4461c6bd1bd83fef73784f
Author: Scott Moreau <oreaus@gmail.com>
Date:   Tue Apr 18 02:22:55 2017 -0600

    Release version 0.8.14

 NEWS    | 8 ++++++++
 VERSION | 2 +-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 318a68a3b5dcffe4369042243978875920798027
Author: Sergey Ukolov <zezic51@yandex.ru>
Date:   Fri Nov 4 05:03:54 2016 +0300

    Add a Graphite variation of Yosemite

 themes/Makefile.am               |   3 ++-
 themes/Yosemite_Graphite.emerald | Bin 0 -> 24774 bytes
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 75ff11a3f76aa155b41134ebef1b0944b66b93eb
Author: Sergey Ukolov <zezic51@yandex.ru>
Date:   Fri Nov 4 03:10:04 2016 +0300

    Yosemite: Fix top corners. Adapt to fixed shadows.

 themes/Yosemite.emerald | Bin 32206 -> 32152 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

commit 7ba5d9bf5372d619af0f40f977a0ac026566145e
Author: Sergey Ukolov <zezic51@yandex.ru>
Date:   Wed Oct 26 01:57:14 2016 +0300

    Add a Yosemite theme

 themes/Makefile.am      |   3 ++-
 themes/Yosemite.emerald | Bin 0 -> 32206 bytes
 2 files changed, 2 insertions(+), 1 deletion(-)

commit a8b438a197aadd4395b297c49fd5d09bfc7fb667
Author: raveit65 <chat-to-me@raveit.de>
Date:   Wed Oct 5 09:34:42 2016 +0200

    Add Changelog generation

 Makefile.am | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit 90c47191a133955dbf66e50fea1a244ec7fac952
Author: Alexei Sorokin <sor.alexei@meowr.ru>
Date:   Mon Sep 26 22:12:03 2016 +0300

    Post-release version increment

 VERSION | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b484bb43a79f4315fff622290591471e5671484b
Author: raveit65 <chat-to-me@raveit.de>
Date:   Fri May 27 15:08:41 2016 +0200

    release 0.8.12.1

 NEWS    | 6 ++++++
 VERSION | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit e6c236e3637e92aec57f08484c60b91fd1bfe401
Author: raveit65 <chat-to-me@raveit.de>
Date:   Fri May 27 15:04:44 2016 +0200

    add themes from extra package

 themes/Beryl_Clean.emerald       | Bin 0 -> 68923 bytes
 themes/Dark_Blue.emerald         | Bin 0 -> 122463 bytes
 themes/Eternal.emerald           | Bin 0 -> 46494 bytes
 themes/Fadeout.emerald           | Bin 0 -> 20804 bytes
 themes/Greenhouse_Effect.emerald | Bin 0 -> 44730 bytes
 themes/Iridescence.emerald       | Bin 0 -> 37808 bytes
 themes/JAGT.emerald              | Bin 0 -> 59516 bytes
 themes/Komar-Blue.emerald        | Bin 0 -> 25324 bytes
 themes/Mac4Lin_Aqua.emerald      | Bin 0 -> 55936 bytes
 themes/Mac4Lin_Graphite.emerald  | Bin 0 -> 61433 bytes
 themes/Makefile.am               |  15 +++++++++++++++
 themes/Metrosuave.emerald        | Bin 0 -> 176707 bytes
 themes/Ocean.emerald             | Bin 0 -> 445506 bytes
 themes/Overglossed.emerald       | Bin 0 -> 88500 bytes
 themes/Slowy.emerald             | Bin 0 -> 14329 bytes
 themes/Starwindowtheme.emerald   | Bin 0 -> 31972 bytes
 16 files changed, 15 insertions(+)

commit f07315388f98025093e7910de0d2c7e747cbbbc0
Author: raveit65 <chat-to-me@raveit.de>
Date:   Thu May 19 11:57:42 2016 +0200

    and some themes for Mate desktop

 themes/Blue_Submarine.emerald  | Bin 0 -> 241902 bytes
 themes/Green_Submarine.emerald | Bin 0 -> 723646 bytes
 themes/Makefile.am             |   3 +++
 themes/Menta.emerald           | Bin 0 -> 135322 bytes
 4 files changed, 3 insertions(+)

commit 46f212cb6cc89181306f7bb4e1a6694117476c81
Author: raveit65 <chat-to-me@raveit.de>
Date:   Wed May 18 22:01:40 2016 +0200

    add Fogo Monochrome
    
    by Michael Simms

 themes/Fogo_Monochrome.emerald | Bin 0 -> 74449 bytes
 themes/Makefile.am             |   1 +
 2 files changed, 1 insertion(+)

commit c0583dd8d9b4cc26ce428134b4fa216d74a7130c
Author: elgeneralmidi <compiz@tuxfamily.org>
Date:   Fri Apr 8 01:40:30 2016 +0200

    Add Shiki-Colors theme

 themes/Makefile.am          |   1 +
 themes/Shiki-Colors.emerald | Bin 0 -> 11593 bytes
 2 files changed, 1 insertion(+)

commit 1375e346040dfbcb085b96b195851e6190f43d00
Author: elgeneralmidi <compiz@tuxfamily.org>
Date:   Fri Apr 8 01:39:24 2016 +0200

    Add PintBluemix theme

 themes/Makefile.am         |   1 +
 themes/PintBluemix.emerald | Bin 0 -> 8189 bytes
 2 files changed, 1 insertion(+)

commit 8fc2363ff5490b983556256bd881af7d2d0d77b9
Author: elgeneralmidi <compiz@tuxfamily.org>
Date:   Fri Apr 8 01:37:51 2016 +0200

    Add Numix Tangoish theme / GPLv3+ Licensed

 themes/Makefile.am            |   1 +
 themes/Numix_Tangoish.emerald | Bin 0 -> 17980 bytes
 2 files changed, 1 insertion(+)

commit bcbdf4e71d17f2dd5e4bc4350f79cade57fa1b2b
Author: elgeneralmidi <compiz@tuxfamily.org>
Date:   Fri Apr 8 01:36:23 2016 +0200

    Add Numix theme / GPLv3+ Licensed

 themes/Makefile.am   |   1 +
 themes/Numix.emerald | Bin 0 -> 18052 bytes
 2 files changed, 1 insertion(+)

commit 3e61b825c11485422ef7ccae7807256cb4abd39e
Author: elgeneralmidi <compiz@tuxfamily.org>
Date:   Fri Apr 8 01:35:11 2016 +0200

    Add Ambiance Ubuntu theme

 themes/Ambiance_Ubuntu.emerald | Bin 0 -> 24860 bytes
 themes/Makefile.am             |   1 +
 2 files changed, 1 insertion(+)

commit fc4397dd4b22ea100cf6fb1f20c7c44c56acd742
Author: elgeneralmidi <compiz@tuxfamily.org>
Date:   Fri Apr 8 01:32:53 2016 +0200

    Add Ambiance theme

 themes/Ambiance.emerald | Bin 0 -> 20904 bytes
 themes/Makefile.am      |   1 +
 2 files changed, 1 insertion(+)

commit 1c81afe6dc0e0a93383ca0962b44db91942163a3
Author: raveit65 <chat-to-me@raveit.de>
Date:   Wed May 18 20:19:03 2016 +0200

    addd Blue Planet theme
    
    thanks to Michael Simms

 themes/Blue_Planet.emerald | Bin 0 -> 66663 bytes
 themes/Makefile.am         |   3 ++-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit a32cb12979ec439083a07f08291337cfcaf1ba0e
Author: Sorokin Alexei <sor.alexei@meowr.ru>
Date:   Tue Apr 5 23:04:54 2016 +0300

    Fix corrupted close button in Rezlooks-Graphite-1pxb

 themes/Rezlooks-Graphite-1pxb.emerald | Bin 34677 -> 17630 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

commit 41792685f1d2c044c7bad620401a972f6e923348
Author: Sorokin Alexei <sor.alexei@meowr.ru>
Date:   Tue Apr 5 22:56:20 2016 +0300

    Remove bashisms from import.sh

 themes/import.sh | 27 ++++++++++++++-------------
 1 file changed, 14 insertions(+), 13 deletions(-)

commit e107d4c3f09a968e82068699e534100254d26df4
Author: Sorokin Alexei <sor.alexei@meowr.ru>
Date:   Tue Apr 5 22:30:44 2016 +0300

    Remove the original ancient ChangeLog

 ChangeLog | 110 --------------------------------------------------------------
 1 file changed, 110 deletions(-)

commit 0df585cf3768f420022908f19e1ad02ae3ce0a33
Author: Sergey Ukolov <zezic51@yandex.ru>
Date:   Thu Mar 31 23:53:52 2016 +0300

    Add Mavericks theme

 themes/Makefile.am       |   1 +
 themes/Mavericks.emerald | Bin 0 -> 48838 bytes
 2 files changed, 1 insertion(+)

commit 52f89ff6f41abd507a3f1293fa45a6973089bbd8
Author: Sergey Ukolov <sergey.ukolov@pr-solution.ru>
Date:   Thu Mar 31 23:30:33 2016 +0300

    Add Mu theme

 themes/Makefile.am |   1 +
 themes/Mu.emerald  | Bin 0 -> 40095 bytes
 2 files changed, 1 insertion(+)

commit af8d88f40df9bc488bb5cec061836bae0706fea2
Author: Sorokin Alexei <sor.alexei@meowr.ru>
Date:   Wed Mar 2 01:26:32 2016 +0300

    Add missing files to dist and create README

 Makefile.am | 9 ++++++---
 README.md   | 3 +++
 2 files changed, 9 insertions(+), 3 deletions(-)

commit 13c6b03f5a59f65f5b8b0b13b2423e5677c9410c
Author: Sorokin Alexei <sor.alexei@meowr.ru>
Date:   Sat Feb 13 00:16:25 2016 +0300

    Release version 0.8.12

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

commit 2c61bb9f5fa439fb2d05d3ee69601e68b7c4bfdc
Author: Sorokin Alexei <sor.alexei@meowr.ru>
Date:   Thu Feb 11 18:04:47 2016 +0300

    Pre-bump version to 0.8.12

 NEWS    | 9 +++++++--
 VERSION | 2 +-
 2 files changed, 8 insertions(+), 3 deletions(-)

commit 0dfea845bea048c67f86c62d5be292a0cecb6f21
Author: Sorokin Alexei <sor.alexei@meowr.ru>
Date:   Thu Feb 11 18:02:24 2016 +0300

    Stop using mate-autogen in autogen.sh
    
    Was initially added to supress warnings no longer there.

 autogen.sh | 24 +++++++++++-------------
 1 file changed, 11 insertions(+), 13 deletions(-)

commit dcf2c596acabb57eddd0791222a8140c5e727d73
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Wed Jan 13 03:49:04 2016 +0100

    add check-news

 NEWS         | 3 +++
 configure.ac | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

commit e8c9c8ed22785db3593aa7cbb7bbb7b9e9615209
Author: Sorokin Alexei <sor.alexei@meowr.ru>
Date:   Fri Jan 8 17:04:04 2016 +0300

    Bump version for 0.8.10.1 release

 VERSION | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit acf29254245e05a1f7c17c342bc98fff07c7e61a
Author: Sorokin Alexei <sor.alexei@meowr.ru>
Date:   Fri Jan 8 17:00:29 2016 +0300

    Use mate-autogen in autogen.sh, build xz tarballs, remove dummy files

 AUTHORS      |  0
 NEWS         |  1 -
 README       |  1 -
 autogen.sh   | 21 +++++++++++++++------
 configure.ac |  2 +-
 5 files changed, 16 insertions(+), 9 deletions(-)

commit 4211335dd3edd7b87fb8a0b72fb332e0c8cbe48d
Author: Guillaume Seguin <guillaume@segu.in>
Date:   Mon Oct 15 20:28:18 2007 +0200

    * Skip distuninstallcheck to workaround make distcheck failure

 Makefile.am | 3 +++
 1 file changed, 3 insertions(+)

commit becbfa5be845a4721d8912ed55c3ff4607fe97ba
Author: Guillaume Seguin <guillaume@segu.in>
Date:   Sun Oct 21 12:55:17 2007 +0200

    * Bump version to 0.6.99

 VERSION | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d6f58fa0d898b1ba8cba5175682e7b05600a3dae
Author: Guillaume Seguin <guillaume@segu.in>
Date:   Sun Aug 12 23:06:34 2007 +0200

    * Version update

 VERSION | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit da24d8ce7011e2f53361dfb02aa2ac8b8a19f334
Author: Jigish Gohil <cyberorg@prime.cyberorg.info>
Date:   Sat Jul 28 21:42:18 2007 +0530

    opps missed the theme file

 themes/gray-neu.emerald | Bin 0 -> 36273 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

commit a0f45c442e24fcb368ce2ba471e8d89aa0c90b28
Author: Jigish Gohil <cyberorg@prime.cyberorg.info>
Date:   Sat Jul 28 21:41:25 2007 +0530

    Add grey new theme from Gavintlgold

 themes/Makefile.am | 1 +
 1 file changed, 1 insertion(+)

commit 319911d30e16a9155f92718d777a4b003c2b3420
Author: Jigish Gohil <cyberorg@prime.cyberorg.info>
Date:   Sat Jul 28 21:36:08 2007 +0530

    Add Fogo.emerald theme by Simon Newberry

 themes/Fogo.emerald | Bin 0 -> 6994 bytes
 themes/Makefile.am  |   1 +
 2 files changed, 1 insertion(+)

commit 56acd31742e96c2c7527904e3eeb8ad90c5d7e0f
Author: marex <marex@beryl-project.org>
Date:   Fri Mar 23 17:29:27 2007 +0100

    emerald-themes: Juat a small update to BlackLine

 themes/BlackLine.emerald | Bin 153978 -> 138550 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

commit f85708c5832cf0dbdb6a9e5c2b5ca195e6ef59b1
Author: marex <marex@beryl-project.org>
Date:   Fri Mar 23 16:12:30 2007 +0100

    emerald-themes: Updated BlackLine theme

 themes/BlackLine.emerald | Bin 152356 -> 153978 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

commit 64d4721a43346a0dd5ca4e5132a3c75348148d5d
Author: marex <marex@beryl-project.org>
Date:   Wed Mar 21 18:24:34 2007 +0100

    emerald-themes: Another update to BlackLine

 themes/BlackLine.emerald | Bin 153948 -> 152356 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

commit 76c2271be45365768b166eafbce7b98badf9bcf7
Author: marex <marex@beryl-project.org>
Date:   Wed Mar 21 17:37:54 2007 +0100

    emerald-themes: Updated BlackLine theme

 themes/BlackLine.emerald | Bin 153950 -> 153948 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

commit dd757610b57a2e71251cda2d098c011c49dd35dd
Author: marex <marex@beryl-project.org>
Date:   Tue Mar 20 19:42:47 2007 +0100

    emerald-themes: Added a theme that uses the new line engine ("BlackLine")

 themes/BlackLine.emerald | Bin 0 -> 153950 bytes
 themes/Makefile.am       |   1 +
 2 files changed, 1 insertion(+)

commit db25e22940a4963a55ad3ad02550407eb2d9a07e
Author: nesl247 <nesl247>
Date:   Thu Mar 15 00:02:09 2007 +0000

    Bump version to 0.3.0-svn

 VERSION | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 83f70aee8623cd7bfefd013bcc211f5cc360257c
Author: nesl247 <nesl247>
Date:   Fri Jan 26 22:06:49 2007 +0000

    Fix #991

 themes/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ea8131e8a77fd250b281b3910a2ab06d2ce9b7fa
Author: maniac <maniac>
Date:   Fri Jan 26 15:28:50 2007 +0000

    emerald-themes: replace "Cross Eyed Fish" by "Fayal" (closes #232)

 themes/{Cross-Eyed-Fish.emerald => Fayal.emerald} | Bin 38034 -> 38184 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

commit 194f5a501701cb1ec9ba401891aa386944b72a8e
Author: racarr <racarr>
Date:   Wed Jan 24 11:24:04 2007 +0000

    Add Beryl_Default to emerald-themes

 themes/Beryl_Default.emerald | Bin 0 -> 5831 bytes
 themes/Makefile.am           |   1 +
 2 files changed, 1 insertion(+)

commit 3da23a09b4b91cb80dbd84162b1a8f5602509ab9
Author: playerX <playerX>
Date:   Thu Jan 18 01:38:09 2007 +0000

    Post-release version changes.

 VERSION | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1bc4edbc99391c46083c603fae1510653c415247
Author: quinn <quinn>
Date:   Sat Jan 6 16:10:31 2007 +0000

    cheap permissions fix

 themes/import.sh | 2 ++
 1 file changed, 2 insertions(+)

commit 902af4d07a80554e9f5b50577152d2059b6d7905
Author: guillaume <guillaume>
Date:   Tue Dec 26 20:39:00 2006 +0000

    trunk: updating VERSION to 0.1.5-svn to avoid confusion

 VERSION | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7606746f9938bb73425d9b0fdd07bcf9dba55064
Author: guillaume <guillaume>
Date:   Tue Dec 26 15:16:24 2006 +0000

    trunk: updated VERSION to 0.1.5

 VERSION | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e41f9d0464cf968424dd493b694594aa2e5e70a4
Author: onestone <onestone>
Date:   Tue Dec 19 21:02:39 2006 +0000

    all: version update and build system fixes

 VERSION | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 8bc25c585363818a3cf2c6a2c352244d0f3df43f
Author: nesl247 <nesl247>
Date:   Sun Dec 10 02:11:57 2006 +0000

    Redo import.sh. It's cleaner and should always install as root:root. Basically a fix for gentoo and others who don't build as root, but install as root

 themes/import.sh | 25 ++++++++-----------------
 1 file changed, 8 insertions(+), 17 deletions(-)

commit 519d5cf940c6ffed2676bc622f3da142ae668141
Author: guillaume <guillaume>
Date:   Sun Dec 10 00:07:32 2006 +0000

    emerald-themes: add import.sh to EXTRA_DIST

 themes/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 95ed66c5162762c1a1afee4e7fbfcb7225f04366
Author: reggaemanu <reggaemanu>
Date:   Wed Nov 15 15:22:25 2006 +0000

    Include VERSION files in make dist targets, closes #896

 Makefile.am | 3 +++
 1 file changed, 3 insertions(+)

commit 468bcc60c453ff3a212dd0e77d8af99f6b896ae0
Author: amaranth <amaranth>
Date:   Sun Nov 12 15:56:38 2006 +0000

    clean up heliodor control file, make 'make debs' build heliodor, depend
    on automake 1.9 in all build systems

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

commit 1542afb1ddcb77d3bb3cf598ed1542218bb72302
Author: reggaemanu <reggaemanu>
Date:   Thu Nov 9 20:58:31 2006 +0000

    emerald-themes:
    - remove useless backup files in some themes to avoid lintian warnings
    - remove useless theme (why in the world this file is there? ^^)
    
    emerald-themes distro-specific-build-files:
    - remove useless autotool build-dep
    - make it non arch specific like it should be, avoid a lintian warning
    - make it don't install import.sh to avoid latest lintian warning

 blue_satin.emerald                       | Bin 11800 -> 0 bytes
 themes/Makefile.am                       |   1 -
 themes/Minimal.emerald                   | Bin 27811 -> 27230 bytes
 themes/Rezlooks-Candy-1pxb.emerald       | Bin 23196 -> 22753 bytes
 themes/Rezlooks-Candy.emerald            | Bin 23180 -> 22749 bytes
 themes/Rezlooks-Graphite-1pxb.emerald    | Bin 18059 -> 34677 bytes
 themes/Rezlooks-Graphite.emerald         | Bin 18039 -> 17651 bytes
 themes/Rezlooks-PastelGreen-1pxb.emerald | Bin 27269 -> 26821 bytes
 themes/Rezlooks-PastelGreen.emerald      | Bin 27254 -> 26820 bytes
 themes/Scaled_Black_Mod.emerald          | Bin 22938 -> 22272 bytes
 10 files changed, 1 deletion(-)

commit 139f308b29c0cdd85b429bfdfdabe0fc7d70fb37
Author: ixce <ixce>
Date:   Tue Nov 7 23:53:10 2006 +0000

    * Bump trunk version to 0.1.3

 VERSION | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e6273c5e18ce7c8dd29266c576d20d2e497035eb
Author: reggaemanu <reggaemanu>
Date:   Tue Nov 7 21:57:09 2006 +0000

    all: revert 1059 + cleanup

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

commit cc193715f07755ca6f73266a4aab38b6e920ee07
Author: amaranth <amaranth>
Date:   Tue Nov 7 00:49:01 2006 +0000

    require automake 1.9 in everything

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

commit 1b74ba98b811d8a92c039bef48baf217130e3ea2
Author: reggaemanu <reggaemanu>
Date:   Tue Oct 31 23:52:14 2006 +0000

    Fixes for make dist-check:
    - fix errors with version
    - fix makefile for all pixmap dirs
    - add missing headers
    - add all missing po/ChangeLog files (still have to be populated)
    - remove default install in /usr
    - some others little fixes
    
    (still two problems : one with mesa, and one with 'make uninstall' for emerald-themes)

 configure.ac       | 14 +++++++++-----
 themes/Makefile.am | 48 +++++++++++++++++++++++++++++++++++++++++++++---
 2 files changed, 54 insertions(+), 8 deletions(-)

commit 070e7943ccac6cbceae254dc512ac8f591642728
Author: quinn <quinn>
Date:   Tue Oct 24 10:54:29 2006 +0000

    move spec files over to distro-specific-build-files as well

 emerald-themes.spec | 59 -----------------------------------------------------
 1 file changed, 59 deletions(-)

commit 620ab143b410e4325d7e0d72a100c0ea77a4b7ed
Author: quinn <quinn>
Date:   Tue Oct 24 10:52:57 2006 +0000

    get started moving debian/'s over

 debian/changelog | 16 ---------
 debian/control   | 13 --------
 debian/rules     | 99 --------------------------------------------------------
 3 files changed, 128 deletions(-)

commit 9c043503814de2c8ff1cade75b9fbd6a800903ef
Author: cyberorg <cyberorg>
Date:   Tue Oct 24 10:40:27 2006 +0000

    theme repo: blue satin

 blue_satin.emerald | Bin 0 -> 11800 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

commit 85c31d18932c499d2ed2d7bc52f507e7f9e1e6f1
Author: test-tools <test-tools>
Date:   Mon Oct 23 07:55:07 2006 +0000

    Makefile.am's: Changed first line according to conventions, see info automake

 Makefile.am        | 1 +
 themes/Makefile.am | 1 +
 2 files changed, 2 insertions(+)

commit 2d1a599bd4cf7996d8e8c4b67c052bcdd4c206a2
Author: spstarr <spstarr>
Date:   Mon Oct 23 06:48:23 2006 +0000

    UNIX Convention do not default to /usr

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

commit 01f3a4b10a15878104adfb1114438533f468ce0c
Author: reggaemanu <reggaemanu>
Date:   Sat Oct 21 17:15:41 2006 +0000

    - cleaning up all debian/rules files
    - remove a forgotten old .cvsignore file
    - use compat 4 instead of 5 for beryl-dbus

 debian/rules | 99 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 99 insertions(+)

commit 4e61c87889eb16f81eeda6f6a1823e0be1c3eefe
Author: reggaemanu <reggaemanu>
Date:   Sat Oct 21 03:35:25 2006 +0000

    trunk:
    Update debian files for 0.1.1 release, get rid of almost every lintian error (except strip errors since it is a dev release), still some warnings, have to be fix by devs

 debian/changelog |  4 ++--
 debian/control   | 13 +++++++++++++
 2 files changed, 15 insertions(+), 2 deletions(-)

commit ed3831e42bb32f475f4f112d131c7bea263f408b
Author: quinn <quinn>
Date:   Fri Oct 20 14:41:24 2006 +0000

    version 0.1.1->0.1.2

 VERSION | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6e6583c8e8476473539cc013ffc6d59f4c31c27e
Author: ixce <ixce>
Date:   Thu Oct 19 21:54:10 2006 +0000

    * Add Mandriva specs from Plouf_

 emerald-themes.spec | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 59 insertions(+)

commit a2e42ac075863fff187d5969765a3860f5bd8074
Author: ixce <ixce>
Date:   Tue Oct 17 21:44:22 2006 +0000

    * Prepare 0.1.1 release

 debian/changelog | 6 ++++++
 1 file changed, 6 insertions(+)

commit baf43bcc1494c217898d7c9a2d65976f41ffad29
Author: test-tools <test-tools>
Date:   Tue Oct 17 10:01:04 2006 +0000

    configure: Installation now defaults to /usr

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

commit 462731b437e56fc1975f0621d4c08bf61f386949
Author: ixce <ixce>
Date:   Sun Oct 15 12:03:15 2006 +0000

    * Update SlateHorn themes & default theme

 themes/SlateHorn_Blue.emerald   | Bin 35794 -> 55455 bytes
 themes/SlateHorn_Green.emerald  | Bin 35789 -> 55385 bytes
 themes/SlateHorn_Red.emerald    | Bin 35658 -> 55264 bytes
 themes/SlateHorn_Yellow.emerald | Bin 35680 -> 55274 bytes
 4 files changed, 0 insertions(+), 0 deletions(-)

commit 0f7504fea6bddb4a194ab6bf0244fa398507b341
Author: ixce <ixce>
Date:   Sat Oct 14 23:30:25 2006 +0000

    * Fix emerald-themes Makefile

 themes/Makefile.am | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

commit 7804971de7c7d49df5ef56c7063e2f6728888f76
Author: ixce <ixce>
Date:   Sat Oct 14 15:28:17 2006 +0000

    * trunk/Makefile change, reimported emerald-themes

 themes/Adonis.emerald                    | Bin 0 -> 48047 bytes
 themes/Adonis_Mod.emerald                | Bin 0 -> 52709 bytes
 themes/Blue_Satin.emerald                | Bin 0 -> 11556 bytes
 themes/ButtonLess.emerald                | Bin 0 -> 13723 bytes
 themes/Canopy.emerald                    | Bin 0 -> 11340 bytes
 themes/Compiz-Gilouche.emerald           | Bin 0 -> 36691 bytes
 themes/Cross-Eyed-Fish.emerald           | Bin 0 -> 38034 bytes
 themes/Crystal-ICE.emerald               | Bin 0 -> 44113 bytes
 themes/LimeRefresh.emerald               | Bin 0 -> 75076 bytes
 themes/Makefile.am                       |   1 +
 themes/Minimal.emerald                   | Bin 0 -> 27811 bytes
 themes/Mirage.emerald                    | Bin 0 -> 44213 bytes
 themes/Orangeglass.emerald               | Bin 0 -> 27556 bytes
 themes/Orangeglow.emerald                | Bin 0 -> 10052 bytes
 themes/Paper.emerald                     | Bin 0 -> 29561 bytes
 themes/Pinx.emerald                      | Bin 0 -> 11639 bytes
 themes/PlatinUm.emerald                  | Bin 0 -> 20194 bytes
 themes/Red-Alice.emerald                 | Bin 0 -> 75709 bytes
 themes/Rezlooks-Candy-1pxb.emerald       | Bin 0 -> 23196 bytes
 themes/Rezlooks-Candy.emerald            | Bin 0 -> 23180 bytes
 themes/Rezlooks-Graphite-1pxb.emerald    | Bin 0 -> 18059 bytes
 themes/Rezlooks-Graphite.emerald         | Bin 0 -> 18039 bytes
 themes/Rezlooks-PastelGreen-1pxb.emerald | Bin 0 -> 27269 bytes
 themes/Rezlooks-PastelGreen.emerald      | Bin 0 -> 27254 bytes
 themes/Scaled_Black_Mod.emerald          | Bin 0 -> 22938 bytes
 themes/Sky.emerald                       | Bin 0 -> 11436 bytes
 themes/SlateHorn_Blue.emerald            | Bin 0 -> 35794 bytes
 themes/SlateHorn_Green.emerald           | Bin 0 -> 35789 bytes
 themes/SlateHorn_Red.emerald             | Bin 0 -> 35658 bytes
 themes/SlateHorn_Yellow.emerald          | Bin 0 -> 35680 bytes
 themes/SolidSlateModified.emerald        | Bin 0 -> 29586 bytes
 themes/TiSkin_Classic.emerald            | Bin 0 -> 20473 bytes
 themes/VRunner-Quicksilver.emerald       | Bin 0 -> 21954 bytes
 themes/Wombat_Black.emerald              | Bin 0 -> 38731 bytes
 themes/Wombat_Gray.emerald               | Bin 0 -> 44307 bytes
 themes/euh.emerald                       | Bin 0 -> 23645 bytes
 themes/frame.emerald                     | Bin 0 -> 38567 bytes
 themes/funky.emerald                     | Bin 0 -> 19449 bytes
 themes/human-ubuntulooks.emerald         | Bin 0 -> 24758 bytes
 themes/import.sh                         |  21 +++++++++++++++++++++
 themes/orangelook-colonel.emerald        | Bin 0 -> 20713 bytes
 themes/orangelook.emerald                | Bin 0 -> 29428 bytes
 42 files changed, 22 insertions(+)

commit faeca9b63c0292f2d854c350366520ebb08a546e
Author: ixce <ixce>
Date:   Sat Oct 14 15:23:07 2006 +0000

    * Cleaning emerald-themes

commit e8d03d8815e5d272f0a9a654196b0612be7f5b9b
Author: reggaemanu <reggaemanu>
Date:   Wed Oct 11 06:01:20 2006 +0000

    Update debian/changelog files

 debian/changelog | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit b1ee80a0184669c2a69f5f775b14d942fe37ff91
Author: quinn <quinn>
Date:   Sat Sep 30 11:58:49 2006 +0000

    major overhaul of keybindings system
    bump VERSION to 0.1.1
    bump ABI VERSION to 4

 VERSION | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e30cf4bd65fa6dc47818fd7e65b9dd3a9beddc75
Author: quinn <quinn>
Date:   Thu Sep 28 06:12:25 2006 +0000

    looks like I forgot to com this?

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

commit 00091decf827efa839ceff74830bfd3f6ae1cc2d
Author: quinn <quinn>
Date:   Wed Sep 27 23:49:42 2006 +0000

    update configure.ac's for VERSION
    add STATUS
    add VERSION
    update makeall

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

commit a63fdc75a01d25fddc4cfc14e01d375822ea9d2b
Author: quinn <quinn>
Date:   Wed Sep 27 23:32:03 2006 +0000

    remove trunks

commit 40da35733cb2ee4ae6f95758354a17d69ad43f6b
Author: quinn <quinn>
Date:   Wed Sep 27 23:29:00 2006 +0000

    emerald-themes...

 AUTHORS      |   0
 COPYING      | 340 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 ChangeLog    | 110 +++++++++++++++++++
 INSTALL      | 236 +++++++++++++++++++++++++++++++++++++++++
 Makefile.am  |   1 +
 NEWS         |   1 +
 README       |   1 +
 autogen.sh   |  14 +++
 build-stamp  |   0
 configure.ac |  18 ++++
 10 files changed, 721 insertions(+)

commit fdd1791c1c0fc6444e2549e6eff0f22248c56bc0
Author: quinn <quinn>
Date:   Wed Sep 27 23:14:03 2006 +0000

    getting closer