File: ChangeLog

package info (click to toggle)
etl 0.04.11-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 1,732 kB
  • ctags: 1,703
  • sloc: cpp: 7,346; sh: 3,764; ansic: 810; makefile: 129
file content (844 lines) | stat: -rw-r--r-- 25,604 bytes parent folder | download
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
2008-03-02 19:01  pabs

	* [r1837] NEWS, configure.ac: Releasing 0.61.08!

2008-03-01 06:55  pabs

	* [r1827] NEWS: Rewrite the 0.61.08 news entries as summaries
	  instead of essays. Include a link to the releases page for
	  lengthier release notes.

2008-02-24 21:02  dooglus

	* [r1815] ETL/handle: Using mutexes around accesses to refcounts
	  seems to make the Windows build much less stable for some reason,
	  so let's not do it for now, until we can find out why.

2008-02-23 11:09  dooglus

	* [r1807] ETL/Makefile.am, ETL/_handle.h,
	  ETL/_mutex_pthreads_simple.h, ETL/_mutex_simple.h, ETL/handle,
	  ETL/mutex: Use _mutex_win32.h on Windows.

2008-02-23 02:35  dooglus

	* [r1805] ETL/Makefile.am: Include 'mutex' and '_mutex_simple.h' in
	  the list of ETL headers to install.

2008-02-22 19:49  dooglus

	* [r1799] ETL/_handle.h: Use etl::mutexes to lock access to
	  reference counts.

2008-02-22 19:49  dooglus

	* [r1798] ETL/_mutex_simple.h, ETL/mutex: Two new files to use
	  pthread Mutexes very simply.

2008-02-22 19:49  dooglus

	* [r1797] ETL/ipc: Use a more suitable #define to guard against
	  double-inclusion.

2008-02-13 01:57  dooglus

	* [r1684] ETL/_handle.h: Write "operator()" instead of "operator
	  ()", "operator&" instead of "operator &", etc., to make them
	  easier to search for. Previously both forms were used.

2008-02-10 20:01  dooglus

	* [r1657] NEWS: Update NEWS files with most of the changes since
	  the last release.

2008-02-09 19:12  dooglus

	* [r1643] ETL/_smach.h, ETL/_surface.h, test/angle.cpp: Added
	  copyright lines for files I've edited this year.

2008-02-09 18:25  dooglus

	* [r1642] ETL/_fixed.h, ETL/_handle.h, ETL/_misc.h, test/fixed.cpp,
	  test/hermite.cpp: Added my "Copyright (c) 2007" notices, for
	  files I edited in 2007.

2008-02-03 01:38  pabs

	* [r1558] ETL.kdevprj, ETL.pbproj/project.pbxproj, Makefile.am: Get
	  rid of all references to the bootstrap script since it was
	  removed

2008-01-27 15:29  dooglus

	* [r1514] ETL/_random.h, test/smach.cpp, test/smart_ptr.cpp: More
	  unused parameters - in ETL this time.

2008-01-27 11:31  dooglus

	* [r1507] m4/subs.m4: Don't use the '-Wno-unused-parameter' flag by
	  default.

2008-01-26 10:49  dooglus

	* [r1496] ETL/_smach.h: Prevent warning from g++ 4.3:
	  [ETL/_smach.h:171] declaration of 'typedef class etl::smach<CON,
	  K, M>::event_def<T> etl::smach<CON, K, M>::state<T>::event_def'
	  [ETL/_smach.h:102] changes meaning of 'event_def' from 'class
	  etl::smach<CON, K, M>::event_def<T>'.

2008-01-26 03:37  dooglus

	* [r1495] ETL/_surface.h: Prevent lots of warnings like
	  [_surface.h:68] declaration of 'typedef ...alpha_pen<...>
	  etl::surface<...>::alpha_pen' [_pen.h:320] changes meaning of
	  'alpha_pen' from '...alpha_pen<...>'.

2008-01-25 12:44  dooglus

	* [r1465] ETL/_clock_base.h: Avoid a warning from g++ 4.3.

2008-01-25 12:23  dooglus

	* [r1462] ETL/_stringf.h: Avoid a warning from g++ 4.3.

2008-01-25 12:22  dooglus

	* [r1461] ETL/_bspline.h: Avoid a warning from g++ 4.3.

