forked from hasse69/rar2fs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
1531 lines (952 loc) · 50.1 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
rar2fs ChangeLog file.
2016-09-05 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Release v1.23.1
* Fixed another corner case in volume count logic
2016-09-04 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Release v1.23.0
* Fixed seek length issue
The fix for [rar2fs #55] introduced a new problem resulting
in too few volume files being searched.
* Add full support for volumes numbered from 0
2016-08-31 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #55]
Added support for .NNN file naming scheme.
2016-07-14 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #47]
Fixed a few more corner cases hit in fs loops.
2016-07-05 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #53]
Fixed a divison by zero problem when volume size becomes
wrong due to corrupt archives.
2016-06-26 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #51]
Use sys/sysmacros.h for major/minor/makedev
(patch from vapier/master)
2016-04-29 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #48]
Fixed a compilation issue with GCC6
(thanks to jyhpsycho for providing the patch).
2016-04-07 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed broken detection of ISO files.
* Fixed a PRIu64 format error in debug builds.
2016-02-17 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #45]
Fixed a problem with missing detection of RAR_SMP for
libunrar5 when not compiling using autotools.
2016-02-10 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added options --relatime and --relatime-rar.
* Removed page_size dependency.
2016-01-08 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.22.0
2015-12-23 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #42]
Fixed additional issues with offset calculations for both
legacy and RAR5 volume archives in store mode.
* Removed the DLL extensions RARGetMainHeaderSize() and
RARGetMarkHeaderSize() since they are no longer needed.
* Updated file cache structure.
* Updated copyright headers.
2015-12-20 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #43]
Replaced use of RARHeaderData with RARHeaderDataEx to allow
for longer filenames than 260 characters.
2015-12-18 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #42]
Fixed a header size calculation error for RAR5 volumes
when using libunrar v5.30 beta 5 (5.3.6) and later.
2015-11-29 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fix wrong path being used in utimens
2015-08-28 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.21.0
* Completely remove use of pthread_exit()
2015-08-02 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Built and tested against UnRAR source 5.30 beta 1 (5.3.1)
This should resolve issue [rar2fs #40]
2015-01-15 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed a crash when using the --exclude option.
2014-09-19 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #37]
Fixed a potential memory leak when compiling against
libunrar versions prior to 4.2.0.
* Fixed a potential memory leak in the collect_files()
function. This function is only used when mounting
single RAR archives which means it is rather harmless.
* Simplified code in function dir_entry_add_hash().
2014-07-16 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Changed implementation of utimens
* [rar2fs #35]
Fixed a problem with RAR5 stats that were incorrectly
inherited for file reference links.
2014-03-19 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.20.0
* Turned off support for block special device mounts other
than for Linux platforms. It does not make much sense trying
to support it any where else due to possible read alignment
restrictions.
2014-03-18 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Built and tested against UnRAR source 5.10 beta 1 (5.1.1)
2014-03-17 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #34]
Fixed a problem with old style archives split into more
than 101 files.
2014-03-16 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Now returning "No such file or directory" instead of
"Input/output error" when trying to read information
for a file outside an archive or which does not exist
at all (libunrar5 only).
* Fixed an issue when retrieving file information (#info)
that could have resulted in an infinite loop.
* Fixed an issue with resolving symbolic links for
legacy archives in combination with libunrar5.
2014-03-08 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Corrected some issues that caused compilation failures
for UnRAR source 4.1.x.
2014-03-07 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Corrected a problem seen on e.g. FreeBSD for which closedir()
was called with a NULL pointer resulting in a crash.
2014-03-06 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #31]
Corrected some compilation errors on FreeBSD (and also other
platforms that sets HAVE_SETXATTR).
2014-03-02 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Mounting block special files on Linux can now benefit from
fmemopen() when supported.
2014-02-25 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Enabled syslog support
2014-02-24 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #22]
Now may fall back to the old workaround from 1.19.2 that
should be working also for (some!?) uClibc versions of
fmemopen().
2014-02-23 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Corrected some additional problems with the solution
for issue #22.
* Added support for presenting high-resolution time stamp in
RAR5 archives (thanks to jyhpsycho for the initial patch).
Legacy archives still require a new version of UnRAR source
before it can be enabled.
2014-02-23 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #28]
Fixed problem with mounting a block special file that
resulted in a crash due to incorrect use of mmap() and
fmemopen().
2014-02-21 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added a missing check for errors from fmemopen()
2014-02-21 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #29]
Fixed a minor calculation error in the file time stamp
'seconds' part as provided by libunrar (MS-DOS time format).
* Removed 'INSTALL' from SVN trunk
2014-02-14 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.19.8
2014-02-07 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Disabled automatic switch to direct I/O mode.
* Tweaked some of the more fine grained "hacks" to improve
support for compressed archives.
* Now supports 'flag_nullpath_ok' and 'flag_nopath'
(FUSE >= 2.9) in fuse ops.
2014-02-04 Hans Beckerus <hans.beckerus#AT#gmail.com>
* The race condition in the I/O buffer has been identified and
the lock utilization has been redesigned accordingly to
minimize lock contention.
* Added check for __sync_synchronize()
2014-02-03 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Changed use of the FUSE 'keep_cache' flag
* Removed the attempt to optimize the lock contention level
in the I/O buffer. Seems to have opened up for additional
race conditions. When CPU is really needed lock contention
should be close to none anyway.
2014-02-02 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.19.5
2014-02-01 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #27]
Fixed a problem with seek length not being handled properly
when mounting a single archive split into volumes.
2014-01-31 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #25]
Added some mutex locks to take care of the race conditions
that were discovered in the I/O buffer.
2014-01-29 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #24]
Added support for the 'Save identical file as references'
feature in RAR5 archives.
2014-01-28 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.19.2
* [rar2fs #22]
The fix for this issue (released in 1.19.1) did not
work properly for RAR5 archives.
2014-01-14 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.19.1
* [rar2fs #22]
Corrected an issue with "RAR inside RAR" in combination
with libunrar5 and lack of support for fmemopen()
(common for e.g. many uClibc based systems).
2014-01-13 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Validation of UnRAR source version did not work
as expected.
2014-01-06 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.19.0
2013-11-11 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #20]
Corrected some issues in configure.ac since it failed to
properly configure the package for static linkage.
2013-11-04 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #19]
Added a missing close of the handle obtained when mounting an
archive instead of a directory. Besides the fact that it should
not be left open, it seems to have also affected the behavior of
libunrar for RAR5 archives in such a way that the extraction
process stopped working completely.
2013-10-26 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Now using PRIu64 (C99) when printing 64-bit values
2013-10-18 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed an error that caused failures to recognize the
option '--iob-size'.
2013-10-18 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Redesigned handling of encrypted archives completely.
Now using UnRAR library callback API to set password.
* A password can now be provided in wide-character format.
* Password files may now be prefixed with a '.' to hide it
from simple list operations in traditional UNIX style.
rar2fs(1) man page updated accordingly.
* Trying to access a file that is encrypted and for which
no valid password is provided will give EPERM.
* Removed option '--no-passwd' since there is no
longer a small performance penalty involved by having
this support enabled for non-encrypted archives.
This option was removed from the rar2fs(1) man page
since long time back.
* Now taking better use of the provided methods
in UnRAR library API when listing archives.
* Minor improvements in the handling of old style
(.rNN) volumes.
2013-10-10 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #17]
Corrected a problem with password protected archives that
resulted in a crash when files were encrypted but file names
were not.
2013-09-25 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.18.0
* Fixed a problem seen on eg. Debian 3.1 for which
fuse_main() crashed when called with a NULL
pointer instead of a valid fuse_operations struct.
2013-09-18 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added a second mount attempt in case fuse is throwing
an error due to missing support for option -osubtype.
The second time the mount is attempted without the
option added internally.
2013-09-18 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Corrected a version check error resulting in a
crash when trying to run a rar2fs version compiled
using UnRAR source 5.0.11 or later.
2013-09-18 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Replacing -Wextra with the deprecated -W for old
versions of gcc
2013-09-17 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added check for existence of function fuse_version()
* Added check for -Wextra support by compiler
2013-09-14 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added proper check if back-trace functions are
provided as a separate library. Lack of this check
resulted in build failures on FreeBSD.
2013-09-04 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed a broken version check for the official release
(non beta) of UnRAR source 5.0.x.
2013-08-10 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed a time (DST) calculation bug
* Replaced the Unicode to/from UTF-8 translation
function(s)
* Prepared the code for using iconv.
Currently not enabled. Not sure it will ever be.
* Deleted file(s): utf8.h, utf8.c
2013-08-08 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed a bug when identifying host OS for
RAR5 archives.
* Minor code clean-up and bug fixes in the
DLL extensions for RAR5 archives.
2013-08-07 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Updated old build support files
* Prepared the build environment for detecting the
availability of iconv. Once in place it should
most likely replace the current UTF-8 conversion
routine.
* Externally filesystem entries are now being
translated to UTF-8 irrespective of what current
process locale is set to. Internally Unicode is
still used when applicable.
* New file(s): utf8.h, utf8.c
2013-08-06 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed a small bug that resulted in a stale
mount point even if a mount option was not
actually accepted.
* Added support for UNIX style symbolic links in
RAR5 archives (EXPERIMENTAL).
2013-08-05 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added support for UNIX style symbolic links in
RAR4 (and earlier) archives. RAR5 support still
needs some further investigation.
2013-08-05 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed an error in configure.ac when resolving
git HEAD that resulted in build failures.
2013-08-04 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added a new feature that allows presentation of file
information inside RAR archives in technical format
(similar to 'unrar lt'). Eg. if there is a file named
'foobar' inside an archive it can be listed using
'cat foobar#info'. This is a replacement for both the
hard link count hack (compression method) *and* extended
attributes. Both which are still available when ever
applicable.
Note that this new feature is included only when
compiled/linked towards UnRAR source v5.x.x or later.
* Fixed a minor bug in the extended attributes that caused
wrong compression method to be presented for
"rar inside rar" files.
* Fixed a problem with MAP_FAILED not being defined if
mmap(2) is not supported (very rare).
2013-07-29 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added compression method as an extended attribute
(plus a few more for debug purposes).
For systems that does not provide the extended
attribute (xattr) system calls, compression method
is still provided as the hard link count of regular
files.
2013-07-28 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added support for creating symbolic links.
* Fixed an old bug that allowed files on the underlying
file system to be moved/renamed and potentially
"hiding" files inside RAR archives.
2013-07-03 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.17.2
2013-06-26 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Updated SVN revision check in configure.ac to work
also for later versions of svn for which
.svn/entries does not provide sufficient information.
2013-06-24 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed a problem in configure.ac that would result
in newer versions of g++ to fail some link tests.
This would in turn cause incorrect switches to be
passed to the compiler resulting in failure to
display RAR archive/folder contents in combination
with UnRAR source v5.x.x.
2013-06-05 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed a potential bug when determining file types.
Only affects RAR5 archives created on UNIX type
systems.
2013-05-26 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.17.0
2013-05-21 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Built and tested against UnRAR source v5.0.4
2013-05-16 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed broken pre-open logic
* Updated the pre-open logic to better handle RAR5
* Minor code re-structuring
2013-05-10 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added full support for RAR1.5 format.
* Minor code clean-up
2013-05-09 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added creation of $(DESTDIR)/$(sbindir) in
Makefile.am before attempting to install the
mount helper utility soft-link.
Thanks to ssuominen for the patch.
* Fixed a memory corruption bug when using libunrar5
in combination with volume name lookup causing
intermittent crashes.
2013-05-08 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Replaced RAR_EXTRACT with RAR_TEST in calls to
RARProcessFile(). The wrong behavior when using
RAR_TEST has been fixed in UnRAR source v5.0.2.
* Added a missing call to RARFreeArchive()
2013-05-08 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Removed an incorrect assert()
* Fixed a compilation problem introduced in last version
for UnRAR source releases earlier than v5.0.x
2013-05-07 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed a bug in the volume file number and offset
calculation for RAR5 archives in store mode.
2013-05-06 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Built and tested against UnRAR source v5.0.2.
This update requires a new invocation of autoreconf
to properly update the configure script and Makefile(s).
This should resolve issue #14.
* Fixed a few issues with "rar inside rar" that could
have resulted in some files not being detected properly.
* Removed some code from the unrar library extension
that was no longer needed.
2013-04-16 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed a minor compilation warning discovered on a
SLED 11 64-bit platform.
* Added improved detection of corrupt RAR file headers.
This should resolve issue #13.
2013-04-12 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added extraction of git commit hash when cloned
from github.com (requires autoreconf)
* Split of FUSE functions
2013-04-12 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Replaced the deprecated AM_CONFIG_HEADER with
AC_CONFIG_HEADERS in configure.ac
2013-03-17 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Second try to correct the Makefile.am error as reported
in issue #12.
2013-03-13 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added an un-install hook in Makefile.am to make sure
also the mount helper/script is removed when doing
"make un-install".
2013-03-13 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Corrected an error in the install hook in Makefile.am.
This should resolve issue #12.
2013-03-12 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Improved the file extension matching that is now
less case sensitive.
2013-03-02 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed an issue with some archives that contained
digits in the name were incorrectly identified as
being part of a volume.
2013-02-23 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.16.0
2013-02-17 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added option '--flat-only' that replaces the now
obsoleted option '--seek-depth=n'
rar2fs(1) man page updated accordingly.
2013-02-16 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed a problem with some options not being possible
to change if initially assigned a default value.
* Changed to use a fixed file count for '--preopen-img'
in combination with old style volume naming convention.
2013-02-08 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added option '--no-expand-cbr' that can be used
to disable support for comic book archives.
rar2fs(1) man page updated accordingly.
* Removed option '--no-idx-mmap'.
rar2fs(1) man page updated accordingly.
2013-02-08 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added support for comic book archives (.cbr)
2013-02-07 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed a problem with folders inside RAR volumes
not always showing up properly.
2013-02-05 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added a few missing error checks after calls
made to malloc()
* Fixed a concurrency problem that theoretically
could result in a crash if a file cache entry
is invalidated while being accessed by e.g.
read operations.
2013-02-04 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed an issue for "rar inside rar" with
folders when located in the root of the
mount point.
2013-02-04 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Removed hard link count update. It did not
work as expected in some cases.
2013-02-03 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Hard link count now properly updated for
directories inside RAR files.
* Fixed a bug in the cache invalidation logic
that could result in memory leaks.
* Improved cache lookup to make better use of
the full 32-bit hash in order to avoid
unnecessary calls to strcmp() when searching
a hash collision chain.
2013-02-01 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Replaced 'configdb' with a more appropriate
implementation
* New file(s): optdb.h, optdb.c
Deleted file(s): configdb.h, configdb.c
2013-01-31 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Removed workaround for zombie processes since
waitpid() should now be called properly
* Aligned DLL extension with later implementations
of libunrar.
2013-01-30 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Removed the limitation that main archive must
not be a volume when encapsulating other RAR
files for proper display/extraction.
2013-01-28 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Replaced a call to strncmp() with an inline short
byte sequence check.
2013-01-28 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Got rid of some more unnecessary calls to
strlen() and strcmp()
2013-01-28 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added proper implementation of utimes()
2013-01-27 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed a very rare error case to prevent a lock-up
* Removed a few more calls to strcmp()
2013-01-25 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Improved support for folders located in leaf RAR
files contained in a master archive.
This will also solve the problem reported in
issue #11.
* Fixed a crash (SEGV) when invalidating the entire
file cache.
* Went back to use the classic zombie prevention
method by using SA_NOCLDWAIT when setting up the
signal handler for SIGCHLD.
* File type detection in scandir() improved to reduce
the already low probability of ambiguous entries
even further. Still there is not a 100% guarantee,
but very close.
* Optimizations in the folder processing by removing
some extraneous calls to strlen()/strdup() etc.
* Fixed an issue when the root folder entry was
located in the end of the archive header.
Forced stats were applied when in fact it should
have been taken from the archive itself.
* Now also umask is applied when forced directory
entries are added to the cache.
* When mounting archives the file cache is now
populated in advance. Before this change it was
possible to get a false "No such file or directory"
error if the mounted folder was not listed first
(using eg. ls).
* When mounting an archive a missing release of some
resources has been added when the file system is
terminated. This was not a true memory leak but tools
like valgrind could complain.
* Now returns -EPERM instead of -EACCES in case of
write operations targeting the contents of an archive.
2013-01-21 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed a problem with function fmemopen() not being
detected properly on systems supporting it.
The change will not take effect until 'autoreconf'
is executed before a 'configure' and/or 'make'.
2013-01-10 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed a fuse4x detection problem in the compatible
build system.
* Added support for OSX fuse in the compatible
build system.
2013-01-09 Hans Beckerus <hans.beckerus#AT#gmail.com>
* When default permission is applied to a file or
directory also the current effective umask of the
process will be considered. If the umask can not
be determined 0022 will be used.
The default permission is applied only if the archive
file header does not provide a Unix-style file mode.
2013-01-08 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added blunt support for unicode filenames
* Fixed some compilation warnings in the compatibility
build mode
2012-12-11 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed some compilation warnings on OS X Lion
with Xcode 4 and command line tools.
2012-12-09 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added support for OSX fuse
* Added hook to install mount.rar2fs
* Built against UnRAR source v4.2.4
2012-05-06 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.15.1
* Built against UnRAR source v4.2.1
2012-04-29 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.15.0
* Fixed build errors using Makefile.mk
2012-04-28 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed some compilation warnings on OSX
* Added dependency to .svn/entries for proper
rebuild of SVNREV
2012-04-22 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Corrected some calls to POSIX style basename() to
make sure a safe string copy is provided.
* Removed some usage of alloca()
2012-03-31 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added use of a hash instead of string comparison to
improve performance of readdir() calls.
* Code clean-up
* New file(s): dirlist.c, hash.h
2012-03-16 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed some OpenSolaris build errors
2012-03-16 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Removed an unnecessary cache lookup at every
read call
2012-03-16 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed broken truncate() function
* Fixed a problem for folders inside RAR archives
that could lead to unnecessary cache invalidates.
* Some code clean-up
2012-03-14 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.14.6
* Fixed some bugs that could result in read buffer
not being filled correctly for compressed archives.
* History buffer should now be preserved when large
forward jumps are made in the stream.
2012-03-06 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.14.5
* Fixed yet another calculation bug in the exception
path when dealing with the history buffer.
* Added hiding of mount point in case of a file system
loop (recursive mount).
* Completed the xattr suit of functions.
Also changed to no longer follow symbolic links.
2012-02-24 Hans Beckerus <hans.beckerus#AT#gmail.com>
* When a .r2i file is successfully loaded any direct I/O
information is now purged from the cache. It might
still not take effect immediately depending on how the
client internal cache is handled.
2012-02-24 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed a serious calculation error in one of the
paths dealing with compressed RARs.
2012-02-23 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Changed return from xattr functions from ENODATA
to ENOTSUP for files inside RAR archives.
2012-02-23 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed an issue with 'echo' in get-version.sh that
caused some systems, eg. OS X, to produce invalid
configure scripts.
2012-02-23 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Removed all but one call to pthread_exit. At least
one has been identified to cause C++ runtime crashes
on some systems due to the forced unwind.
* Updated xattr functions to return ENODATA for files
residing inside RAR archives.
* Fixed an issue with '--seek-length' not taking effect
when mounting single archives. This resulted in some
increased system load at mount time.
* Fixed a misuse of errno that could result in false
read errors for files in compressed RAR archives.
* Fixed an issue during scanning of directories causing
unnecessary calls to cache invalidate.
* Fixed a warning about unused variable if REG_PC is
not defined.
* Updated the check for '-Wno-unused-result' support
by the compiler. It did not work as expected.
2012-02-02 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.14.0
* Built against UnRAR source v4.1.4
2012-01-29 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed a bug when caching path name for folders inside
RAR archives for which the root folder entry is not
present in the file header.
2012-01-12 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed yet another build problem on OS X due to