forked from OCR-D/olena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
4581 lines (3170 loc) · 129 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
2014-07-08 Roland Levillain <[email protected]>
Olena 2.1.
* NEWS,
* README,
* configure.ac:
Update version number.
2014-07-08 Roland Levillain <[email protected]>
Update copyright notices in Olena.
* doc/Doxyfile.in,
* doc/mainpage.dox:
Here.
2014-07-03 Roland Levillain <[email protected]>
Pacify Clang w.r.t. unknown compiler flags.
* configure.ac: Do not add `-Wno-unused-local-typedefs' to
WARNINGS_CXXFLAGS if it is accepted by the compiler but produces a
warning.
2014-07-03 Roland Levillain <[email protected]>
Help configure find Poppler on OS X with the MacPorts.
* configure.ac: Use OLN_WITH_LIB instead of
OLN_WITH_LIB_PKG_CONFIG to find the `poppler-cpp' package, as the
latter incorrectly sets compile and link flags on OS X when using
the MacPorts.
2014-07-02 Roland Levillain <[email protected]>
Update Olena's NEWS file.
* NEWS: Here.
2014-07-01 Roland Levillain <[email protected]>
Update texi2dvi from upstream.
* build-aux/texi2dvi: Update from Subversion Texinfo.
2012-06-07 Guillaume Lazzara <[email protected]>
Fix last warnings with Lintian.
* Makefile.am: Install pixmaps and include debian/ in
distribution.
* debian/olena-bin.menu,
* debian/olena.desktop: Rename as...
* debian/olena.menu,
* debian/olena-bin.desktop: ... this. Update to use scribo-viewer.
* debian/olena-bin.install: Include pixmap in package.
* debian/olena.1: Fix description.
* debian/olena.xpm: New.
* debian/rules: Set path to libexec.
* debian/control: Update minimal version of debhelper.
* debian/compat: Set to debhelper v7.
* debian/source/lintian-overrides: Remove.
2012-06-06 Guillaume Lazzara <[email protected]>
* debian/rules: Cleanup.
2012-06-04 Guillaume Lazzara <[email protected]>
* debian/source/lintian-overrides: New.
2012-06-04 Guillaume Lazzara <[email protected]>
* debian/rules: Limit simultaneous compilations.
2012-06-04 Guillaume Lazzara <[email protected]>
* debian/rules: Remove empty directories in package.
2012-06-04 Guillaume Lazzara <[email protected]>
* debian/HOWTO: update.
2012-06-04 Guillaume Lazzara <[email protected]>
* debian/changelog: Close ITP bug.
2012-06-04 Guillaume Lazzara <[email protected]>
* debian/control: Improve descriptions and update Git browser URL.
2012-06-04 Guillaume Lazzara <[email protected]>
* debian/compat: Fix file. Remove comments.
2012-05-29 Guillaume Lazzara <[email protected]>
* debian/rules: Add hardening flags according to Debian policy.
2012-05-29 Guillaume Lazzara <[email protected]>
* debian/compat: Upgrade to debhelper 9.
2012-05-23 Guillaume Lazzara <[email protected]>
* debian/olena-bin.install: Add shared files in olena-bin.
2012-05-23 Guillaume Lazzara <[email protected]>
* debian/changelog: Change distribution.
2012-05-23 Guillaume Lazzara <[email protected]>
* debian/control: Update maintainer name.
2012-05-23 Guillaume Lazzara <[email protected]>
* debian/copyright: Update commiter name.
2012-05-23 Guillaume Lazzara <[email protected]>
* debian/control: Set packages as optional.
2012-05-23 Guillaume Lazzara <[email protected]>
* debian/rules: Handles '-j' option for make.
2012-05-23 Guillaume Lazzara <[email protected]>
* debian/control: Update Standards-Version.
2012-05-23 Guillaume Lazzara <[email protected]>
* debian/rules: Update deprecated dh_clean -k command.
2012-05-23 Guillaume Lazzara <[email protected]>
* debian/rules: Add missing required rules.
2012-05-22 Guillaume Lazzara <[email protected]>
Add missing description in manpages.
* debian/scribo-cli.1,
* debian/scribo-viewer.1: Here.
2012-05-22 Guillaume Lazzara <[email protected]>
Fix Lintian warnings.
* debian/changelog: Update date.
* debian/compat: Increase minimum required version of debhelper.
* debian/control: Add dependencies and fix description.
* debian/olena.menu,
* debian/copyright: Add a missing endline.
* debian/gbp.conf: New.
* debian/olena-dev.manpages: Rename to...
* debian/olena-bin.manpages: ... this.
* debian/rules: Use standard target names.
* debian/watch: New.
2012-05-22 Guillaume Lazzara <[email protected]>
Add options for dpkg-source.
* debian/source/format: Force dpkg-source 3.0.
* debian/source/local-options,
* debian/source/options: New.
2012-05-22 Guillaume Lazzara <[email protected]>
* debian/control: Add dependencies.
2012-01-30 Guillaume Lazzara <[email protected]>
* debian/HOWTO: Add more details.
2012-01-30 Guillaume Lazzara <[email protected]>
* Makefile.am: Add 'deb' rule.
2012-01-30 Guillaume Lazzara <[email protected]>
* debian/copyright: Set copyright.
2011-12-07 Guillaume Lazzara <[email protected]>
Create first draft of manpages for distributed binaries.
* debian/olena-dev.manpages
* debian/scribo-cli.1
* debian/scribo-viewer.1
2011-12-07 Guillaume Lazzara <[email protected]>
Update Debian package configuration.
* debian/changelog: Use the correct release date.
* debian/control: Update architecture and descriptions.
* debian/olena-bin.install,
* debian/olena-dev.docs,
* debian/olena-dev.install: Update list of files.
* debian/olena-dev.doc-base: New.
* debian/rules: Make it support several packages builds.
2011-12-02 Guillaume Lazzara <[email protected]>
* debian/HOWTO: How to make .deb package.
2011-12-02 Guillaume Lazzara <[email protected]>
Add package description files for .deb generation.
* README.Debian,
* changelog,
* compat,
* control,
* copyright,
* olena-bin.install,
* olena-dev.docs,
* olena-dev.install,
* olena.1,
* olena.desktop,
* olena.install,
* olena.manpages,
* olena.menu,
* olena.xpm,
* rules: New.
2014-06-27 Roland Levillain <[email protected]>
Add warning flags to Scribo compiler flags.
* configure.ac (SCRIBO_CXXFLAGS, SCRIBO_TESTS_CXXFLAGS):
Add $WARNINGS_CXXFLAGS.
2014-06-27 Roland Levillain <[email protected]>
* configure.ac: Aesthetic changes.
2014-06-27 Roland Levillain <[email protected]>
Use AX_CHECK_COMPILE_FLAG to check compiler support for `-pipe'.
* configure.ac: Here.
2014-06-27 Roland Levillain <[email protected]>
Avoid warnings about unused local typedefs.
* m4/ax_check_compile_flag.m4: New.
Imported from
http://www.gnu.org/software/autoconf-archive/ax_check_compile_flag.html.
* configure.ac: Ensure AX_* macros are expanded.
(WARNINGS_CXXFLAGS): Add `-Wno-unused-local-typedefs' if the C++
compiler supports this flag.
2014-06-26 Roland Levillain <[email protected]>
Make Olena more compatible with BSD Make.
* doc/Makefile.am: Do not use `$<' outside suffix rules.
2014-06-25 Roland Levillain <[email protected]>
Convert Olena to UTF-8.
* AUTHORS,
* README:
Here.
* doc/Doxyfile.in (INPUT_ENCODING): Set to UTF-8.
* doc/Makefile.am (contributors.html): Treat rst2html input and
output as UTF-8.
2014-06-20 Roland Levillain <[email protected]>
Remove mentions to trash/ directories in Olena.
* bootstrap: Here.
2014-06-19 Roland Levillain <[email protected]>
* AUTHORS: Update and clean up.
2014-06-17 Roland Levillain <[email protected]>
Update the list of Olena- and Milena-related publications.
* README (Bibliography): Here.
2014-06-17 Roland Levillain <[email protected]>
Update software version numbers.
* README (Required Software, Configuration, Supported Platforms)
* HACKING (Required Software):
Here.
2014-06-17 Roland Levillain <[email protected]>
Update instructions for releases.
* HACKING (Releasing): Here.
2011-01-10 Roland Levillain <[email protected]>
* configure.ac (APPS_CXXFLAGS_NODEBUG): New precious variable.
2011-01-10 Roland Levillain <[email protected]>
* configure.ac: Configure milena/apps/bench/Makefile.
2013-09-11 Roland Levillain <[email protected]>
Generate more uniform Makefile helpers for unit tests.
* build-aux/build_unit_test.sh: Write Make variables with
parentheses instead of braces.
Add a space before `='.
2013-09-11 Roland Levillain <[email protected]>
* build-aux/build_unit_test.sh: Properly handle QT_LIBS.
2013-09-09 Roland Levillain <[email protected]>
Olena: Remove Milena's build dir from the file inclusion path.
* doc/Makefile.am (AM_CPPFLAGS): Here.
2013-09-06 Roland Levillain <[email protected]>
Define PACKAGE_AUTHORS in configure.ac.
* configure.ac (PACKAGE_AUTHORS): New variable. Define it both as
a C/C++ preprocessor symbol (using AC_DEFINE_UNQUOTED) and as an
Autoconf output variable (via AC_SUBST).
2013-09-06 Roland Levillain <[email protected]>
Stop generating milena/mln/version.hh in the build tree with configure.
* configure.ac: No longer configure milena/mln/version.hh, as
milena/Makefile now generates it the source tree instead.
2013-08-30 Roland Levillain <[email protected]>
* configure.ac: Untabify.
2011-07-11 Roland Levillain <[email protected]>
Remove buggy symbol definitions.
* configure.ac: No longer define OLN_PACKAGE_NAME,
OLN_PACKAGE_BUGREPORT, OLN_PACKAGE_STRING and OLN_PACKAGE_VERSION
using AC_DEFINE_UNQUOTED.
2010-08-20 Roland Levillain <[email protected]>
* configure.ac: Configure milena/apps/generic-skel/Makefile.
2010-06-24 Roland Levillain <[email protected]>
* configure.ac: Configure milena/tests/io/vtk/Makefile.
2010-07-15 Roland Levillain <[email protected]>
Configure tests in mesh-segm-skel apps.
* configure.ac: Configure
milena/apps/mesh-segm-skel/test-mesh-complex-pinv-curv-segm and
milena/apps/mesh-segm-skel/test-mesh-complex-pinv-curv-skel.
2010-06-14 Roland Levillain <[email protected]>
Configure milena/apps/mesh-segm-skel/test-mesh-complex-max-curv-skel.
* configure.ac: Here.
2010-05-11 Roland Levillain <[email protected]>
Configure milena/apps/mesh-segm-skel/test-mesh-complex-max-curv-extrema.
* configure.ac: Here.
2013-08-26 Roland Levillain <[email protected]>
Improve the generation of Doxyfiles in Olena.
* doc/Makefile.am (edit)
($(srcdir)/user-refman.stamp):
Use `[@]' instead of `\@' for portability reasons.
(ID): New (empty).
($(DOXYFILE_USER)): Do not depend on $Id$ from ChangeLog.
* doc/Doxyfile.in (PROJECT_NUMBER): Reintegrate @ID@ to the
project number, even if it is not yet set.
Improve the generation of Doxyfiles in Olena.
2012-10-09 Roland Levillain <[email protected]>
Ask configure to try to find FFTW (version 3).
* configure.ac: Here.
2013-08-22 Roland Levillain <[email protected]>
* AUTHORS: Update.
2013-08-22 Roland Levillain <[email protected]>
* COPYING: Untabify.
2013-08-22 Roland Levillain <[email protected]>
* configure.ac: Configure milena/tests/fun/v2i/Makefile.
2010-04-23 Roland Levillain <[email protected]>
* configure.ac: Typo.
2013-06-28 Roland Levillain <[email protected]>
Have configure find bib2bib and bibtex2html.
* configure.ac: Check for bib2bib and bibtex2html.
Define BIB2BIB and BIBTEX2HTML and use them...
* doc/Makefile.am (lrde_olena.bib, lrde_olena.html): ...here.
* bootstrap: No longer check for bib2bib and bibtex2html.
2013-06-28 Roland Levillain <[email protected]>
Have configure find rst2html.
* configure.ac: Check for rst2html.
Define RST2HTML and use it...
* doc/Makefile.am (contributors.html): ...here.
2013-06-18 Roland Levillain <[email protected]>
Mention bibtex2html and bib2bib as documentation build dependencies.
* HACKING (Required Software): Here.
2013-06-18 Roland Levillain <[email protected]>
Require bibtex2html 1.95 and bib2bib 1.95.
* bootstrap: Here.
(require): Accept complex command line patterns as third argument
to handle bibtex2html's and bib2bib's ``--version'' option.
2013-06-18 Roland Levillain <[email protected]>
Work around constraints of TeXLive's bibtex2html on Mac OS X.
* doc/Makefile.am (lrde_olena.html): Here.
2013-06-14 Roland Levillain <[email protected]>
Shell-related portability fixes in Olena's Makefiles.
* doc/Makefile.am: Rewrite patterns ``perl X `find Y''' as
``find Y -exec perl X {} \;'' to avoid long `perl' command lines and
please the shell.
2013-06-17 Roland Levillain <[email protected]>
Use `perl -pi' instead of `sed -i' in Olena.
* build-aux/mln_add_file,
* doc/Makefile.am,
* lrde-scmstats.sh:
Here, as `sed -i' (with no backup file) behaves differently on
GNU/Linux and Mac OS X. For more information, see:
http://stackoverflow.com/questions/5694228/.
2013-04-18 Guillaume Lazzara <[email protected]>
Remove unstable viewer.
* GScribo/BUGS,
* GScribo/GScribo.pro,
* GScribo/GScribo.pro.user,
* GScribo/GScribo.pro.user.1.3,
* GScribo/PagesWidget/pagesdelegate.cpp,
* GScribo/PagesWidget/pagesdelegate.h,
* GScribo/PagesWidget/pagesmodel.cpp,
* GScribo/PagesWidget/pagesmodel.h,
* GScribo/PagesWidget/pageswidget.cpp,
* GScribo/PagesWidget/pageswidget.h,
* GScribo/Preferences/generaloptions.cpp,
* GScribo/Preferences/generaloptions.h,
* GScribo/Preferences/generaloptions.ui,
* GScribo/Preferences/ocroptions.cpp,
* GScribo/Preferences/ocroptions.h,
* GScribo/Preferences/ocroptions.ui,
* GScribo/Preferences/optionwidget.h,
* GScribo/Preferences/preferencesdialog.cpp,
* GScribo/Preferences/preferencesdialog.h,
* GScribo/Preferences/preferencesdialog.ui,
* GScribo/Preferences/preprocessingoptions.cpp,
* GScribo/Preferences/preprocessingoptions.h,
* GScribo/Preferences/preprocessingoptions.ui,
* GScribo/Preferences/segmentationoptions.cpp,
* GScribo/Preferences/segmentationoptions.h,
* GScribo/Preferences/segmentationoptions.ui,
* GScribo/Processing/preprocess.cpp,
* GScribo/Processing/preprocess.h,
* GScribo/Processing/process.cpp,
* GScribo/Processing/process.h,
* GScribo/Processing/progressdialog.cpp,
* GScribo/Processing/progressdialog.h,
* GScribo/Processing/runner.cpp,
* GScribo/Processing/runner.h,
* GScribo/Rendering/abstractregionitem.h,
* GScribo/Rendering/backgroundtexture.h,
* GScribo/Rendering/graphicsview.cpp,
* GScribo/Rendering/graphicsview.h,
* GScribo/Rendering/regionitem.cpp,
* GScribo/Rendering/regionitem.h,
* GScribo/Rendering/rootgraphicsitem.h,
* GScribo/Rendering/scene.cpp,
* GScribo/Rendering/scene.h,
* GScribo/Rendering/selection.cpp,
* GScribo/Rendering/selection.h,
* GScribo/TODO,
* GScribo/XmlWidget/attributesmodel.cpp,
* GScribo/XmlWidget/attributesmodel.h,
* GScribo/XmlWidget/selectionproxy.h,
* GScribo/XmlWidget/xmlattributes.cpp,
* GScribo/XmlWidget/xmlattributes.h,
* GScribo/XmlWidget/xmldelegate.h,
* GScribo/XmlWidget/xmlitem.cpp,
* GScribo/XmlWidget/xmlitem.h,
* GScribo/XmlWidget/xmlmodel.cpp,
* GScribo/XmlWidget/xmlmodel.h,
* GScribo/XmlWidget/xmlview.cpp,
* GScribo/XmlWidget/xmlview.h,
* GScribo/XmlWidget/xmlwidget.cpp,
* GScribo/XmlWidget/xmlwidget.h,
* GScribo/aboutdialog.h,
* GScribo/aboutdialog.ui,
* GScribo/configs.h,
* GScribo/dir.h,
* GScribo/dockwidget.h,
* GScribo/main.cpp,
* GScribo/mainwindow.cpp,
* GScribo/mainwindow.h,
* GScribo/mainwindow.ui,
* GScribo/region.h,
* GScribo/regionwidget.cpp,
* GScribo/regionwidget.h,
* GScribo/variantpointer.h,
* GScribo/xml.cpp,
* GScribo/xml.h: Remove.
2013-04-17 Guillaume Lazzara <[email protected]>
* doc/Makefile.am: Fix a link in documentations generated with
teamcity.
2013-04-16 Roland Levillain <[email protected]>
* distrib/macports/Portfile.in: Cosmetic changes.
2013-04-15 Roland Levillain <[email protected]>
* configure.ac (AC_INIT): Add URL to Olena's Web site.
2013-04-15 Roland Levillain <[email protected]>
* Makefile.am: Cosmetic changes.
2013-04-15 Roland Levillain <[email protected]>
Use Autoconf's MKDIR_P instead of Automake's obsolete mkdir_p.
* Makefile.am,
* doc/Makefile.am,
* milena/doc/Makefile.am,
* scribo/doc/Makefile.am:
Here.
2013-04-12 Guillaume Lazzara <[email protected]>
* doc/Makefile.am: Remove duplicate '/' in path.
2013-04-12 Guillaume Lazzara <[email protected]>
* NEWS: Add more descriptions.
2013-04-12 Guillaume Lazzara <[email protected]>
* doc/Makefile.am: Fix path to documentation.
2013-04-12 Guillaume Lazzara <[email protected]>
Use relative paths in documentation.
* doc/Doxyfile.in,
* doc/Makefile.am,
* doc/header.html,
* doc/mainpage.dox: Here.
2013-04-10 Guillaume Lazzara <[email protected]>
* doc/Makefile.am: Fix permissions on documentation files.
2013-04-10 Guillaume Lazzara <[email protected]>
Fix path to other documentations.
* doc/Makefile.am,
* doc/header.html,
* doc/mainpage.dox: Here.
2013-03-28 Guillaume Lazzara <[email protected]>
* doc/Makefile.am: Add a missing dependency.
2013-03-27 Guillaume Lazzara <[email protected]>
* configure.ac: Allow tarballs with long filenames.
2013-03-25 Guillaume Lazzara <[email protected]>
* configure.ac: Configure scribo/src/contest/hnla-2013 and
scribo/src/contest/hbr-2013.
2013-03-21 Guillaume Lazzara <[email protected]>
* doc/doc.bib: Add a reference to an article.
2013-03-21 Guillaume Lazzara <[email protected]>
* doc/doc.bib: Fix a reference name.
2013-03-20 Guillaume Lazzara <[email protected]>
Improve common documentation.
* doc/Doxyfile.in: Fix include path in documentation.
* doc/doc.bib: Add new references.
2013-03-13 Guillaume Lazzara <[email protected]>
Remove references to external directory.
* configure.ac,
* Makefile.am: Here.
2013-03-08 Guillaume Lazzara <[email protected]>
Improve look'n feel of general documentation.
* doc/Doxyfile.in: Make use of bibliography.
* doc/bibliography.dox: Add references.
* doc/DoxygenLayout.xml,
* doc/doc.css,
* doc/doxygen.css,
* doc/footer.html,
* doc/header.html,
* doc/subdoc_footer.html: Improve rendering.
2012-02-28 Guillaume Lazzara <[email protected]>
Fix links and location of documentation.
* doc/Makefile.am,
* doc/header.html,
* doc/mainpage.dox: Fix paths and disable the use of installdox
(deprecated)
* doc/doxygen.css,
* doc/footer.html: Fix footer.
2012-01-30 Guillaume Lazzara <[email protected]>
* build-aux/texi2dvi: Fix Dash incompatibility.
2012-02-27 Guillaume Lazzara <[email protected]>
Improve main documentation.
* doc/Makefile.am: Update dependencies.
* doc/about.dox,
* doc/doxygen.css,
* doc/license.dox,
* doc/license_commercial.dox,
* doc/licensing.dox,
* doc/mainpage.dox: Improve titles and presentation.
* doc/supported_platforms.dox: New.
2012-02-27 Guillaume Lazzara <[email protected]>
Fix documentation.
* doc/Doxyfile.in,
* doc/Makefile.am: Fix path to data and fix cleanup.
2011-12-12 Guillaume Lazzara <[email protected]>
* doc/Makefile.am: Add more missing files in EXTRA_DIST.
2011-12-08 Guillaume Lazzara <[email protected]>
* doc/Makefile.am: Add missing files in EXTRA_DIST.
2012-02-27 Guillaume Lazzara <[email protected]>
Fix dependencies in Makefiles.
* Makefile.am,
* doc/Makefile.am: Here.
2012-02-27 Guillaume Lazzara <[email protected]>
Fix Path to Olena logo.
* doc/logo.jpg: Move...
* doc/images/logo.jpg: ... here.
* doc/Doxyfile.in,
* milena/doc/Doxyfile.in,
* scribo/doc/Doxyfile.in: Fix path.
2012-02-27 Guillaume Lazzara <[email protected]>
Fix titles.
* doc/contributors.dox,
* doc/license.dox,
* doc/license_commercial.dox,
* doc/mainpage.dox: Here.
2012-02-27 Guillaume Lazzara <[email protected]>
Add a description about Olena.
* doc/Doxyfile.in: Add IMAGE_PATH entry.
* doc/Makefile.am: Add image dependency.
* doc/about.dox: New.
* doc/doc.bib: New reference.
* doc/images/olena_layers.png,
* doc/images/olena_layers.svg: New.
* doc/mainpage.dox: Rename section.
2011-10-28 Guillaume Lazzara <[email protected]>
Add more content in general documentation.
* doc/Makefile.am: New dependencies.
* doc/license_commercial.dox,
* doc/mainpage.dox,
* doc/modules_list.dox: More content.
* doc/get_sources.dox,
* doc/online_resources.dox: New.
2012-02-27 Guillaume Lazzara <[email protected]>
Add details about licensing.
* doc/Doxyfile.in
* doc/Makefile.am
* doc/license.dox
* doc/license_commercial.dox
* doc/mainpage.dox
2012-02-27 Guillaume Lazzara <[email protected]>
* doc/Doxyfile.in: Do not warn if undocumented.
2012-02-01 Guillaume Lazzara <[email protected]>
Add new groups in Scribo documentation.
* doc/Doxyfile.in: Refine settings.
* doc/groups.dox: Add new groups.
* scribo/core/component_set.hh,
* scribo/core/document.hh,
* scribo/core/line_links.hh,
* scribo/core/line_set.hh,
* scribo/core/object_groups.hh,
* scribo/core/object_links.hh,
* scribo/core/paragraph_set.hh: Set to a documentation group.
2012-02-01 Guillaume Lazzara <[email protected]>
Improve common documentation.
* AUTHORS: Use RST syntax.
* doc/Doxyfile.in: Use .dox files for documentation.
* doc/DoxygenLayout.xml: Improve layout.
* doc/Makefile.am: Add dependencies.
* doc/lrde.bib,
* doc/contributors.dox: New.
* doc/bibliography.hh,
* doc/mainpage.hh,
* doc/modules_list.hh: Rename to...
* doc/bibliography.dox,
* doc/mainpage.dox,
* doc/modules_list.dox: ...this.
* doc/olena.qhcp: Remove.
2012-02-01 Guillaume Lazzara <[email protected]>
Improve common documentation.
* Makefile.am: Add doc to SUBDIRS.
* doc/Doxyfile.in: Include bib file.
* doc/Makefile.am: Fix uninstall/install rules.
* doc/mainpage.hh: Improve layout.
* doc/bibliography.hh,
* doc/doc.bib,
* doc/modules_list.hh,
* doc/olena.bib: New.
2012-01-30 Guillaume Lazzara <[email protected]>
Improve layout and content of Milena's doc.
* milena/doc/Doxyfile.in: Generate tag file and fine tune output.
* milena/doc/DoxygenLayout.xml,
* milena/doc/milena.qhcp: New.
2012-01-30 Guillaume Lazzara <[email protected]>
First draft of Scribo documentation.
* scribo/doc/.gitignore,
* scribo/doc/Doxyfile.in,
* scribo/doc/DoxygenLayout.xml,
* scribo/doc/Makefile.am,
* scribo/doc/doxyfuns.sty,
* scribo/doc/examples-outputs.mk,
* scribo/doc/examples.mk,
* scribo/doc/examples/dummy.cc,
* scribo/doc/figures.mk,
* scribo/doc/gen-examples-outputs-mk,
* scribo/doc/gen-figures-mk,
* scribo/doc/gen-make-variable,
* scribo/doc/gen-split-examples-mk,
* scribo/doc/gen-split-outputs-mk,
* scribo/doc/graphicx.hva,
* scribo/doc/outputs.mk,
* scribo/doc/outputs/dummy.txt,
* scribo/doc/programs-examples.mk,
* scribo/doc/scribo.qhcp,
* scribo/doc/scribo.sty,
* scribo/doc/split-examples.mk,
* scribo/doc/split-outputs.mk,
* scribo/doc/tools/todoxygen.sh,
* scribo/doc/tutorial.tex: New.
2012-01-30 Guillaume Lazzara <[email protected]>
First draft of common documentation.
* configure.ac: Add new makefiles.
* doc/.gitignore,
* doc/Doxyfile.in,
* doc/DoxygenLayout.xml,
* doc/Makefile.am,
* doc/doxygen.css,
* doc/footer.html,
* doc/header.html,
* doc/logo.jpg,
* doc/mainpage.hh,
* doc/olena.qhcp,
* doc/subdoc_footer.html: New.
2013-03-07 Guillaume Lazzara <[email protected]>
* configure.ac: Configure scribo/tests/layout directory.
2013-03-07 Guillaume Lazzara <[email protected]>
* configure.ac: Do not configure scribo/demo/review anymore.
2013-02-28 Guillaume Lazzara <[email protected]>
* configure.ac: Check for libpoppler dependency and configure
pdf::load test directory.
2011-11-16 Guillaume Lazzara <[email protected]>
* configure.ac: Link to libGraphicsMagick++ if GraphicsMagick++ is
enabled.
2011-11-16 Guillaume Lazzara <[email protected]>
* m4/oln-with-lib.m4: Lookup for multiple AND single libraries
while checking Tesseract availability.
2012-06-25 Guillaume Lazzara <[email protected]>
* distrib/macports/Portfile.in: Apply changes required by MacPorts
team.
2012-05-11 Guillaume Lazzara <[email protected]>
* NEWS: Start populating the changes list.
2013-04-11 Roland Levillain <[email protected]>
Stop warning about Python 2.6+ likely incompatible with Swilena.
* configure.ac: Here.
2010-04-01 Roland Levillain <[email protected]>
Stop configuring swilena/python/sps and swilena/python/sps-local.
* configure.ac: Here.
2013-02-13 Roland Levillain <[email protected]>
Use Automake's silent-rules.
* configure.ac: Here.
2013-02-13 Roland Levillain <[email protected]>
Disable Automake's extra-portability warnings.
* configure.ac: Here, so that Automake 1.12 stops complaining
about AM_PROG_AR not being used, while preserving the
compatibility with Automake versions 1.11.2 and earlier.
2010-04-26 Roland Levillain <[email protected]>
Enable parallel tests.
* configure.ac (AM_INIT_AUTOMAKE): Add option `parallel-tests'.
2010-04-22 Roland Levillain <[email protected]>
Regen unit tests' Makefile fragments.
* milena/tests/unit_test/unit-tests.mk,
* scribo/tests/unit_test/unit-tests.mk:
Regen.
2010-04-22 Roland Levillain <[email protected]>
Simplify build_unit_test.sh thanks to AM_DEFAULT_SOURCE_EXT.
* build-aux/build_unit_test.sh: No longer output `*_SOURCES'
variables.
2010-02-17 Roland Levillain <[email protected]>