2008-01-24 05:31  pabs

	* [r1455] AUTHORS, ETL-config.in: Make ETL-config a wrapper around
	  pkg-config. Patch by Ralf Corsepius <rc040203@freenet.de>

2008-01-18 12:33  dooglus

	* [r1399] test/angle.cpp: Change the expected results to match the
	  new actual results, now that angles no longer wrap at 360
	  degrees.

2008-01-12 17:49  dooglus

	* [r1338] test/pen.cpp: Removed a bunch more DEBUGPOINT()s.

2008-01-08 01:22  pabs

	* [r1291] configure.ac: Use the bugs page on the website instead of
	  the tracker in the autoconf bugs argument of AC_INIT

2008-01-08 00:54  pabs

	* [r1288] README: Use synfig.org instead of synfig.com

2007-12-18 03:21  pabs

	* [r1209] ETL.spec.in, Makefile.am, configure.ac: Remove shitty
	  .spec files that the RPM distros will probably rewrite anyway.

2007-12-18 03:21  pabs

	* [r1208] m4/subs.m4: Strip license key and software expiry stuff
	  now that Synfig is free software and out of alpha testing.

2007-12-17 10:17  dooglus

	* [r1206] ETL/_fixed.h, ETL/_misc.h, doxygen.cfg.in: Fix doxygen
	  warnings for ETL sources.

2007-12-12 04:25  dooglus

	* [r1198] doxygen.cfg.in: Generate documentation for everything
	  under 'src'. Don't regenerate LaTeX documentation, only HTML.

2007-12-09 14:21  pabs

	* [r1190] ETL/_surface.h: Fix g++ 4.3 issues; add missing <cstring>
	  includes, remove storage class on explicit template
	  specialization. Patch by Cyril Brulebois.

2007-11-14 09:58  dooglus

	* [r1150] ETL/_angle.h: Working on 1827966: removed more 'wrap at
	  360 degrees' code.

2007-11-12 09:34  dooglus

	* [r1139] ETL/_angle.h: Working on 1827966: "Angles are
	  recalculated to 360 mod". Experimenting with angles. Define
	  ETL_WRAP_ANGLES in ETL/_angle.h to revert to previous behaviour.

2007-11-09 06:30  pabs

	* [r1124] configure.ac: Fix issue with older versions of autoconf

2007-11-08 22:49  dooglus

	* [r1118] test/fixed.cpp: Typo. It wasn't using the final value in
	  the division test, so the compiler could still have been
	  optimizing the calculations out.

2007-11-08 22:49  dooglus

	* [r1117] ETL/_handle.h: Make the 'obj' member of handle and
	  loose_handle public when debugging. It's useful sometimes to be
	  able to compare the addresses of the object behind the handles.

2007-11-07 11:05  pabs

	* [r1115] ETL.pc.in, ETL.spec.in, ETL/etl_profile_.h.in,
	  Makefile.am, bootstrap, config/ETL.m4, config/build.cfg,
	  config/configure.ac, config/cxx_macros.m4, config/doxygen.cfg.in,
	  config/pkgconfig.pc.in, config/project.spec.in, config/subs.m4,
	  configure.ac, doxygen.cfg.in, m4, m4/ETL.m4, m4/cxx_macros.m4,
	  m4/subs.m4: DIE ./bootstrap, DIE DIE DIE

2007-10-30 12:46  dooglus

	* [r1021] test/smach.cpp: Typo: 'enterted' -> 'entered'.

2007-10-30 10:53  dooglus

	* [r1005] ETL/clock: Typo: 'outselves' -> 'ourselves'.

2007-10-24 01:14  dooglus

	* [r959] ETL/_stringf.h: popen() doesn't like type "rb" on Linux,
	  either.

2007-10-24 01:14  dooglus

	* [r958] ETL/_stringf.h: Fix 1818856: External application render
	  targets seem to be broken. We can't use popen(command, "wb") on
	  Linux.

2007-10-21 21:36  dooglus

	* [r937] ETL/_handle.h: Tidying.

2007-10-21 21:35  dooglus

	* [r936] ETL/_handle.h: Tidying.

2007-10-21 21:35  dooglus

	* [r935] ETL/_handle.h: Typo.

