forked from sleuthkit/libewf_64bit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
executable file
·3773 lines (3100 loc) · 123 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
TODO
* sync with experimental version
20130416
* bug fix in libcfile.m4 for building on MingW and Cygwin
* fix in libsmdev for MinGW build
20130402
* changes to zlib.m4 for adler32 detection
* moved README.mingw and README.static to wiki
20130331
* worked on libcdata integration
* updated msvscpp files
* updated codegear files
* sync with experimental version
20130330
* updated dependencies
* updates for libsmdev
* added error tolerance for Logicube image with missing checksum in data section
* code clean up
* worked on libcdata integration
20130302
* updated types.h
* fixed maximum number of segments
20130205
* changes and fixes in debug output
20130128
* worked on sync with experimental version
* docstring changes in pyewf
* fix for corruption scenario
20130126
* fixes in pyewf examples
20130120
* updated msvscpp files
* updated codegear files
* updated pyewf
* worked on sync with experimental version
* replace libmfcache by new libfcache
20130119
* updated configure files
* updated dpkg files
* updated rpm spec file
* updated pyewf - fixes multiple issues
* updated dependencies
* worked on sync with experimental version
* added pyewf/setup.py with thanks to Michael Cohen
20130105
* bug fix for 31th day of the month issue
20121209
* removed memwatch and gettext
20120819
* bug fix for not writing SHA-1 hash
20120603
* bug fix for MinGW in liberror
* updates for zlib-1.2.7
20120504
* bug fix for setting media size of L01 file
20120421
* small changes to dpkg files
20120416
* added fuse destroy function to ewfmount
* bug fix in libewf_utf8_string_day_of_month_copy_to_time_elements
* changes to debug output
20120414
* ewfverify: fixed printing the same segment filename multiple times for CRC errors
* worked on pyewf
* bug fix in libewf_utf16_string_month_copy_from_time_elements
* updated libuna: fix in codepage 932
20120304
* small changes to debug error output
* small changes for error tolerability
* updated libfvalue
20120225
* promoted to stable
20120213
* small changes to ewftools
* pyewf: added -avoid-version to Makefile.am
* updated macosx package maker files
20120212
* update for zlib-1.2.6
* added API functions for file entry data offset, data size and
duplicate data offset
* added file entry flags and media data value functions to ewf.net
* updated libnotify, libodraw, libfvalue, libsmraw
20120209
* small changes
20120208
* added dpkg files
20120122
* bug fix in write finalize
20120118
* updated gettext files
* updated libbfio
* preparations for beta testing
20120111
* updated spec file
20120102
* 2012 update
20111231
* updated libhmac, libsmraw, libsmdev
20111228
* updated libcstring, libuna, libbfio
* updated msvscpp, builder5 and codegear files
20111226
* updated libbfio
20111224
* updated libsystem, libuna, libbfio, libhmac, libfvalue, libodraw
20111221
* small fixes in ewftools
20111208
* worked on dealing with missing segment files
20111207
* worked on dealing with missing segment files
20111205
* worked on ewfrecover
20111204
* updated msvscpp files
* updated builder5 files
* updated codegear files
20111203
* worked on ewfrecover
* code clean in ewftools
* updated libcstring, libsystem
* added libmfcache
20111121
* fixed bug introduced by error tollerance changes
20111120
* updated libfvalue, libmfdata
* worked on error tollerance
20111117
* updated libmfdata
20111115
* code clean up
* updated libmfdata
20111114
* code clean up
* updated array type, list type, tree type
* updated libcstring, libfvalue, libhmac
20111105
* worked on libewf_file_get_file_entry_by_utf8_path and
libewf_file_get_file_entry_by_utf16_path
* changes to ewfmount to deal with file names containing
the path separator character /
20111103
* worked on libewf_file_get_file_entry_by_utf8_path and
libewf_file_get_file_entry_by_utf16_path
* code clean up changed name of file entry item flags and moved it to
definitions
20111101
* small changes
20111031
* updated README.macosx
* added setvbuf
* updated libcstring, libsystem, libuna, libbfio, libfvalue, libhmac
* added windows codepage 932 and 936 support
20111030
* updated configure.ac and m4 files
* updated libhmac, libodraw, libsmraw, libfvalue, libsmdev
* updated tree type
* changes for libfvalue
20111023
* worked on ewf.net
* bug fixes in ewfmount
20111020
* updated README.static
20111017
* worked on ewf.net file entry support
* changes to m4/libuuid.m4
20111016
* added libewf_file_entry_get_offset
* worked on pyewf file entry support
* changed file entry date and time values to 32-bit values
* worked on ewfmount LEV support
* worked on ewf.net file entry support
20111015
* worked on pyewf file entry support
20111011
* fixes in comment in include header
* implemented OSXFuse support
* bug fix for libfuse detection
20111010
* fix in spec file
* ewfmount changed EBADFD into ENODEV
* checked if all functions are checked for
* bug fix in include header macros
20111009
* small fixes in ewfmount
* small changes in configure
20111008
* updated configure.ac and m4 files
* updated libsmdev, libodraw, libsmraw, libhmac
* bug fix in libsystem
* improved session and tracks detection in libsmdev
20111006
* updated configure.ac and m4 files
* bug fix in ewfacuire for handling -w option
20111002
* bug fix for cross compilation
20110926
* updated libuna, libbfio
20110922
* updated README files
20110918
* updated spec file
* added ewfmount.1 man page
* update libsmraw, libodraw, libsmdev
20110914
* prepated temporary libsmdev version
20110908
* added chunk offset grouping after chunk table section write
reduced memory usage during write
20110906
* libsmdev:
- worked on improved session/track support
20110905
* libsmdev:
- worked on improved session/track support
20110904
* pyewf: code clean up
* libsmdev:
- worked on improved session/track support
- reduced IO timeouts
- bug fix for information value strings
20110903
* ewfverify
- fix for verifying empty single files
- added error tollerance for "corrupt" single files
- added support for sparse data
20110901
* updated libsmraw
20110831
* updated libuna, libbfio, libhmac, libfvalue, libodraw, libsmdev
* updated m4/libsmdev.m4
20110829
* bug fix in ewfmount
20110828
* updated libbfio
20110823
* updated libbfio, libfvalue
* worked on ewfmount
20110822
* worked on ewfmount
* updated builder5 files
20110821
* worked on ewfmount
20110820
* updated libhmac, libbfio
20110810
* moved libewf.h include to separate file for tests
* updated README
20110809
* small changes
20110807
* fixed process status in export handle
* fixed error clean up in header values
* fixed delta segment files list clean up
20110806
* worked on improving ewfexport output and error tollerability
* updated libhmac - bug fixes for Solaris build
* fixed ewfexport not detecting ewf formats correctly
* updated libodraw
* improve handling of cached compressed zero byte empty block for older
version of zlib
20110801
* configure clean up
* configure added support for --with-libuna and others
* updated libhmac, bug fix in MD5 fallback functions
* updated .pc and .spec file
* updated manuals
20110731
* code cleanup - worked on TODOs
* updated libmfdata, libsmraw, libsmdev
* added > 2 GiB media and segment file size, and delta file open scenarios
* configure clean up
20110730
* updated README
* code cleanup - worked on TODOs
20110728
* fixed issue in libewf_utf8_string_day_of_month_copy_to_time_elements
* extended glob test for first letter change scenario
* created test file for table2 read (corrupted table)
20110727
* updated function checks for tracks functions
* updated libsmdev
* update in device handle for libsmdev UTF-16 and tracks functions
* libewf now prints header value parse errors in debug mode not verbose mode
* ewftools: fixed status print on abort
20110726
* updated libodraw
* worked on audio track support in sessions section
20110725
* worked on audio track support in sessions section
* updated libodraw
20110724
* updated libhmac
* code clean up
* multiple bug fixes:
- media size not being set for L01
- ewfverify return true while verification in correct
- single file type not being set
- buffer size calculation if exceeds maximum size
- due to re-use of hmac handles
* change seek offset behavior of single file to match POSIX
* added support target path "." in ewfexport
* made additional digest hash type detection more tollerable
* worked on audio track support in sessions section
20110721
* updated libhmac
* fix for SHA1 detection in -d argument
20110720
* updated libhmac
20110719
* updated libhmac
20110718
* updated libhmac
* ewftools: worked on SHA256 support
20110717
* worked on date time value functions
* worked on replacing libewf split values by libfvalue split string
* added ewf_test_get_offset test to ewf_test_read
* fixes to configure for MingW compilation of libhmac
* update msvscpp files
* worked on libhmac
20110716
* worked on date time value functions
* worked on replacing libewf split values by libfvalue split string
20110715
* updated libhmac
* worked on date time value functions
* worked on replacing libewf split values by libfvalue split string
20110714
* worked on replacing libewf split values by libfvalue split string
20110713
* updated libsystem: worked on replacing ->segments by functions
* updated libfvalue
* worked on replacing libewf split values by libfvalue split string
20110712
* info handle: replaced ->segments by functions
* updated libsystem: worked on replacing ->segments by functions
20110703
* worked on libhmac SHA1 fallback implementation
20110630
* worked on libhmac MD5 and SHA1 fallback implementation
20110629
* worked on libhmac MD5 fallback implementation
20110628
* changed direction of >= in ewftools to <=
* updated manuals
* fix for EWF_MAXIMUM_OFFSETS_IN_TABLE being applied to the ENCASE6 format
instead of EWF_MAXIMUM_OFFSETS_IN_TABLE_ENCASE6
20110627
* updates to libhmac and configure.ac
20110626
* refactored ewftools to use libhmac
* code clean up
* ewftools: worked on SHA256 support
* updated msvscpp, codegear and builder5 files
20110625
* updated autoconf/make files
* changed INTLLIBS to LIBINTL
* changes for: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
* updated libmfdata, libfvalue, libuna, libbfio, libodraw, libsmdev, libsmraw
* code clean up
* worked on libhashf to wrap message digest hash functions
20110623
* code clean up in info_handle
20110610
* small changes to debug output
* Changes for LVF support
* added single file entry type function
20110531
* code clean up: digest_context
* updated common
* updated libfvalue
20110530
* updated libfvalue
20110523
* merged 20110519 changes - libmfdata fix
20110512
* worked on issue writing smart, no compression, chunk size 2048
- changed behavior to write at least 1 chunk even if chunk size > maximu segment file size
20110510
* worked on write finalize issue
- added ewfacquirestream multi segment test
- fixed issue in libewf_write_io_handle_finalize_write_sections_corrections
* small change to multi segment ewfacquire test
* updated libodraw
20110509
* small changes
20110508
* updated libodraw
* fix for retrieving empty UTF16 file entry name
20110504
* small changes
20110501
* updated include/codepage.h
* fixes in debug output
* changes for FTK imager format:
recent versions of FTK imager now longer force media type to be 0x01
and size of the last section is no longer set
20110427
* fix for LOCALE_RETURN_NUMBER clash on Vista/Win7
20110411
* fix for LOCALE_RETURN_NUMBER clash
20110329
* fix for initial segment file rewrite
* added split ewfacquire test
20110322
* updated configure.ac and libsmdev for improved STORAGE_BUS_TYPE detection
20110320
* worked on l17n
20110319
* added INTLLIBS to ewftools
20110312
* updated libuna, libbfio, libsmdev, libsmraw, libodraw
* msvscpp added VSDebug build option
20110306
* updated libmfdata
20110305
* worked on table2 backup data range support
20110303
* updated libbfio, libsmdev, libsystem, libcstring
- some changes for Cygwin WINAPI support
* worked on libmfdata integration
- update to clone function for groups
- moved data range values back into initialize
* fixes to ewftools
* fixes to test programs
* worked on audio track support
- worked on write support
20110302
* worked on audio track support
- worked on read support
20110218
* worked on audio track support
- worked on read support
20110214
* worked on libmfdata integration
- worked on backup data range support
20110211
* updated libodraw
* synced with alternative branch
- updates for builder5 and codegear
20110210
* worked on libmfdata integration
- worked on backup data range support
20110209
* updated libodraw
* worked on libmfdata integration
- removed segment table data file index lookup
- worked on backup data range support
* imaging handle
- correction of upper bound of error granularity in prompt
- correction of header values retrieval on resume
* fix for empty-block compression initialization
20110208
* worked on libmfdata integration
- removed segment table data file index lookup
20110204
* updates for msvscpp
20110203
* worked on libmfdata integration
* worked on ewftools
- detailed info is no longer printed on abort
- removed restrictive media size safe guard for optical discs from ewfacquire
* updated libodraw
20110202
* worked on libmfdata integration
20110201
* worked on libmfdata integration
* updated libsystem
20110128
* worked on libmfdata integration
20110127
* worked on libmfdata integration
20110126
* worked on libmfdata integration
20110125
* worked on libmfdata integration
20110123
* worked on libmfdata integration
20110122
* worked on libmfdata integration
* worked on debug output to match other libraries
20110121
* worked on read/write tests
* ewfacquire and ewfexport now allow for media size of 0 (empty)
* libewf: code clean up
* worked on libmfdata integration
* read/write fix for offset drift after write
20110120
* worked on ewf.net
20110118
* imaging handle
- fix for missing default maximum segment (file) size
* ewfacquirestream:
- fix for default evidence information
* worked on ewf.net
20110117
* updated libsystem, libuna, libbfio, libsmdev, libsmraw, libodraw
20110114
* updated libuna, libbfio, libodraw, libsmdev, libsmraw
* updated check for dependent functions
* ewfacquire: corrected behaviour of -g
* ewftools: worked on flush of md5 and sha1 contexts on error
* worked on ewf.net
20110113
* updated macosx files
* updated test scripts for SunOS 5.11 support
* ewftools: code clean up
20110112
* updated libsystem
* ewftools: code clean up
* tests: code clean up
* ewfverify: print filename with path
* completed libewf_single_file_entry_get_utf16_hash_value_md5
* added test for ewfexport of single files
20110111
* updated libsmraw, libodraw
* updated ewf.net
* single file entry:
- added get MD5 hash function
* renamed wipe/clean buffer to zero buffer
* ewftools: code clean up
* ewfverify: worked on L01 verification
* MD5 hash of single file entry is now turned into lower case by library
20110110
* updated libuna, libbfio, libfvalue, libsmraw
* code clean up
* export handle fixed memory leak for MD5/SHA1 context
* cariage return fixes in single files
* remove ewfalter from spec file
* libcstring fix for FreeBSD
* correction for access flags
* added system codepage functions
* worked on write resume improvements
- resume in table2 section
20110109
* updated libodraw
20110108
* updated common
* updated libcstring, libuna, libbfio, libsmraw, libsmdev,
* updated open_close.c example
20110106
* updated libodraw, libsmdev, libsmraw
* ewftools: code clean up
* ewftools: fixed spelling error in unsuported => unsupported
* ewfacquire: worked on optical disc RAW image support
* ewfacquire: bug fix for setting number of error retries
* test: worked on truncate equivalent
* test: code clean up
* test: added acquire of optical disc RAW images test
20110104
* updated libfvalue, libsmdev, libsmraw, libodraw
* fixed issue in file entry introduced in 20101025
* device handle added abort for libodraw
20110103
* added restriction for calculated section header next to match stored
* 2011 update
* bug fix in clone single file entry
20110102
* worked on error tollerance
20101221
* updated libodraw, libsmraw
* ewftools: adjustment of last sector value in output, no longer included in range
* ewftools: added support for 16 and 32 sectors per chunk
20101220
* fix for linking with debug output on Cygwin
* updated libodraw
* updated ewfinfo manual, added -f option
20101219
* updated libcstring, libbfio, libfvalue, libmfdata, libsystem, libsmraw,
libsmdev, libodraw
* code clean up
20101218
* updated libodraw
20101217
* renamed libodtoc to libodraw
* updated libodraw
* configure fix for platforms without libdl
* updated test scripts for FreeBSD support
* updated msvscpp, codegear and builder5 project files for libodraw
20101216
* code clean up
* worked on clone handle
* updated libbfio, libfvalue, libsmraw
* optimization of read loop
* ewfx added safeguard for long WINAPI timezone names
20101215
* worked on implementing DFXML patch by S. Garfinkel
* removed parsing of system_date from xheader
20101214
* code clean up in libewf and ewftools
* updated libbfio, array type, list type, sector list
* worked on clone handle
* worked on implementing DFXML patch by S. Garfinkel
20101213
* fixes for bugs and anoyances in ewftools
* code clean up in ewftools
20101209
* updated ewfacquire resume test to deal with missing truncate
20101208
* code clean up
* updated libsmraw, fix in segment file extension
* fix in ewfexport regarding raw output
20101207
* fixed inconsistency in media type in device handle for file-based input
* updated common, array type, list type, sector list, liberror, libnotify,
libsystem, libuna, libbfio, libmfdata, libsmraw, libsmdev
* added automatic detection of mingw and apply --enable-winapi by default
* code clean up
20101201
* code clean up
* updated libbfio
* updated sector list
20101119
* worked on removing snprintf from liberror
this function has inconsistent cross-platform behaviour
* updated libfvalue, libodtoc, libsmdev
* fixed bug in device handle session handling
20101115
* updated libbfio, libsmdev
* removed 0 return value from get_acquiry_error, get_checksum_error,
get_session functions, it had not meaning
* code clean up
20101113
* textual changes
* updated libsmraw, libsmdev
* ewfacquire: worked on TOC file support for optical discs
- added libodtoc
20101111
* updated libfvalue
20101108
* write finalize now creates segment file if media size is 0 and no data was
written
* updated libbfio, libsystem
* fix to format detection for empty EWF file
20101105
* worked on libewf .net wrapper ewf.net
* added const buffer of write functions
* created libewf.rc that is generated from libewf.rc.in
* added zlib.rc and libewf.rc to msvscpp projects
* bug fix in imaging handle due to code clean up
20101104
* worked on libewf .net wrapper ewf.net, based on smraw.net
* updated libbfio, libmfdata, libsmraw
* configure: added option to disable GUID/UUID support for static build
* added README.static
20101102
* updated libbfio
* worked on file pre-allocate support, posix_fallocate does not provide the
desired results
* updated liberror
20101029
* worked on file format session section
* updated debug output
* libewf now correct the first session sector offset
on read to 0
on write to 16, only if value is 0, to mimic EnCase like behaviour
* ewfacquirestream added -P option to set bytes per sector
* worked on ewfacquire, ewfacquirestream and imaging_handle code clean up
* worked on write chunk test
* updated libbfio
* worked on file pre-allocate support
20101028
* worked on ewfacquire, ewfacquirestream and imaging_handle code clean up
* worked on ewfexport and export_handle code clean up
20101027
* added fix for liberror WINAPI %s to %S conversion issue
20101026
* updated configure.ac
* updated include/types.h
* worked on ewfacquire, ewfacquirestream and imaging_handle code clean up
* fixed header values mix-up for operation system and software version
introduced in 20100719
20101025
* worked on automated tests
- added ewfacquire resume test
* worked on TODOs
* updated array type
* updated libfvalue, libsmraw
* moved xheader and xhash section reading into libfvalue
* added support for 5 value xheader date/time value
* fix for EWFX date/time value missing timezone introduced in 20100719
* fix in date/time string generation for timezone description
* worked on ewfacquire code clean up
20101022
* worked on automated tests
* removed dpkg files
* ewfexport: reactivated DISABLED, fixed export in different chunk size for
low level functions
20101021
* worked on automated tests
* changed compression_type into compression_level, libewf will return
compression_level if compression_type is requested
* small fixes in error notification
* added check for chunk data size not equal to media data size as specified in
volume section
20101020
* worked on automated tests
20101019
* validated configure functions checks of: libuna, libbfio, libsmdev,
libsmraw, libfvalue, libmfdata
* worked on automated tests
- moved existing tests into autoconf test framework
* ewfacquirestream will now also default to encase6 for encase1 format
* removed ewfalter from msvscpp project files
* removed ewfalter from automake files
* moved ewfalter to ewf_test_read_write
* updated libsmraw
* ewfacquire: fixed missing default maximum segment size in unattended mode
* ewfexport: fixed missing default maximum segment size in unattended mode
20101018
* renamed libewf_handle_[gs]et_segment_file_size
* worked on write beyond media size
20101017
* ewfacquire now allows 0 byte input file
* fixed number of sector rounding errors in output
issue only affects media sizes which are a non-sector multitude
* worked on automated tests
- improved glob test
* renamed libewf_handle_[gs]et_segment_file_size
20101015
* added missing types to error include header
* fix for incorrect session information
20101014
* updated codegear project files
* updated liberror, libbfio, libmfdata, libsmraw
* worked on pyewf
- fixed multiple bugs
- added error handling
- removed stub of pyewf_set_notify_values
- implemented pyewf_glob
* added seek test
* fixed complex seek scenario
20101013
* worked on optical media session detection for Linux
* fixed bug in header string generation function
* updated libsmdev, libbfio
* added static codegear project files
20101012
* updated libsmdev
* worked on optical media session detection for Linux
20101008
* updated libbfio, libsmdev
* replaced sector table by sector list
20101007
* updated libbfio, libsmdev
20101005
* remerged 20101003 changes with 20101002 due to error in bzip2-ed tar file
* updated codegear files
* updated builder5 files
* worked on UTF-16 functions
* fixed small memory leak in error on open
* fixed bugs in date time values formatting function
* ewfexport added exporting notification for files export
20101003
* worked on UTF-16 functions
20101002
* worked on UTF-16 functions
20100930
* worked on UTF-16 functions
* code clean up
* updated msvscpp files
* fix for non-initialized session data
* worked on UTF-16 debug output
20100929
* added open/close examples
* worked on UTF-16 functions
20100928
* updated liberror, libnotify, libsystem, libbfio, libfvalue, libsmraw
* worked on UTF-16 functions
20100908
* code clean up
* added single file entry date/time functions to the API
20100907
* updated libbfio
* fixed read beyond media size issue
* ewfinfo fixed issue handling empty extents
* updated macosx project file
* updated msvscpp files
* updated codegear files
20100807
* fixed errors introduced by libsmraw update in device handle
20100806
* updated builder5 files
* updated libbfio, libsystem
20100805
* worked on gettext support
* updated array type
* updated libcstring, libsystem, libuna, libbfio, libfvalue, libmfdata,
libsmdev, libsmraw
* code clean up
* worked on pyewf
* updated msvscpp and codegear files