-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
2456 lines (1972 loc) · 126 KB
/
ChangeLog
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
changeset: 599:dca7db0ccda1
parent: 586:e718e7052f98
parent: 598:edcfd2d0f22d
user: Joseph Wright <[email protected]>
date: Thu Apr 04 12:31:05 2013 +0100
summary: Merge changes
changeset: 598:edcfd2d0f22d
user: Joseph Wright <[email protected]>
date: Sun Mar 31 22:23:17 2013 +0100
summary: A missing '%'
changeset: 597:ff5220d61ede
user: Joseph Wright <[email protected]>
date: Sat Mar 30 15:15:49 2013 +0000
summary: Back to using sansmathaccent (fixes #213)
changeset: 596:de9f4ac828a9
user: Joseph Wright <[email protected]>
date: Fri Mar 22 19:32:47 2013 +0000
summary: Move font check to macro (see issue #213)
changeset: 595:47431932db0d
user: Joseph Wright <[email protected]>
date: Sun Mar 10 09:24:31 2013 +0000
summary: Disable keyval errors for all options (see issue #236)
changeset: 594:42d62378899e
user: Joseph Wright <[email protected]>
date: Thu Mar 07 19:10:06 2013 +0000
summary: Correct subsubsection insertion (fixes #237)
changeset: 593:7e0e9b5068a3
user: Joseph Wright <[email protected]>
date: Thu Mar 07 13:40:53 2013 +0000
summary: Allow for xkeyval keys processing (fixes #236)
changeset: 592:f179744ff1e3
user: Joseph Wright <[email protected]>
date: Sat Feb 02 09:20:06 2013 +0000
summary: Correct font use in example blocks (fixes #234)
changeset: 591:fe5a97b210b0
user: Joseph Wright <[email protected]>
date: Thu Jan 31 22:07:12 2013 +0000
summary: Remove some "the the" errors (fixes #233)
changeset: 590:4646b744941d
user: Joseph Wright <[email protected]>
date: Mon Jan 28 22:02:48 2013 +0000
summary: Remove errant "p" (fixes #232)
changeset: 589:6d57fd292597
user: Joseph Wright <[email protected]>
date: Fri Jan 04 20:02:50 2013 +0000
summary: Added tag version-3-26 for changeset e81e0c94bcc6
changeset: 588:e81e0c94bcc6
tag: version-3-26
user: Joseph Wright <[email protected]>
date: Fri Jan 04 20:02:32 2013 +0000
summary: Slight tweak to version string
changeset: 587:9a97a4eee358
parent: 585:54309ceef997
user: Joseph Wright <[email protected]>
date: Fri Jan 04 20:01:07 2013 +0000
summary: Step version
changeset: 586:e718e7052f98
user: Joseph Wright <[email protected]>
date: Thu Apr 04 12:28:22 2013 +0100
summary: New aspect ratio 1.41:1 as requested by Peter Flynn
changeset: 585:54309ceef997
user: Joseph Wright <[email protected]>
date: Fri Jan 04 11:42:18 2013 +0000
summary: Missing set of braces (fixes issue #230)
changeset: 584:9363ef1d9575
user: jspitzm
date: Mon Dec 31 16:41:47 2012 +0100
summary: remove all traces of LyX
changeset: 583:6b0f39bcb0d1
parent: 582:d41c3eb3ed89
parent: 580:d567f8edc015
user: jspitzm
date: Mon Dec 31 16:05:13 2012 +0100
summary: Merge with main repo
changeset: 582:d41c3eb3ed89
parent: 524:cc6557182d97
parent: 581:314424d14091
user: Juergen Spitzmueller <[email protected]>
date: Sun Apr 15 17:11:30 2012 +0200
summary: try to merge heads
changeset: 581:314424d14091
parent: 523:271494ece922
user: Juergen Spitzmueller <[email protected]>
date: Sun Apr 15 16:40:49 2012 +0200
summary: Restore headers which were accidentally changed at commit eb80bc2d0e53
changeset: 580:d567f8edc015
user: Joseph Wright <[email protected]>
date: Wed Dec 26 22:29:51 2012 +0000
summary: Added tag version-3-25 for changeset 8b90150cac88
changeset: 579:8b90150cac88
tag: version-3-25
user: Joseph Wright <[email protected]>
date: Wed Dec 26 22:12:18 2012 +0000
summary: Step version
changeset: 578:2d772c6607af
user: Joseph Wright <[email protected]>
date: Wed Dec 26 22:11:25 2012 +0000
summary: Update ChangeLog
changeset: 577:22f1e50e06a1
user: Joseph Wright <[email protected]>
date: Wed Dec 26 21:47:53 2012 +0000
summary: Fix \iftranslationdefined test (fixes #84)
changeset: 576:1443917db2cf
user: Joseph Wright <[email protected]>
date: Wed Dec 26 20:56:22 2012 +0000
summary: Add \par at end of frame content (fixes #227)
changeset: 575:1686da3db3c9
user: Nicolas Dudebout <[email protected]>
date: Wed Dec 19 07:35:18 2012 -0500
summary: Enables customization of the note page look.
changeset: 574:3248da81d579
user: Joseph Wright <[email protected]>
date: Sun Nov 18 20:47:02 2012 +0000
summary: Use \leaders to suppress extraneous \write (fixes issue #226)
changeset: 573:f79e05bd521a
user: Joseph Wright <[email protected]>
date: Fri Nov 16 07:01:33 2012 +0000
summary: Sort out permission on new file
changeset: 572:b4a0a32005a5
user: Joseph Wright <[email protected]>
date: Tue Nov 13 20:40:54 2012 +0000
summary: Added tag version-3-24 for changeset cb16a617839f
changeset: 571:cb16a617839f
tag: version-3-24
user: Joseph Wright <[email protected]>
date: Tue Nov 13 20:38:40 2012 +0000
summary: Step version
changeset: 570:3823c06b6d2c
user: Joseph Wright <[email protected]>
date: Tue Nov 13 20:38:01 2012 +0000
summary: Update ChangeLog
changeset: 569:ddfba79dac19
user: Joseph Wright <[email protected]>
date: Tue Nov 13 20:36:32 2012 +0000
summary: Add a safety-\relax between overlay spec and content of \alert, etc.
changeset: 568:e1339c0f83a7
user: Joseph Wright <[email protected]>
date: Sun Nov 11 22:30:24 2012 +0000
summary: Add example for incremental overylays (fixes issue #137)
changeset: 567:0056eef6f17f
user: Joseph Wright <[email protected]>
date: Sun Nov 11 21:00:02 2012 +0000
summary: Extend \includeonlylecture to acept a comma-list (fixes issue #37)
changeset: 566:f4ccf0a285e3
user: Joseph Wright <[email protected]>
date: Sun Nov 11 20:35:24 2012 +0000
summary: Document that overlay commands are fragile (fixes issue #222)
changeset: 565:c1fc5075f54a
user: Joseph Wright <[email protected]>
date: Sun Nov 11 20:21:39 2012 +0000
summary: Add monarca color teme (fixes issue #223)
changeset: 564:6afbc49b1109
user: Joseph Wright <[email protected]>
date: Sun Nov 11 20:09:38 2012 +0000
summary: Handle item labels in action situations (fixes issue #224)
changeset: 563:34641e5d32e8
user: Joseph Wright <[email protected]>
date: Mon Nov 05 22:13:57 2012 +0000
summary: Update ChangeLog
changeset: 562:097671e65ade
user: Joseph Wright <[email protected]>
date: Sun Oct 28 15:23:56 2012 +0000
summary: Added tag version-3-23 for changeset c011175e662f
changeset: 561:c011175e662f
tag: version-3-23
user: Joseph Wright <[email protected]>
date: Sun Oct 28 15:23:45 2012 +0000
summary: Step version
changeset: 560:51a8c72084af
user: Joseph Wright <[email protected]>
date: Tue Oct 16 21:17:59 2012 +0100
summary: Increase headline spacing (fixes issue #221)
changeset: 559:24853e6b98cf
user: Joseph Wright <[email protected]>
date: Mon Oct 15 20:48:15 2012 +0100
summary: Allow amssymb to be skipped (fixes issue #219)
changeset: 558:8400aa840c30
user: Joseph Wright <[email protected]>
date: Tue Oct 02 07:17:10 2012 +0100
summary: Increase depth of header space in infolines theme (fixes issue #173)
changeset: 557:5ed0f4010e8a
user: Joseph Wright <[email protected]>
date: Tue Oct 02 07:08:21 2012 +0100
summary: Show subsections for current section in TOC (fixes issue #220)
changeset: 556:3048019c8248
user: Joseph Wright <[email protected]>
date: Wed Sep 19 20:59:23 2012 +0100
summary: Added tag version-3-22 for changeset 9cdb60d8ebed
changeset: 555:9cdb60d8ebed
tag: version-3-22
user: Joseph Wright <[email protected]>
date: Wed Sep 19 20:56:07 2012 +0100
summary: Step version
changeset: 554:733629cd0c6c
user: Joseph Wright <[email protected]>
date: Wed Sep 19 20:55:31 2012 +0100
summary: For the moment, don't load sansmathaccent automatically
changeset: 553:69886c9088ce
user: Joseph Wright <[email protected]>
date: Wed Sep 19 18:53:32 2012 +0100
summary: Typo in manual
changeset: 552:a0b55199b226
user: Joseph Wright <[email protected]>
date: Tue Sep 18 21:19:03 2012 +0100
summary: Update theme Makefile (fixes issue #217)
changeset: 551:dcd846607320
user: Joseph Wright <[email protected]>
date: Thu Sep 13 21:41:01 2012 +0100
summary: Restore frame width for footnote box (fixes issue #216)
changeset: 550:208d2af791ba
user: Rafael Luque <[email protected]>
date: Wed Sep 12 17:53:35 2012 +0200
summary: Added Spanish dictionaries.
changeset: 549:c77c33993a9c
user: Joseph Wright <[email protected]>
date: Fri Aug 31 08:49:51 2012 +0100
summary: Added tag version-3-21 for changeset efcce0278bdb
changeset: 548:efcce0278bdb
tag: version-3-21
user: Joseph Wright <[email protected]>
date: Fri Aug 31 08:46:27 2012 +0100
summary: Step version
changeset: 547:dfdb135076b3
user: Joseph Wright <[email protected]>
date: Thu Aug 30 17:03:43 2012 +0100
summary: Detect blank line read as \par when first line of verbatim frame
changeset: 546:73834bc85e0c
user: Joseph Wright <[email protected]>
date: Wed Aug 29 20:05:49 2012 +0100
summary: Load accent-kerned CMSS directly (fixes issue #213)
changeset: 545:97e5b36b376b
user: Joseph Wright <[email protected]>
date: Sun Aug 12 17:59:13 2012 +0100
summary: Missing "show" in docs (fixes issue #211)
changeset: 544:019ce036aea7
user: Joseph Wright <[email protected]>
date: Mon Jul 02 09:26:41 2012 +0100
summary: Use a special internal marker for unknown translations (fixes issue #210)
changeset: 543:bea5adcbd220
user: Joseph Wright <[email protected]>
date: Fri Jun 01 21:16:48 2012 +0100
summary: Update links for bug reports, etc.
changeset: 542:d9fe040e2f0c
user: Joseph Wright <[email protected]>
date: Fri Jun 01 08:29:16 2012 +0100
summary: Added tag version-3-20 for changeset 352157baec3a
changeset: 541:352157baec3a
tag: version-3-20
user: Joseph Wright <[email protected]>
date: Fri Jun 01 08:22:53 2012 +0100
summary: Step version
changeset: 540:5fc3b3dbfeba
user: Joseph Wright <[email protected]>
date: Thu May 31 13:09:20 2012 +0100
summary: Restore LaTeX \frame defintion inside frames in article mode
changeset: 539:22ff49def670
user: Joseph Wright <[email protected]>
date: Wed May 30 22:50:05 2012 +0100
summary: Save/restore mode with sections when gobbling (fixes issue #199)
changeset: 538:cbdb60c45607
user: Joseph Wright <[email protected]>
date: Wed May 30 22:08:49 2012 +0100
summary: Use a working test for short titles (fixes issue #195)
changeset: 537:bf7862388e78
user: Joseph Wright <[email protected]>
date: Wed May 30 21:34:48 2012 +0100
summary: Add Nynorsk patch (fixes issue #194)
changeset: 536:5ff5e8ed7c0e
user: Joseph Wright <[email protected]>
date: Fri May 25 10:30:46 2012 +0100
summary: Further updates to biblatex colour code to avoid extra spaces in some cases
changeset: 535:2583c6a82de3
user: Joseph Wright <[email protected]>
date: Sun May 13 14:54:30 2012 +0100
summary: Added tag version-3-19 for changeset dbbb17cd1fba
changeset: 534:dbbb17cd1fba
tag: version-3-19
user: Joseph Wright <[email protected]>
date: Sun May 13 14:54:24 2012 +0100
summary: Step version
changeset: 533:25b40c337383
parent: 531:3abe762d3a12
parent: 532:56972908a390
user: Joseph Wright <[email protected]>
date: Sun May 13 14:51:01 2012 +0100
summary: Back out use of real transparency of shadows
changeset: 532:56972908a390
parent: 529:26d0d93c02e9
user: Joseph Wright <[email protected]>
date: Sun May 13 14:45:08 2012 +0100
summary: Backout changeset 26d0d93c02e90c677309ade4feeeaf69c8bcc476
changeset: 531:3abe762d3a12
user: Joseph Wright <[email protected]>
date: Thu May 10 16:32:14 2012 +0100
summary: Added tag version-3-18 for changeset b3cd3cd02c66
changeset: 530:b3cd3cd02c66
tag: version-3-18
user: Joseph Wright <[email protected]>
date: Thu May 10 16:28:47 2012 +0100
summary: Step version
changeset: 529:26d0d93c02e9
user: Joseph Wright <[email protected]>
date: Thu May 10 16:27:30 2012 +0100
summary: Use real transparency for box shadows (fixes issue #161)
changeset: 528:a0b4f9f91ee9
user: Joseph Wright <[email protected]>
date: Thu May 10 16:09:27 2012 +0100
summary: Load sansmathaccent package if available (fixes issue #97)
changeset: 527:d8e49ee79bcf
user: Joseph Wright <[email protected]>
date: Wed May 02 14:45:56 2012 +0100
summary: Ensure movie autostart works with pdfTeX (fixes issue #188)
changeset: 526:67c48b3b652d
user: Joseph Wright <[email protected]>
date: Tue May 01 08:25:30 2012 +0100
summary: "online" is better than "internet"
changeset: 525:158c924f2f2d
user: Joseph Wright <[email protected]>
date: Tue May 01 07:17:12 2012 +0100
summary: Add 'internet' bibliography template (fixes issue #190)
changeset: 524:cc6557182d97
user: Vedran Miletić <[email protected]>
date: Sun Apr 15 16:37:19 2012 +0200
summary: Remove manual RCS info, it's meant to be maintained by hg kwexpand.
changeset: 523:271494ece922
user: Joseph Wright <[email protected]>
date: Sun Apr 15 14:07:04 2012 +0100
summary: Added tag version-3-17 for changeset ec47c34b914b
changeset: 522:ec47c34b914b
tag: version-3-17
user: Joseph Wright <[email protected]>
date: Sun Apr 15 14:03:56 2012 +0100
summary: Step version
changeset: 521:eb80bc2d0e53
user: Juergen Spitzmueller <[email protected]>
date: Sun Apr 15 13:03:09 2012 +0200
summary: Fix for issue #180: Add an option (to beamerarticle only) to disable auto-loeading of amssymb package.
changeset: 520:42a0f21a412d
user: Joseph Wright <[email protected]>
date: Tue Apr 03 06:51:09 2012 +0100
summary: Draw 'real' content for empty linkes with XeTeX (fixes issue #136)
changeset: 519:45744d9ae88b
user: Joseph Wright <[email protected]>
date: Tue Apr 03 06:30:29 2012 +0100
summary: Check for star argument to \ref fixes issue #186)
changeset: 518:e6a26ac54db6
user: Joseph Wright <[email protected]>
date: Sun Apr 01 10:39:38 2012 +0100
summary: Remove spurious "?" (fixes issue #185)
changeset: 517:aab6be3b9748
user: Joseph Wright <[email protected]>
date: Thu Mar 29 22:31:44 2012 +0100
summary: Added tag version-3-16 for changeset d945f8a06d90
changeset: 516:d945f8a06d90
tag: version-3-16
user: Joseph Wright <[email protected]>
date: Thu Mar 29 22:27:46 2012 +0100
summary: Step version
changeset: 515:d2ec5e193e97
user: Joseph Wright <[email protected]>
date: Thu Mar 29 22:27:08 2012 +0100
summary: Some files missing from CTAN build (fixes issue #184)
changeset: 514:38dfbd395d7c
user: Joseph Wright <[email protected]>
date: Sun Mar 25 14:15:29 2012 +0100
summary: Typos/old information (fixes issue #182)
changeset: 513:e172a8ead951
user: Joseph Wright <[email protected]>
date: Tue Mar 13 08:04:20 2012 +0000
summary: Add a template for caption label separator (fixes issue #178)
changeset: 512:96ee3b332f84
parent: 510:45882a117777
parent: 511:c7c9e294081d
user: Joseph Wright <[email protected]>
date: Sun Mar 11 08:21:04 2012 +0000
summary: Merge in better patch fr biblatex support
changeset: 511:c7c9e294081d
parent: 501:0db9e813368d
user: Alan Munn <[email protected]>
date: Sat Mar 10 21:26:52 2012 -0500
summary: Added corrections to bibliography item handling based on discussion here: http://tex.stackexchange.com/q/47540/2693. Code provided by Audrey.
changeset: 510:45882a117777
user: Joseph Wright <[email protected]>
date: Sat Mar 10 17:52:33 2012 +0000
summary: Added tag version-3-15 for changeset 5734227eeb21
changeset: 509:5734227eeb21
tag: version-3-15
user: Joseph Wright <[email protected]>
date: Sat Mar 10 17:52:18 2012 +0000
summary: Step version
changeset: 508:bd58fb83d145
user: Joseph Wright <[email protected]>
date: Sat Mar 10 17:47:59 2012 +0000
summary: Unneeded punctuation removed when working with biblatex
changeset: 507:0064b7fe9b39
user: Joseph Wright <[email protected]>
date: Sat Mar 10 08:26:10 2012 +0000
summary: *nix permission issues
changeset: 506:e20dc5d090df
user: Joseph Wright <[email protected]>
date: Thu Mar 08 08:34:09 2012 +0000
summary: Correct for short section titles with long nav. symbol lists (fixes issue #80)
changeset: 505:9f094699ce15
user: Joseph Wright <[email protected]>
date: Wed Mar 07 21:32:27 2012 +0000
summary: Don't hard-code width of footnotes (fixes issue #95)
changeset: 504:26436727c287
user: Joseph Wright <[email protected]>
date: Wed Mar 07 20:13:15 2012 +0000
summary: Added tag version-3-14 for changeset 2c18709f48d0
changeset: 503:2c18709f48d0
tag: version-3-14
user: Joseph Wright <[email protected]>
date: Wed Mar 07 20:13:09 2012 +0000
summary: Step version
changeset: 502:994f02b27018
user: Joseph Wright <[email protected]>
date: Wed Mar 07 20:12:59 2012 +0000
summary: Added tag version-3-14 for changeset 0db9e813368d
changeset: 501:0db9e813368d
user: Alan Munn <[email protected]>
date: Wed Mar 07 14:57:56 2012 -0500
summary: Added documentation for spruce colortheme. Removed 'the' from MIT (English fixup)
changeset: 500:16d5b008f009
user: Alan Munn <[email protected]>
date: Wed Mar 07 14:48:38 2012 -0500
summary: Added documentation of the EastLansing theme. Removed 'the' from MIT. (English fixup)
changeset: 499:01feb171607c
user: Alan Munn <[email protected]>
date: Wed Mar 07 14:47:36 2012 -0500
summary: Added EastLansing theme and spruce colortheme to the makefile.
changeset: 498:adfc58636b1f
user: Alan Munn <[email protected]>
date: Wed Mar 07 13:35:25 2012 -0500
summary: Added one new colour theme and one new main theme, based on Michigan State University colours, but generic enough for general use.
changeset: 497:138681b92320
user: Joseph Wright <[email protected]>
date: Tue Feb 28 20:40:40 2012 +0000
summary: Document subsubsectionstyle (fixes issue #51)
changeset: 496:2ff5461be705
user: Joseph Wright <[email protected]>
date: Fri Feb 24 19:44:11 2012 +0000
summary: Allow for starred form of \includegraphics (fixes issue #152)
changeset: 495:546f0403b441
user: Joseph Wright <[email protected]>
date: Fri Feb 24 19:35:43 2012 +0000
summary: Add examples to Makefile:
changeset: 494:71c3e73b2383
user: Joseph Wright <[email protected]>
date: Fri Feb 24 19:27:16 2012 +0000
summary: Remove setting of paper size
changeset: 493:406bcaf3a3c7
user: Joseph Wright <[email protected]>
date: Thu Feb 23 13:55:34 2012 +0000
summary: Do not use \bfseries in math mode! (fixes issue #101)
changeset: 492:06d121c392f9
user: Joseph Wright <[email protected]>
date: Thu Feb 23 07:11:25 2012 +0000
summary: Document behaviour of skips in beamercolorbox (fixes issue #1)
changeset: 491:24107e883a1d
user: Joseph Wright <[email protected]>
date: Wed Feb 22 20:52:22 2012 +0000
summary: Added tag version-3-13 for changeset 46e1bc9c9b76
changeset: 490:46e1bc9c9b76
tag: version-3-13
user: Joseph Wright <[email protected]>
date: Wed Feb 22 20:52:13 2012 +0000
summary: Step version
changeset: 489:16a7aed8b69c
user: Joseph Wright <[email protected]>
date: Wed Feb 22 20:50:00 2012 +0000
summary: Add MakeIndex to doc run (fixes issue #81)
changeset: 488:9ec014de75d7
user: Joseph Wright <[email protected]>
date: Wed Feb 22 20:39:41 2012 +0000
summary: A basic Makefile
changeset: 487:2ae76965ffee
user: Joseph Wright <[email protected]>
date: Wed Feb 22 19:45:37 2012 +0000
summary: Define \newblock in all cases (fixes issue #166)
changeset: 486:1e3e174835fb
user: Joseph Wright <[email protected]>
date: Wed Feb 22 13:06:49 2012 +0000
summary: Add \transreplace (fixes issue #164)
changeset: 485:f8ae4b309404
user: Joseph Wright <[email protected]>
date: Wed Feb 22 11:18:26 2012 +0000
summary: Document need to set "subsection = false" if there are no subsections with the miniframes outer theme
changeset: 484:f102fc5026b5
user: Joseph Wright <[email protected]>
date: Wed Feb 22 08:51:00 2012 +0000
summary: Shade \subsubsections in TOC (fixes issue #94)
changeset: 483:9a2581f9efb6
user: Joseph Wright <[email protected]>
date: Wed Feb 22 08:31:04 2012 +0000
summary: Treat short name of \subsubsection in same way as for \subsection and \section
changeset: 482:4a510a8c7341
user: Vedran Miletić <[email protected]>
date: Sat Oct 22 14:18:43 2011 +0200
summary: Make framesubtitle appear in nicer way when using article mode.
changeset: 481:d0f82b1bf4b7
user: Joseph Wright <[email protected]>
date: Mon Oct 17 12:58:10 2011 +0100
summary: New Greek translator dictionaries: thanks to Antonis Tsolomitis
changeset: 480:ef3a8ff9db6a
user: Joseph Wright <[email protected]>
date: Tue Oct 04 21:49:41 2011 +0100
summary: Add Brazilian dictionaries
changeset: 479:17e820568435
user: Joseph Wright <[email protected]>
date: Sat Sep 24 14:18:04 2011 +0100
summary: Alternative method to restore \Hy@writebookmarks
changeset: 478:041ad6efd1d5
user: Joseph Wright <[email protected]>
date: Wed Sep 21 20:43:40 2011 +0100
summary: Added tag version-3-12 for changeset 19e4c3c6fe54
changeset: 477:19e4c3c6fe54
tag: version-3-12
user: Joseph Wright <[email protected]>
date: Wed Sep 21 20:42:25 2011 +0100
summary: Another version number to step
changeset: 476:42a2c9debdc3
user: Joseph Wright <[email protected]>
date: Wed Sep 21 20:30:30 2011 +0100
summary: Step version number
changeset: 475:bf4ebb9e94c1
user: Joseph Wright <[email protected]>
date: Wed Sep 21 20:29:57 2011 +0100
summary: The order of the branches is wrong after the change to using \ifpdf
changeset: 474:7e14406098dd
user: Joseph Wright <[email protected]>
date: Tue Sep 13 19:12:51 2011 +0100
summary: Update copyrights
changeset: 473:f912af4cb1b6
user: Joseph Wright <[email protected]>
date: Tue Sep 13 19:07:54 2011 +0100
summary: Typo (fixes issue #154)
changeset: 472:f5b5e69bd3df
user: Joseph Wright <[email protected]>
date: Tue Sep 13 19:07:29 2011 +0100
summary: Typo (fixes issue #153)
changeset: 471:b202c2d6d8e7
user: Joseph Wright <[email protected]>
date: Mon Sep 12 20:24:02 2011 +0100
summary: Added tag version-3-11 for changeset 70f9d8411e54
changeset: 470:70f9d8411e54
tag: version-3-11
user: Joseph Wright <[email protected]>
date: Mon Sep 12 19:58:34 2011 +0100
summary: Update copyright statements where appropriate
changeset: 469:fcbcf9b6978d
user: Joseph Wright <[email protected]>
date: Mon Sep 12 19:54:31 2011 +0100
summary: Step version number
changeset: 468:584198e9353f
user: Joseph Wright <[email protected]>
date: Sun Sep 11 19:56:31 2011 +0100
summary: Fix Euclid's proof :-) (Fixes issue #96)
changeset: 467:c8fca43b9eab
user: Joseph Wright <[email protected]>
date: Sun Sep 11 09:24:51 2011 +0100
summary: Allow for single-frame verbatim when label is given (fixes issue #110)
changeset: 466:6f3c10d5ac99
user: Joseph Wright <[email protected]>
date: Sun Sep 11 08:16:30 2011 +0100
summary: Load ifpdf and use it for PDF mode detection, rather than fiddling
changeset: 465:1a3bb024d312
user: Joseph Wright <[email protected]>
date: Sun Sep 11 08:08:28 2011 +0100
summary: Use correct lables \AtBegin* (fixes issue #118)
changeset: 464:e0c5bfea8593
parent: 462:5127b79bd92d
parent: 463:20e2c886720f
user: Joseph Wright <[email protected]>
date: Sun Sep 11 07:29:23 2011 +0100
summary: Merge Kjell Magne Fauske's Norwegan translations in beamer core
changeset: 463:20e2c886720f
parent: 443:306d55f66f5b
user: Kjell Magne Fauske <[email protected]>
date: Sun Jul 25 12:42:47 2010 +0200
summary: Added dictionary files copied from the obsolete translator-norsk repository
changeset: 462:5127b79bd92d
user: Joseph Wright <[email protected]>
date: Sat Sep 10 23:39:11 2011 +0100
summary: Group footnote colour (fixes issue #127)
changeset: 461:c68b4f3960f8
user: Joseph Wright <[email protected]>
date: Sat Sep 10 23:28:25 2011 +0100
summary: Correctly step counter for subsections (fixes issue #117)
changeset: 460:1d53da7ebc8b
user: Joseph Wright <[email protected]>
date: Thu Mar 17 21:13:40 2011 +0000
summary: Remove internal macro when using \renewcommand<> (fixes issue #119)
changeset: 459:86ed42e273fa
user: Joseph Wright <[email protected]>
date: Tue Jan 11 08:36:20 2011 +0000
summary: Ignore babel's French-style footnotes (~fixes #95)
changeset: 458:6db5df086331
user: Joseph Wright <[email protected]>
date: Tue Jan 11 08:21:15 2011 +0000
summary: Sanitize first token of frame when reading verbatim (fixes #93)
changeset: 457:f39336aafb3c
user: Vedran Miletić <[email protected]>
date: Tue Oct 26 20:09:31 2010 +0200
summary: Add kpfonts to list of professionalfonts, fixes #85 Wrong interaction with kpfonts
changeset: 456:d95ff3f330c8
parent: 455:f690789b5247
parent: 454:f0446ed0b6ae
user: Vedran Miletić <[email protected]>
date: Tue Oct 26 19:39:03 2010 +0200
summary: Merge.
changeset: 455:f690789b5247
parent: 453:9224c5f3ce70
user: Vedran Miletić <[email protected]>
date: Tue Oct 26 19:38:13 2010 +0200
summary: Fix issue #86 Little typo p.102 in beamer user guide (version 3.10).
changeset: 454:f0446ed0b6ae
user: Joseph Wright <[email protected]>
date: Tue Sep 21 18:49:40 2010 +0100
summary: Ensure that \titlepage exists before renewing (fixes #79)
changeset: 453:9224c5f3ce70
user: Joseph Wright <[email protected]>
date: Sun Sep 19 21:49:53 2010 +0100
summary: Hmm, accidently removed some biblatex stuff in that last committ: restored
changeset: 452:590a94c2bb06
user: Joseph Wright <[email protected]>
date: Sun Sep 19 21:46:35 2010 +0100
summary: Use enumerate package in article mode
changeset: 451:8bf396c8c4d9
user: Joseph Wright <[email protected]>
date: Thu Sep 16 21:21:07 2010 +0100
summary: Oops, some code from earlier testing left over: removed
changeset: 450:06980b083c2f
user: Joseph Wright <[email protected]>
date: Thu Sep 16 20:56:26 2010 +0100
summary: Some basic support for biblatex icons
changeset: 449:df29f9236be1
user: Vedran Miletić <[email protected]>
date: Sun Aug 29 16:18:21 2010 +0200
summary: Fix #61 bibliography entry journal -> location.
changeset: 448:f991535bc60d
user: Vedran Miletić <[email protected]>
date: Sun Aug 29 15:56:19 2010 +0200
summary: Add Sergiu Dotenco to list of patch contributors.
changeset: 447:e07e85b4cd4a
user: Vedran Miletić <[email protected]>
date: Sun Aug 29 15:23:56 2010 +0200
summary: Define secname, subsecname and subsubsecname early (even before {,sub,subsub}section is put) so user-defined commands that include them work.
changeset: 446:a5daeeda0058
user: Vedran Miletić <[email protected]>
date: Sun Aug 29 15:06:07 2010 +0200
summary: "beamer didn't honor hyperref's pdfpagelabels option" patch by Sergiu Dotenco.
changeset: 445:c21b5df19f9e
user: Vedran Miletić <[email protected]>
date: Sat Aug 07 15:06:21 2010 +0200
summary: Fix #54 Wrong name of a package in an example at page 18.
changeset: 444:5ac9c9444ac7
user: Vedran Miletić <[email protected]>
date: Sat Aug 07 15:04:58 2010 +0200
summary: Fix #53. Thanks for catching that, Stanislaw Polak.
changeset: 443:306d55f66f5b
user: Vedran Miletić <[email protected]>
date: Mon Jul 12 19:49:46 2010 +0200
summary: Added tag version-3-10 for changeset 213fd269d3ef
changeset: 442:213fd269d3ef
tag: version-3-10
user: Vedran Miletić <[email protected]>
date: Mon Jul 12 19:39:08 2010 +0200
summary: Update ChangeLog.
changeset: 441:208bcd589060
user: Vedran Miletić <[email protected]>
date: Mon Jul 12 19:35:36 2010 +0200
files: FILES
description:
Reflect new file and folder structure in FILES.
changeset: 440:9e7fa0505fbf
user: Vedran Miletić <[email protected]>
date: Mon Jul 12 19:33:32 2010 +0200
files: examples/Makefile
description:
Fix Makefile for examples.
changeset: 439:ca2315a97e66
user: Vedran Miletić <[email protected]>
date: Mon Jul 12 19:10:04 2010 +0200
files: doc/beamerug-animations.tex doc/beamerug-compatibility.tex doc/beamerug-elements.tex doc/beamerug-emulation.tex doc/beamerug-fonts.tex doc/beamerug-frames.tex doc/beamerug-globalstructure.tex doc/beamerug-guidelines.tex doc/beamerug-installation.tex doc/beamerug-interaction.tex doc/beamerug-introduction.tex doc/beamerug-license.tex doc/beamerug-localstructure.tex doc/beamerug-nonpresentation.tex doc/beamerug-notes.tex doc/beamerug-overlays.tex doc/beamerug-themes.tex doc/beamerug-transparancies.tex doc/beamerug-transparencies.tex doc/beamerug-tricks.tex doc/beamerug-tutorial.tex doc/beamerug-twoscreens.tex doc/beameruserguide.tex
description:
Fixed issues #25, #39, #41, #43, #45. Thanks a lot to Ulrich for going thru the guide and finding errors.
changeset: 438:09e82992d9b1
user: Vedran Miletić <[email protected]>
date: Mon Jul 12 17:00:09 2010 +0200
files: base/beamerbaseframecomponents.sty
description:
Fix issue #31 \footnote[frame]{} wraps text at column width. Perhaps not the cleanest one, but it works :-)
changeset: 437:6648c3177e4e
user: Vedran Miletić <[email protected]>
date: Mon Jul 12 16:35:05 2010 +0200
files: base/beamerbasecompatibility.sty
description:
Fixed a typo in horizontal shading option. Good catch, hakante.
changeset: 436:445340293dde
user: Vedran Miletić <[email protected]>
date: Sat Jul 10 14:51:34 2010 +0200
files: base/themes/outer/beamerouterthemeinfolines.sty
description:
Fix #20 Latex Beamer Problem with footnote author().
changeset: 435:6baa2d92e6f1
user: Vedran Miletić <[email protected]>
date: Sun Jun 27 13:07:36 2010 +0200
files: base/beamerbaseframesize.sty base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Croatian.dict base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-English.dict base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-French.dict base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-German.dict base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Polish.dict base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Serbian.dict
description:
Add support for translating frame continuation string and translate it. Did my best at Polish and French translation.
changeset: 434:8520d1e04ba2
user: Vedran Miletić <[email protected]>
date: Thu Jun 24 11:21:11 2010 +0200
files: doc/Makefile
description:
Fix doc Makefile to match new folder structure.
changeset: 433:ab4f937d5b77
user: Vedran Miletić <[email protected]>
date: Thu Jun 24 10:37:23 2010 +0200
files: doc/beamerug-globalstructure.tex doc/beamerug-translator.tex
description:
Describe sectionpage and subsectionpage in manual.
changeset: 432:a6b1a8434d30
user: Vedran Miletić <[email protected]>
date: Mon Jun 21 11:34:49 2010 +0200
files: base/beamer.cls
description:
Patch from Sergiu Dotenco which I forgot to apply (thanks, Axel Berger).
changeset: 431:15b00f5ea478
user: Vedran Miletić <[email protected]>
date: Thu Jun 17 13:06:20 2010 +0200
files: base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Croatian.dict base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Serbian.dict base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Croatian.dict base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Serbian.dict base/translator/dicts/translator-months-dictionary/translator-months-dictionary-Croatian.dict base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Croatian.dict base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Serbian.dict base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Croatian.dict base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Serbian.dict
description:
Fixes for Croatian and Serbian translation.
changeset: 430:d9eb22128ac3
user: Vedran Miletić <[email protected]>
date: Thu Jun 17 12:41:43 2010 +0200
files: base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Croatian.dict base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Polish.dict base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Serbian.dict base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Polish.dict base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Serbian.dict base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Croatian.dict base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Polish.dict base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Serbian.dict base/translator/dicts/translator-months-dictionary/translator-months-dictionary-Croatian.dict base/translator/dicts/translator-months-dictionary/translator-months-dictionary-Polish.dict base/translator/dicts/translator-months-dictionary/translator-months-dictionary-Serbian.dict base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Croatian.dict base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Polish.dict base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Serbian.dict base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Croatian.dict base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Polish.dict base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Serbian.dict
description:
Add Polish dictionary for translator. Add "Translated by" to Serbian and Croatian.
changeset: 429:e0d9401bb743
user: Vedran Miletić <[email protected]>
date: Thu Jun 17 12:06:51 2010 +0200
files: base/beamerbasesection.sty
description:
Add lastsection per issue #38.
changeset: 428:d421949afaa3
user: Vedran Miletić <[email protected]>
date: Thu Jun 17 11:49:24 2010 +0200
files: doc/beamerug-installation.tex doc/beamerug-themes.tex
description:
Fix issue #39 typing errors in Beamer User Guide.
changeset: 427:14743c450e2c
user: Vedran Miletić <[email protected]>
date: Thu Jun 17 11:25:56 2010 +0200
files: base/art/beamericonarticle.tex base/art/beamericonbook.tex base/emulation/beamerprosper.sty base/emulation/beamertexpower.sty base/multimedia/multimedia.sty base/multimedia/xmpmulti.sty base/translator/translator.sty doc/beamerug-color.tex doc/beamerug-graphics.tex doc/beamerug-license.tex doc/beamerug-macros.tex doc/beamerug-translator.tex doc/licenses/LICENSE doc/themeexamples/beamerthememakeexamples.sh
description:
Remove some trailing whitespace.
changeset: 426:d02a7cf4d8ae
user: Vedran Miletić <[email protected]>
date: Thu Jun 17 11:11:41 2010 +0200
files: base/emulation/beamerfoils.sty base/emulation/beamerprosper.sty base/emulation/beamerseminar.sty base/emulation/beamertexpower.sty base/emulation/examples/beamerexample-foils.tex base/emulation/examples/beamerexample-prosper.tex base/emulation/examples/beamerexample-seminar.tex base/emulation/examples/beamerexample-texpower.tex base/multimedia/multimedia.sty base/multimedia/multimediasymbols.sty base/multimedia/xmpmulti.sty base/themes/color/beamercolorthemealbatross.sty base/themes/color/beamercolorthemebeaver.sty base/themes/color/beamercolorthemebeetle.sty base/themes/color/beamercolorthemecrane.sty base/themes/color/beamercolorthemedefault.sty base/themes/color/beamercolorthemedolphin.sty base/themes/color/beamercolorthemedove.sty base/themes/color/beamercolorthemefly.sty base/themes/color/beamercolorthemelily.sty base/themes/color/beamercolorthemeorchid.sty base/themes/color/beamercolorthemerose.sty base/themes/color/beamercolorthemeseagull.sty base/themes/color/beamercolorthemeseahorse.sty base/themes/color/beamercolorthemesidebartab.sty base/themes/color/beamercolorthemestructure.sty base/themes/color/beamercolorthemewhale.sty base/themes/color/beamercolorthemewolverine.sty base/themes/font/beamerfontthemedefault.sty base/themes/font/beamerfontthemeprofessionalfonts.sty base/themes/font/beamerfontthemeserif.sty base/themes/font/beamerfontthemestructurebold.sty base/themes/font/beamerfontthemestructureitalicserif.sty base/themes/font/beamerfontthemestructuresmallcapsserif.sty base/themes/inner/beamerinnerthemecircles.sty base/themes/inner/beamerinnerthemedefault.sty base/themes/inner/beamerinnerthemeinmargin.sty base/themes/inner/beamerinnerthemerectangles.sty base/themes/inner/beamerinnerthemerounded.sty base/themes/outer/beamerouterthemedefault.sty base/themes/outer/beamerouterthemeinfolines.sty base/themes/outer/beamerouterthememiniframes.sty base/themes/outer/beamerouterthemeshadow.sty base/themes/outer/beamerouterthemesidebar.sty base/themes/outer/beamerouterthemesmoothbars.sty base/themes/outer/beamerouterthemesmoothtree.sty base/themes/outer/beamerouterthemesplit.sty base/themes/outer/beamerouterthemetree.sty base/themes/theme/beamerthemeAnnArbor.sty base/themes/theme/beamerthemeAntibes.sty base/themes/theme/beamerthemeBergen.sty base/themes/theme/beamerthemeBerkeley.sty base/themes/theme/beamerthemeBerlin.sty base/themes/theme/beamerthemeBoadilla.sty base/themes/theme/beamerthemeCambridgeUS.sty base/themes/theme/beamerthemeCopenhagen.sty base/themes/theme/beamerthemeDarmstadt.sty base/themes/theme/beamerthemeDresden.sty base/themes/theme/beamerthemeFrankfurt.sty base/themes/theme/beamerthemeGoettingen.sty base/themes/theme/beamerthemeHannover.sty base/themes/theme/beamerthemeIlmenau.sty base/themes/theme/beamerthemeJuanLesPins.sty base/themes/theme/beamerthemeLuebeck.sty base/themes/theme/beamerthemeMadrid.sty base/themes/theme/beamerthemeMalmoe.sty base/themes/theme/beamerthemeMarburg.sty base/themes/theme/beamerthemeMontpellier.sty base/themes/theme/beamerthemePaloAlto.sty base/themes/theme/beamerthemePittsburgh.sty base/themes/theme/beamerthemeRochester.sty base/themes/theme/beamerthemeSingapore.sty base/themes/theme/beamerthemeSzeged.sty base/themes/theme/beamerthemeWarsaw.sty base/themes/theme/beamerthemeboxes.sty base/themes/theme/beamerthemedefault.sty base/themes/theme/compatibility/beamerthemebars.sty base/themes/theme/compatibility/beamerthemeclassic.sty base/themes/theme/compatibility/beamerthemecompatibility.sty base/themes/theme/compatibility/beamerthemelined.sty base/themes/theme/compatibility/beamerthemeplain.sty base/themes/theme/compatibility/beamerthemeshadow.sty base/themes/theme/compatibility/beamerthemesidebar.sty base/themes/theme/compatibility/beamerthemesplit.sty base/themes/theme/compatibility/beamerthemetree.sty base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Croatian.dict base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-English.dict base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-French.dict base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-German.dict base/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Serbian.dict base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Croatian.dict base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-English.dict base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-French.dict base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-German.dict base/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Serbian.dict base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Croatian.dict base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-English.dict base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-French.dict base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-German.dict base/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Serbian.dict base/translator/dicts/translator-months-dictionary/translator-months-dictionary-Croatian.dict base/translator/dicts/translator-months-dictionary/translator-months-dictionary-English.dict base/translator/dicts/translator-months-dictionary/translator-months-dictionary-French.dict base/translator/dicts/translator-months-dictionary/translator-months-dictionary-German.dict base/translator/dicts/translator-months-dictionary/translator-months-dictionary-Serbian.dict base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Croatian.dict base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-English.dict base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-French.dict base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-German.dict base/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Serbian.dict base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Croatian.dict base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-English.dict base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-French.dict base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-German.dict base/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Serbian.dict base/translator/translator-language-mappings.tex base/translator/translator.sty emulation/beamerfoils.sty emulation/beamerprosper.sty emulation/beamerseminar.sty emulation/beamertexpower.sty emulation/examples/beamerexample-foils.tex emulation/examples/beamerexample-prosper.tex emulation/examples/beamerexample-seminar.tex emulation/examples/beamerexample-texpower.tex extensions/multimedia/multimedia.sty extensions/multimedia/multimediasymbols.sty extensions/multimedia/xmpmulti.sty extensions/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Croatian.dict extensions/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-English.dict extensions/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-French.dict extensions/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-German.dict extensions/translator/dicts/translator-basic-dictionary/translator-basic-dictionary-Serbian.dict extensions/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Croatian.dict extensions/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-English.dict extensions/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-French.dict extensions/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-German.dict extensions/translator/dicts/translator-bibliography-dictionary/translator-bibliography-dictionary-Serbian.dict extensions/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Croatian.dict extensions/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-English.dict extensions/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-French.dict extensions/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-German.dict extensions/translator/dicts/translator-environment-dictionary/translator-environment-dictionary-Serbian.dict extensions/translator/dicts/translator-months-dictionary/translator-months-dictionary-Croatian.dict extensions/translator/dicts/translator-months-dictionary/translator-months-dictionary-English.dict extensions/translator/dicts/translator-months-dictionary/translator-months-dictionary-French.dict extensions/translator/dicts/translator-months-dictionary/translator-months-dictionary-German.dict extensions/translator/dicts/translator-months-dictionary/translator-months-dictionary-Serbian.dict extensions/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Croatian.dict extensions/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-English.dict extensions/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-French.dict extensions/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-German.dict extensions/translator/dicts/translator-numbers-dictionary/translator-numbers-dictionary-Serbian.dict extensions/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Croatian.dict extensions/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-English.dict extensions/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-French.dict extensions/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-German.dict extensions/translator/dicts/translator-theorem-dictionary/translator-theorem-dictionary-Serbian.dict extensions/translator/translator-language-mappings.tex extensions/translator/translator.sty themes/color/beamercolorthemealbatross.sty themes/color/beamercolorthemebeaver.sty themes/color/beamercolorthemebeetle.sty themes/color/beamercolorthemecrane.sty themes/color/beamercolorthemedefault.sty themes/color/beamercolorthemedolphin.sty themes/color/beamercolorthemedove.sty themes/color/beamercolorthemefly.sty themes/color/beamercolorthemelily.sty themes/color/beamercolorthemeorchid.sty themes/color/beamercolorthemerose.sty themes/color/beamercolorthemeseagull.sty themes/color/beamercolorthemeseahorse.sty themes/color/beamercolorthemesidebartab.sty themes/color/beamercolorthemestructure.sty themes/color/beamercolorthemewhale.sty themes/color/beamercolorthemewolverine.sty themes/font/beamerfontthemedefault.sty themes/font/beamerfontthemeprofessionalfonts.sty themes/font/beamerfontthemeserif.sty themes/font/beamerfontthemestructurebold.sty themes/font/beamerfontthemestructureitalicserif.sty themes/font/beamerfontthemestructuresmallcapsserif.sty themes/inner/beamerinnerthemecircles.sty themes/inner/beamerinnerthemedefault.sty themes/inner/beamerinnerthemeinmargin.sty themes/inner/beamerinnerthemerectangles.sty themes/inner/beamerinnerthemerounded.sty themes/outer/beamerouterthemedefault.sty themes/outer/beamerouterthemeinfolines.sty themes/outer/beamerouterthememiniframes.sty themes/outer/beamerouterthemeshadow.sty themes/outer/beamerouterthemesidebar.sty themes/outer/beamerouterthemesmoothbars.sty themes/outer/beamerouterthemesmoothtree.sty themes/outer/beamerouterthemesplit.sty themes/outer/beamerouterthemetree.sty themes/theme/beamerthemeAnnArbor.sty themes/theme/beamerthemeAntibes.sty themes/theme/beamerthemeBergen.sty themes/theme/beamerthemeBerkeley.sty themes/theme/beamerthemeBerlin.sty themes/theme/beamerthemeBoadilla.sty themes/theme/beamerthemeCambridgeUS.sty themes/theme/beamerthemeCopenhagen.sty themes/theme/beamerthemeDarmstadt.sty themes/theme/beamerthemeDresden.sty themes/theme/beamerthemeFrankfurt.sty themes/theme/beamerthemeGoettingen.sty themes/theme/beamerthemeHannover.sty themes/theme/beamerthemeIlmenau.sty themes/theme/beamerthemeJuanLesPins.sty themes/theme/beamerthemeLuebeck.sty themes/theme/beamerthemeMadrid.sty themes/theme/beamerthemeMalmoe.sty themes/theme/beamerthemeMarburg.sty themes/theme/beamerthemeMontpellier.sty themes/theme/beamerthemePaloAlto.sty themes/theme/beamerthemePittsburgh.sty themes/theme/beamerthemeRochester.sty themes/theme/beamerthemeSingapore.sty themes/theme/beamerthemeSzeged.sty themes/theme/beamerthemeWarsaw.sty themes/theme/beamerthemeboxes.sty themes/theme/beamerthemedefault.sty themes/theme/compatibility/beamerthemebars.sty themes/theme/compatibility/beamerthemeclassic.sty themes/theme/compatibility/beamerthemecompatibility.sty themes/theme/compatibility/beamerthemelined.sty themes/theme/compatibility/beamerthemeplain.sty themes/theme/compatibility/beamerthemeshadow.sty themes/theme/compatibility/beamerthemesidebar.sty themes/theme/compatibility/beamerthemesplit.sty themes/theme/compatibility/beamerthemetree.sty
description:
Rearrange the folders in TL-consistent way.
changeset: 425:0677185e52f6
user: Vedran Miletić <[email protected]>
date: Sat Jun 12 23:22:22 2010 +0200
files: base/beamer.cls base/beamerbasearticle.sty
description:
Should be Beamer, not beamer. (Both are fine, but since we put Beamer almost everywhere, let's try to be consistent now...)
changeset: 424:c3821710bb40
user: Vedran Miletić <[email protected]>
date: Sat Jun 12 14:24:31 2010 +0200
files: base/beamerbasercs.sty doc/beameruserguide.tex extensions/translator/translator.sty
description:
Bump all version numbers.
changeset: 423:f0a403f6578e
user: Vedran Miletić <[email protected]>
date: Sat Jun 12 14:12:56 2010 +0200
files: .hgtags
description:
Added tag version-3-09 for changeset f4a1dee0d1b1
changeset: 422:f4a1dee0d1b1
tag: version-3-09
user: Vedran Miletić <[email protected]>
date: Sat Jun 12 14:12:32 2010 +0200
files: ChangeLog FILES
description:
Update ChangeLog and FILES. This is 3.09.
changeset: 421:9b206f1826ae
user: Vedran Miletić <[email protected]>
date: Sat Jun 12 14:07:34 2010 +0200
files: doc/beamerlogo.pdf doc/beamerug-beamerlogo.pdf doc/beameruserguide.tex
description:
Give better name for a logo, one that Makefile won't destroy on make clean.
changeset: 420:277e4f0e84c2
user: Vedran Miletić <[email protected]>
date: Sat Jun 12 14:05:25 2010 +0200
files: doc/beamerug-beamerlogo.pdf doc/beamerug-translator.tex doc/beameruserguide.tex