2007-10-15 07:23  dooglus

	* [r933] ETL/_handle.h: Revert back to r930. The last 2 commits
	  were no good.

2007-10-15 00:50  dooglus

	* [r932] ETL/_handle.h: Use synfig::Mutex instead of Glib::Mutex.

2007-10-14 23:28  dooglus

	* [r931] ETL/_handle.h: Put mutexes around the reference counts for
	  the shared_object class. Maybe this will help prevent crashes.

2007-10-14 21:20  dooglus

	* [r928] ETL/_stringf.h: Wrote filename_extension() and
	  filename_sans_extension(), since they are reimplemented (often
	  incorrectly) in lots of places.

2007-10-11 01:52  dooglus

	* [r900] ETL/_misc.h: Use static_cast rather than the old C style
	  cast.

2007-10-10 13:07  dooglus

	* [r894] ETL/_misc.h: Fix rount_to_int() so it rounds to the
	  nearest integer. Previously it was rounding -1.333 to 0.

2007-10-10 12:50  dooglus

	* [r893] Makefile.am: Typo.

2007-10-10 02:32  dooglus

	* [r875] NEWS: Updated svn revision number and date in NEWS files.

2007-10-10 02:12  dooglus

	* [r874] ETL/_bezier.h: Don't include <ETL/fixed> because it's not
	  used.

2007-10-10 02:12  dooglus

	* [r873] test/hermite.cpp: #include <ETL/fixed> so ETL/_bezier.h
	  doesn't have to.

2007-10-10 01:59  dooglus

	* [r872] test/fixed.cpp: Various changes: Improve the formatting of
	  the output. Stop the compiler optimizing out the calculations.
	  Allow greater error when multiplying by PI if _fixed.h isn't
	  rounding to the nearest integer. Define variable before using it.
	  Tidy the source code layout. Prevent a core dump by not allowing
	  numbers to wrap around to zero.

2007-10-10 01:59  dooglus

	* [r871] ETL/_fixed.h: Conditionally compile in the '+0.5' code to
	  make fixed point numbers more accurate. Currently disabled.

2007-10-08 13:39  dooglus

	* [r865] NEWS: Updated NEWS files.

2007-10-08 02:34  dooglus

	* [r864] test/fixed.cpp: Add an error message explaining why the
	  'fixed' tests fail.

2007-10-06 02:25  dooglus

	* [r848] ETL/_angle.h, ETL/_bezier.h, ETL/_status.h,
	  ETL/_stringf.h: Add my copyright to files I've modified.

2007-10-06 02:25  dooglus

	* [r847] config/build.cfg: Bump the version numbers ready for the
	  coming release.

2007-10-06 02:25  dooglus

	* [r846] README: Add my copyright.

2007-10-05 23:56  dooglus

	* [r844] NEWS: Updated to r843.

2007-09-28 19:28  dooglus

	* [r799] ETL/_angle.h: Replace angle::epsilon with a #defined value
	  instead. I don't know how to define a static member variable in a
	  template header file.

2007-09-28 02:26  dooglus

	* [r793] ETL/_angle.h: Add a new function angle::abs() which
	  returns the absolute (positive) value of an angle.

2007-09-28 02:08  dooglus

	* [r792] ETL/_angle.h: Commented out the deprecated angle type
	  conversion operators. They weren't used anywhere (everything
	  still compiles without them, anyway) and they were preventing the
	  multiplication operators from working. (g++ complains "error: ISO
	  C++ says that these are ambiguous, even though the worst
	  conversion for the first is better than the worst conversion for
	  the second").

2007-09-28 02:08  dooglus

	* [r791] ETL/_angle.h: Move the deprecated type conversion operator
	  prototypes to the end of their class definitions.

2007-09-28 02:08  dooglus

	* [r790] ETL/_angle.h: Fixed a typo - the wrong method was marked
	  as deprecated in angle::cos.

2007-09-28 02:07  dooglus

	* [r789] ETL/_angle.h: Operator '!' is supposed to be true when an
	  angle is 'no rotation'. It was failing for 360 degrees, and also
	  failing due to floating point rounding error. Fixed both of these
	  problems.

2007-09-28 02:07  dooglus

	* [r788] ETL/_angle.h: The zero(), one(), and half() functions
	  weren't documented, and aren't used anywhere, but half() was
	  returning a quarter rotation, and one() was returning a half
	  rotation. Surely they're both meant to return twice that? Fixed
	  accordingly, and commented them.

2007-09-28 02:07  dooglus

	* [r787] ETL/_angle.h: The comments for the inequality comparison
	  operators seemed to suggest that positive rotation is clockwise.
	  In Synfig, 0 degrees is due east, and positive rotation is
	  counter-clockwise. Amended the comments accordingly, and made a
	  comment at the top stating that positive rotation is
	  counter-clockwise.

2007-09-28 02:07  dooglus

	* [r786] ETL/_angle.h: Fix the indentation.

2007-09-28 02:07  dooglus

	* [r785] ETL/_angle.h: Operators == and != were returning that 90
	  degrees != (90+360) degrees, due to floating point rounding
	  errors. Allow an epsilon of difference.

2007-09-28 02:07  dooglus

	* [r784] ETL/_angle.h: The angle comparison code was considering
	  90+359 degrees to be greater than 90 degrees. The comments claim
	  otherwise. Fix the code to correspond with the comments.
	  Similarly for <, >=, and <=.

2007-09-28 02:07  dooglus

	* [r783] ETL/_angle.h: Since angles are stored in radians, we need
	  to add on PI, not 0.5 to rotate by 180 degrees.

2007-09-28 02:07  dooglus

	* [r782] ETL/_angle.h: Angles are stored in radians, not rotations.

2007-09-27 00:31  dooglus

	* [r773] config/build.cfg: Use the http svn repository, not https,
	  because using the https causes svn2cl to hang forever if the
	  server isn't trusted locally. (See Debian #443860)

2007-09-13 14:54  dooglus

	* [r665] test/pen.cpp: Spelling corrections.

2007-09-13 07:36  pabs

	* [r660] NEWS: Add some changes to NEWS

2007-09-12 21:01  dooglus

	* [r659] ETL/_angle.h, ETL/_bezier.h, ETL/_clock_base.h,
	  ETL/_fastangle.h, ETL/_gaussian.h, ETL/_handle.h, ETL/_smach.h,
	  ETL/_surface.h, ETL/_value.h: A few more typos.

2007-09-12 20:36  dooglus

	* [r658] ETL/_stringf.h, ETL/etl_config.h: Since the last change
	  will require a recompilation of pretty much everything, I took
	  this opportunity to fix some spelling mistakes that were annoying
	  me.

2007-09-12 20:14  dooglus

	* [r657] ETL/_stringf.h: Fix 1793306: dirname() doesn't work on
	  absolute paths. Also fixed basename(). Fixed a potentially
	  infinite loop, and a couple of other small changes.

2007-09-08 16:33  dooglus

	* [r634] ETL/_status.h: Added a #warning about some bad code in an
	  unused source file, just in case it ever gets used.

2007-09-08 16:02  dooglus

	* [r633] ETL/_status.h, ETL/status: Mark ETL/status and
	  ETL/_status.h as unused.

2007-09-08 15:33  dooglus

	* [r631] ETL/_mutex_null.h: Prevent compiler warnings about unused
	  parameters.

2007-09-07 20:59  dooglus

	* [r627] ETL/_bezier.h: This looks like a typo. I don't think this
	  function is ever used, anyway (other than by a few other
	  functions which are never used (other than by a few functions
	  that ...)).

2007-06-20 12:24  pabs

	* [r530] NEWS: Fix SVN revision number of the new release

2007-06-20 12:23  pabs

	* [r529] Makefile.am: Fix SVN tagging targets in the Makefile

2007-06-20 12:19  pabs

	* [r526] NEWS: Releasing ETL 0.04.09 today

2007-06-12 09:57  pabs

	* [r519] config/build.cfg: Bump version number to 0.04.09.
	  Hopefully the last revision before the release.

2007-06-10 20:30  pabs

	* [r507] Makefile.am: Remove the generated COPYING and INSTALL
	  files on maintainer-clean

2007-06-10 20:16  pabs

	* [r504] Makefile.am, bootstrap: Generate the ChangeLog at
	  bootstrap time, make the ChangeLog Makefile target more robust

2007-06-04 00:00  pabs

	* [r499] Makefile.am: Add a rule to create the ChangeLog from SVN

2007-06-03 23:58  pabs

	* [r498] Makefile.am: Don't forget to delete doxygen.cfg and
	  ETL.pc.in on maintainer-clean (generated files)

2007-06-03 23:57  pabs

	* [r497] test/Makefile.am: CXXFLAGS is for users, use AM_CXXFLAGS
	  instead

2007-06-03 23:52  pabs

	* [r494] bootstrap: Change automake invocation to use symlinks and
	  use the stricter gnu standards

2007-06-02 06:52  pabs

	* [r489] ETL/Makefile.am, test/Makefile.am: Release preparations:
	  add some files to the tarball that were previously missed

2007-04-23 09:34  dooglus

	* [r481] ETL/_bezier.h: Fix 1672033: when deciding which curve we
	  are closest to, ignore the very ends of each curve. This allows
	  us to better decide between 2 curves which end in exactly the
	  same place.

2007-04-18 09:14  dooglus

	* [r472] ETL/_bezier.h, NEWS: Added a slower but more accurate
	  find_closest() routine to _bezier.h. Added a parameter to the
	  curve gradient layer to optionally use the new code.

2007-04-12 15:10  dooglus

	* [r465] ETL/_smach.h: Typos.

2007-04-10 13:15  dooglus

	* [r450] bootstrap: Fixed a typo.

2007-04-07 21:55  dooglus

	* [r443] ETL/_surface.h: Fixed typo.

2007-04-07 01:44  pabs

	* [r442] ETL/_stringf.h: Fix typo in r428 (csdlib -> cstdlib)

2007-04-06 11:01  pabs

	* [r429] AUTHORS: Add dooglus to the AUTHORS file

2007-04-06 10:54  pabs

	* [r428] AUTHORS, ETL/_stringf.h: Fix Debian 417897: causes synfig
	  FTBFS in gcc 4.3 due to not including all the required headers.
	  Patch by Martin Michlmayr

2007-03-31 08:02  dooglus

	* [r397] ETL/_pen.h: subptr() should subtract from the pointer, not
	  add to it.

2007-03-29 03:37  pabs

	* [r390] NEWS: Update NEWS file for the next release

2007-03-16 18:35  dooglus

	* [r350] ETL/_smach.h: Spelling correction.

2007-03-16 08:21  dooglus

	* [r340] ETL/Makefile.am, ETL/angle, ETL/bezier, ETL/boxblur,
	  ETL/calculus, ETL/clock, ETL/fastangle, ETL/fixed, ETL/gaussian,
	  ETL/handle, ETL/hermite, ETL/ipc, ETL/misc, ETL/pen, ETL/random,
	  ETL/rect, ETL/ref_count, ETL/smach, ETL/smart_ptr, ETL/spline,
	  ETL/status, ETL/stringf, ETL/surface, ETL/thread, ETL/trivial,
	  ETL/value, Makefile.am, bootstrap, config/ETL.m4,
	  config/configure.ac, test/Makefile.am: Enabled $Id$ expansion.

2007-03-16 05:18  pabs

	* [r337] ETL/Makefile.am, ETL/angle, ETL/bezier, ETL/boxblur,
	  ETL/calculus, ETL/clock, ETL/fastangle, ETL/fixed, ETL/gaussian,
	  ETL/handle, ETL/hermite, ETL/ipc, ETL/misc, ETL/pen, ETL/random,
	  ETL/rect, ETL/ref_count, ETL/smach, ETL/smart_ptr, ETL/spline,
	  ETL/status, ETL/stringf, ETL/surface, ETL/thread, ETL/trivial,
	  ETL/value, Makefile.am, bootstrap, config/ETL.m4,
	  config/configure.ac, test/Makefile.am: Enable more $Id$
	  expansion.

2007-03-16 00:37  dooglus

	* [r334] ETL/_angle.h, ETL/_bezier.h, ETL/_bezier_angle.h,
	  ETL/_bit_rotate.h, ETL/_boxblur.h, ETL/_bspline.h,
	  ETL/_calculus.h, ETL/_clock_base.h, ETL/_clock_gettimeofday.h,
	  ETL/_clock_system.h, ETL/_clock_win32hpcount.h, ETL/_condition.h,
	  ETL/_curve.h, ETL/_curve_func.h, ETL/_fastangle.h, ETL/_fixed.h,
	  ETL/_gaussian.h, ETL/_handle.h, ETL/_hermite.h, ETL/_misc.h,
	  ETL/_mutex_null.h, ETL/_mutex_pthreads.h, ETL/_mutex_win32.h,
	  ETL/_pen.h, ETL/_random.h, ETL/_rect.h, ETL/_ref_count.h,
	  ETL/_rwlock.h, ETL/_smach.h, ETL/_smart_ptr.h, ETL/_status.h,
	  ETL/_stringf.h, ETL/_surface.h, ETL/_thread.h, ETL/_trivial.h,
	  ETL/_value.h, test/angle.cpp, test/benchmark.cpp, test/clock.cpp,
	  test/fixed.cpp, test/handle.cpp, test/hermite.cpp, test/pen.cpp,
	  test/random.cpp, test/smach.cpp, test/smart_ptr.cpp,
	  test/spline.cpp, test/stringf.cpp, test/surface.cpp,
	  test/value.cpp: Enable $Id$ expansion.

2007-03-15 10:26  dooglus

	* [r316] ETL/_misc.h: \fixme isn't accepted outside a function
	  definition:
	  
	  Warning: Found unknown command `\fixme'

2007-03-14 21:19  dooglus

	* [r315] ETL/bezier, ETL/boxblur, ETL/calculus, ETL/clock,
	  ETL/fastangle, ETL/fixed, ETL/gaussian, ETL/handle, ETL/hermite,
	  ETL/ipc, ETL/misc, ETL/pen, ETL/random, ETL/rect, ETL/ref_count,
	  ETL/smach, ETL/smart_ptr, ETL/spline, ETL/status, ETL/stringf,
	  ETL/surface, ETL/thread, ETL/trivial, ETL/value: Add a line at
	  the start to tell GNU Emacs that this is a C++ source file.

2007-03-13 15:26  pabs

	* [r311] config/project.spec.in: Fix some URLs

2007-03-12 22:47  dooglus

	* [r303] ETL.pbproj/etl_profile.h, ETL/_angle.h, ETL/_bezier.h,
	  ETL/_boxblur.h, ETL/_bspline.h, ETL/_calculus.h,
	  ETL/_clock_base.h, ETL/_clock_gettimeofday.h,
	  ETL/_clock_system.h, ETL/_clock_win32hpcount.h, ETL/_curve.h,
	  ETL/_curve_func.h, ETL/_fastangle.h, ETL/_fastangle_tables.h,
	  ETL/_fixed.h, ETL/_gaussian.h, ETL/_handle.h, ETL/_hermite.h,
	  ETL/_misc.h, ETL/_mutex_null.h, ETL/_pen.h, ETL/_random.h,
	  ETL/_rect.h, ETL/_ref_count.h, ETL/_smach.h, ETL/_smart_ptr.h,
	  ETL/_stringf.h, ETL/_surface.h, ETL/_thread.h, ETL/_trivial.h,
	  ETL/_value.h, ETL/etl_config.h, test/angle.cpp, test/clock.cpp,
	  test/fixed.cpp, test/handle.cpp, test/hermite.cpp, test/pen.cpp,
	  test/random.cpp, test/smach.cpp, test/smart_ptr.cpp,
	  test/spline.cpp, test/stringf.cpp, test/surface.cpp,
	  test/value.cpp: Removed trailing whitespace.

2007-03-11 08:02  pabs

	* [r295] test/hermite.cpp: Remove unused variable from the hermite
	  test function

2007-03-11 07:55  pabs

	* [r292] config/configure.ac: Don't need to build anything other
	  than a tar.gz

2007-03-11 07:42  pabs

	* [r291] Makefile.am: Fix 1581867: ensure we distribute the licence
	  by adding COPYING to EXTRA_DIST

2007-03-09 05:25  pabs

	* [r275] NEWS: Add SVN version for the 0.04.07 release

2007-02-27 03:37  pabs

	* [r257] README: Don't use Voria in the description, since it no
	  longer exists

2007-02-11 01:44  pabs

	* [r240] AUTHORS: Add an initial attempt at an AUTHORS file

2006-08-14 08:32  pabs

	* [r219] INSTALL: Remove INSTALL file, it isn't useful and can be
	  supplied by autotools

2006-08-14 08:09  pabs

	* [r216] bootstrap: Allow ETL to bootstrap in directories with
	  spaces in their names

2006-08-09 11:41  pabs

	* [r214] README: Add a first try at a README file for ETL

2006-08-06 12:37  pabs

	* [r211] ETL.kdevprj: Wooops, missed .spec versioning in ETL.kdeprj

2006-07-24 11:21  pabs

	* [r208] Makefile.am: Wooops, missed .spec versioning in
	  Makefile.am

2006-07-24 10:59  pabs

	* [r206] bootstrap: Add the NEWS file to the .spec instead of the
	  ChangeLog

2006-07-24 10:52  pabs

	* [r203] bootstrap: Don't add the version to the name of the .spec
	  files

2006-07-24 05:57  pabs

	* [r198] ., ETL, ETL.pbproj, config, config/pkg-support,
	  config/pkg-support/devel-resources, test: Set svn:ignore
	  recursively

2006-07-24 05:31  pabs

	* [r195] config/subs.m4: Disable -ffast-math, since it causes
	  broken code on some platforms

2006-07-24 05:29  pabs

	* [r194] test/spline.cpp: Fix compile error in the spline test due
	  to the clock needing etl::

2006-07-24 05:28  pabs

	* [r193] test/Makefile.am: Disable the spline/value tests since
	  they are broken.

2006-07-24 05:23  pabs

	* [r192] ., .cvsignore, ETL/.cvsignore, config/.cvsignore,
	  test/.cvsignore: Move .cvsignore to svn:ignore property

2006-07-23 13:20  pabs

	* [r189] ETL.pc.in: Remove generated ETL.pc.in

2006-07-23 13:10  pabs

	* [r188] doxygen.cfg: Remove generated doxygen.cfg

2006-07-23 13:08  pabs

	* [r185] NEWS: Add a couple of SVN numbers known to correspond to
	  releases.

2006-05-24 10:45  pabs

	* [r172] ChangeLog: Remove empty ETL ChangeLog (will use svn2cl)

2006-05-24 10:41  pabs

	* [r171] NEWS: Add initial attempt at a NEWS file for ETL

2006-04-24 06:24  pabs

	* [r159] test/Makefile.am: Fix 1475210: allow ETL to be
	  bootstrapped properly

2006-03-30 12:14  pabs

	* [r156] ETL/_surface.h: Change to Andreas Jochens' patch for
	  Debian 358474 and Debian 359690

2006-03-26 07:07  pabs

	* [r154] ETL/_surface.h: Fix 1349630: this fixes the ETL side of
	  the synfig amd64 FTBFS

2006-02-28 01:50  darco

	* [r139] ETL.pc.in, Makefile.am, bootstrap, config/build.cfg,
	  config/configure.ac, doxygen.cfg: Bump version number. Add SVN
	  version to version number. Convert tagstable and tagrelease
	  targets to use SVN.

2006-02-19 10:03  pabs

	* [r125] ETL/_surface.h: Fix 1349630: forgot to #include
	  <algorithm> when using std::min

2006-01-30 07:45  pabs

	* [r121] config/doxygen.cfg.in, doxygen.cfg: Fix 1402909: update
	  doxygen configuration files

2006-01-30 02:51  pabs

	* [r119] ETL/_stringf.h: Fix 1356998: compile error on IRIX

2005-11-09 21:51  darco

	* [r56] bootstrap, config/sdl.m4: Remove SDL macros. Add quoting
	  and cygwin support to ./bootstrap.

2005-11-09 16:25  darco

	* [r52] ETL.pbproj/frameworkfix.cpp, ETL.pc.in,
	  ETL/_clock_gettimeofday.h, ETL/_curve_func.h, ETL/_fixed.h,
	  ETL/_handle.h, ETL/_smart_ptr.h, Makefile.am, config/build.cfg,
	  doxygen.cfg, test/Makefile.am, test/fixed.cpp, test/handle.cpp,
	  test/smart_ptr.cpp: Bump version number. Remove bogus copyright
	  line. Don't distribute the kdevelop project. Add multiplication
	  stuff to the fixed templates. Various fixes for the fixed,
	  curve_func, handle, smart_ptr and clock templates. Fixes for the
	  fixed, smart_ptr and handle tests. Disable the value and spline
	  tests.

2005-10-31 00:04  darco

	* [r33] ETL/_stringf.h: More file path fixes

2005-04-11 23:47  darco

	* [r15] ETL/_stringf.h, bootstrap, test/stringf.cpp: Fixed the file
	  path stuff. Don't show the bootstrap warning when .svn is
	  present.

2005-03-24 20:52  darco

	* [r2] ETL/_misc.h: floor is not needed when casting to int

2005-03-24 18:56  darco

	* [r1] ., .cvsignore, ChangeLog, ETL, ETL-config.in, ETL.kdevprj,
	  ETL.pbproj, ETL.pbproj/darco.mode1, ETL.pbproj/darco.pbxuser,
	  ETL.pbproj/etl_profile.h, ETL.pbproj/frameworkfix.cpp,
	  ETL.pbproj/project.pbxproj, ETL.pc.in, ETL.prj, ETL/.cvsignore,
	  ETL/Makefile.am, ETL/_angle.h, ETL/_bezier.h,
	  ETL/_bezier_angle.h, ETL/_bit_rotate.h, ETL/_boxblur.h,
	  ETL/_bspline.h, ETL/_calculus.h, ETL/_clock_base.h,
	  ETL/_clock_gettimeofday.h, ETL/_clock_system.h,
	  ETL/_clock_win32hpcount.h, ETL/_condition.h, ETL/_curve.h,
	  ETL/_curve_func.h, ETL/_fastangle.h, ETL/_fastangle_tables.h,
	  ETL/_fixed.h, ETL/_gaussian.h, ETL/_handle.h, ETL/_hermite.h,
	  ETL/_misc.h, ETL/_mutex_null.h, ETL/_mutex_pthreads.h,
	  ETL/_mutex_win32.h, ETL/_pen.h, ETL/_random.h, ETL/_rect.h,
	  ETL/_ref_count.h, ETL/_rwlock.h, ETL/_smach.h, ETL/_smart_ptr.h,
	  ETL/_status.h, ETL/_stringf.h, ETL/_surface.h, ETL/_thread.h,
	  ETL/_trivial.h, ETL/_value.h, ETL/angle, ETL/bezier, ETL/boxblur,
	  ETL/calculus, ETL/clock, ETL/etl_config.h, ETL/etl_profile_.h.in,
	  ETL/fastangle, ETL/fixed, ETL/gaussian, ETL/handle, ETL/hermite,
	  ETL/ipc, ETL/misc, ETL/pen, ETL/random, ETL/rect, ETL/ref_count,
	  ETL/smach, ETL/smart_ptr, ETL/spline, ETL/status, ETL/stringf,
	  ETL/surface, ETL/thread, ETL/trivial, ETL/value, INSTALL,
	  Makefile.am, README, bootstrap, config, config/.cvsignore,
	  config/ETL.m4, config/build.cfg, config/configure.ac,
	  config/cxx_macros.m4, config/doxygen.cfg.in, config/pkg-support,
	  config/pkg-support/ETL-devel.info,
	  config/pkg-support/devel-resources,
	  config/pkg-support/devel-resources/License.rtf,
	  config/pkg-support/devel-resources/ReadMe.rtf,
	  config/pkg-support/devel-resources/Welcome.rtf,
	  config/pkg-support/devel-resources/install.sh,
	  config/pkgconfig.pc.in, config/project.spec.in, config/sdl.m4,
	  config/subs.m4, doxygen.cfg, test, test/.cvsignore,
	  test/Makefile.am, test/angle.cpp, test/benchmark.cpp,
	  test/clock.cpp, test/fixed.cpp, test/handle.cpp,
	  test/hermite.cpp, test/pen.cpp, test/random.cpp, test/smach.cpp,
	  test/smart_ptr.cpp, test/spline.cpp, test/stringf.cpp,
	  test/surface.cpp, test/value.cpp: Initial import of ETL