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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
|
2011-11-15 - Christophe Grenier
Fix a potential endless loop (PhotoRec 6.12 affected, not 6.11.3)
2011-11-15 - Christophe Grenier
Use "./configure --disable-dfxml" to disable DFXML feature
2011-11-06 - Christophe Grenier
Handle x86_64-w64-mingw32 compilation target
2011-11-06 - Christophe Grenier
PhotoRec: fix MS Compress signature
2011-11-06 - Christophe Grenier
Remove unused variable
2011-11-06 - Nick Schrader
PhotoRec: minimal EBML decoder to recover .mkv and .webm files
2011-11-05 - Christophe Grenier
When listing ADS, free the stream name after usage
2011-11-05 - Christophe Grenier
Remove memory leak in error paths in file_sig.c
2011-11-05 - Christophe Grenier
Close a file descriptor leak in diskcp.c
2011-11-05 - Christophe Grenier
Modify xml_set_command_line to avoid using realloc
2011-11-02 - Christophe Grenier
PhotoRec: fix OpenDocument extension detection
Regression introduced in #bfa7d012cffb1b6ef60fba4c8b526ef9c3aaad4f
2011-11-02 - Christophe Grenier
file_tib.c Fix regression introduced in #c63960562842934ff3929b2d537ecd901027d5cb
2011-11-02 - Christophe Grenier
PhotoRec: fix Assassin's Creed II .save recovery
2011-11-02 - Christophe Grenier
file_riff.c: Fix regression introduced in #bd92f8847e15aadfe676e7e56e3f934547dd762b
2011-11-02 - Christophe Grenier
file_ace.c Fix regression introduced in #bbd33e63af7fb5f51de719a986f52f00bc6ce614
2011-11-01 - Christophe Grenier
PhotoRec: recover CATIA .catdrawing
2011-11-01 - Christophe Grenier
Search for Linux /dev/md* device instead of /dev/md?
2011-10-31 - Christophe Grenier
Avoid a potential out of bound read access in debug code
2011-10-31 - Christophe Grenier
Restrict variable context
2011-10-31 - Christophe Grenier
Restrict variable context
2011-10-30 - Christophe Grenier
PhotoRec: check rotation field when recovering .x3f Sigma raw
2011-10-30 - Christophe Grenier
PhotoRec: stricter check for compressed flash .swc
2011-10-30 - Christophe Grenier
PhotoRec: modify .pyc recovery to recover Python byte-compiled 2.6, 2.7, 3.0, 3.1 and 3.2
2011-10-30 - Christophe Grenier
PhotoRec: allow more crypto algorithms in .gpg detection
2011-10-25 - Christophe Grenier
Show Alternate Data Stream from NTFS directory
2011-10-25 - Christophe Grenier
PhotoRec: Partition table need to be read again if sector size has been changed,
so force the user to select again the disk.
2011-10-25 - Christophe Grenier
Use "int" instead of "boolean" in src/file_jpg.c
2011-10-25 - Christophe Grenier
Don't follow ".." when listing the whole filesystem
2011-10-17 - Christophe Grenier
DOS/DJGPP: Fix NTFS Alternate Data Stream filesize
2011-10-17 - Christophe Grenier
ntfs_mbstoucs takes 2 parameters in ntfs-3g and 3 in ntfsprogs
2011-10-17 - Christophe Grenier
NTFS listing: display Alternate Data Stream (ADS)
2011-10-17 - Christophe Grenier
NTFS undelete: list Alternate Data Stream (ADS)
2011-10-16 - Christophe Grenier
NTFS undelete: fix filesize display
2011-10-16 - Christophe Grenier
Remove EWF pathname limit
Reorder src/ewf.c for HAVE_LIBEWF_V2_API
2011-10-15 - Christophe Grenier
Fix detection of empty list when loading partitions list from backup.log
2011-10-15 - Christophe Grenier
PhotoRec: add missing return value to header_check_lxo()
2011-10-15 - Joachim Metz
Deal with libewf v2 new API
2011-10-15 - Christophe Grenier
PhotoRec: recover SeeNezSST and snz text files
2011-10-15 - Christophe Grenier
PhotoRec: check fseek return value in zip file validation
2011-10-15 - Christophe Grenier
PhotoRec: check fseek return value in tiff file validation
2011-10-15 - Christophe Grenier
PhotoRec: check fseek return value in tib file validation
2011-10-15 - Christophe Grenier
PhotoRec: check fseek return value in psf file validation
2011-10-15 - Christophe Grenier
PhotoRec: check fseek return value in pzh file validation
2011-10-15 - Christophe Grenier
PhotoRec: check fseek return value in pdf file validation
2011-10-15 - Christophe Grenier
PhotoRec: check fseek return value in nk2 file validation
2011-10-15 - Christophe Grenier
PhotoRec: check fseek return value in jpg file validation
2011-10-15 - Christophe Grenier
PhotoRec: check that buffer_size >= 0 in file_rename() and file_rename_unicode()
2011-10-15 - Christophe Grenier
PhotoRec: check fseek return value in DOC file validation
2011-10-15 - Christophe Grenier
PhotoRec: check fseek return value in ACE file validation
2011-10-10 - Christophe Grenier
PhotoRec: update dwg signature
2011-10-10 - Christophe Grenier
Use inode number in filename when undeleting NTFS file if no name has been found.
2011-10-10 - Christophe Grenier
PhotoRec: fix destination path when creating image_remaining.dd
2011-09-23 - Christophe Grenier
Speedup file sorting in NTFS undelete and local file listing by using merge sort instead of insertion sort
2011-09-23 - Christophe Grenier
Fix dependancies on list.[ch] files
2011-09-23 - Christophe Grenier
PhotoRec: recover pds sonar data files created by Reson software
2011-09-23 - Christophe Grenier
PhotoRec: recover lxo/lwo 3d model files
2011-09-23 - Christophe Grenier
PhotoRec: fix RIFF filesize detection
2011-09-17 - Christophe Grenier
PhotoRec: rename pdf using the title
The pdf isn't decoded, so it's not 100% reliable.
2011-09-17 - Christophe Grenier
new function file_rsearch() to search a pattern in a file from the end
2011-09-17 - Christophe Grenier
PhotoRec: when renaming file, filter out name with too much bad chars
2011-09-17 - Christophe Grenier
PhotoRec: recover Assassin's Creed II .save backup
2011-09-17 - Christophe Grenier
PhotoRec: recover dar3 .dar archive
2011-09-17 - Christophe Grenier
PhotoRec: recover Core Audio Format .caf files
2011-09-17 - Christophe Grenier
PhotoRec: better detection of new mpg
2011-09-17 - Christophe Grenier
PhotoRec: Some JPG have two APP1 markers, avoid to dicard the first one
2011-09-17 - Christophe Grenier
PhotoRec: recover 3ds .max file
2011-08-28 - Christophe Grenier
PhotoRec: detect IFO file size
2011-08-28 - Christophe Grenier
Locate lost GFS2 partition but not yet the size
2011-08-28 - Christophe Grenier
PhotoRec session management: restart PhotoRec at the same location than previously
2011-08-24 - Christophe Grenier
PhotoRec: remove some useless steps when carving ext2/3/4 filesystem and keeping corrupted files
2011-08-24 - Christophe Grenier
common.c was missing ctype.h header
2011-08-20 - Christophe Grenier
Huge code cleanup for Photorec: reduce the numbers of parameters of some functions
2011-08-20 - Christophe Grenier
strip_dup(): return NULL for empty string
2011-07-31 - Christophe Grenier
Check for both uuid_create() and uuid_generate() to solve a compilation issue on Mac OS X 10.8
2011-07-21 - Christophe Grenier
PhotoRec: recover Sweet Home 3D .sh3d files
2011-07-21 - Christophe Grenier
PhotoRec: choose the partition table type only in expert mode
2011-07-21 - Christophe Grenier
PhotoRec: fix bug introduce by commit a217bf73ff63bde0b73acfb6232631b7e06e3d8e
2011-07-21 - Christophe Grenier
PhotoRec: use a single parameter to forward the options (code cleanup)
2011-07-20 - Christophe Grenier
Add detection of Vmware VMFS partition
2011-07-15 - Christophe Grenier
PhotoRec: recover Hierarchical Data Format 4 .hdf
2011-07-15 - Christophe Grenier
PhotoRec: recover Didson Data File .ddf (v3 and v4)
2011-07-15 - Christophe Grenier
New scarrier message for NTFS MFT fixing
2011-07-15 - Christophe Grenier
PhotoRec: stricter signature for Fujifilm Raw file (.raf)
2011-07-15 - Christophe Grenier
PhotoRec: avoid '*' in filename
2011-07-15 - Christophe Grenier
Allow booting from FAT logical partition by setting FAT hidden field in the same way than for primary partition.
2011-06-30 - Christophe Grenier
Fix typo: mathlab -> matlab
2011-06-30 - Christophe Grenier
Check exFAT boot sector validity when listing files
2011-06-30 - Christophe Grenier
Fix ntfsprogs support when using mingw compiler
2011-06-30 - Christophe Grenier
PhotoRec: recover ENVI .hdr file
2011-06-30 - Christophe Grenier
PhotoRec: "ftyp" must only be seen at the beginning of .mov
2011-06-30 - Christophe Grenier
Log HDD serial number and firmware revision
2011-06-30 - Christophe Grenier
Read HDD serial number and firmware revision (Windows)
2011-06-30 - Christophe Grenier
Read HDD serial number and firmware revision (Linux)
2011-06-17 - Christophe Grenier
Enable gcc -Wformat=2 checks during compilation
2011-06-17 - Sander Lepik
Turn off an error if -Werror=format-security is enforced
2011-06-17 - Christophe Grenier
PhotoRec: recover .wpb OpenCanvas files
2011-06-17 - Christophe Grenier
PhotoRec: recover .vmg Nokia Text Message
2011-06-17 - Christophe Grenier
PhotoRec: recover .TiVo video record
2011-06-17 - Christophe Grenier
PhotoRec: recover .par2 parchive
2011-06-17 - Christophe Grenier
PhotoRec: recover .oci OpenCanvas Image
2011-06-17 - Christophe Grenier
PhotoRec: use a bigger buffer to detect Illustrator .ai
2011-06-17 - Christophe Grenier
PhotoRec: handle .mov files using 64-bit atom size
2011-06-17 - Christophe Grenier
PhotoRec: handle large avi files using "AVIX"
2011-06-17 - Christophe Grenier
PhotoRec: identify Delcam Powershape .psmodel files from first entry in OLE document
2011-06-17 - Christophe Grenier
txt recovery: remove an unwanted debug line
2011-06-17 - Christophe Grenier
MPG recovery: try to avoid to concatenate several MPG files
2011-06-17 - Christophe Grenier
jpg recovery: use jpg size to avoid to recover the thumb instead of the jpg file itself
2011-06-17 - Christophe Grenier
getpwuid() isn't static binary friendly, avoid this function
2011-06-17 - Christophe Grenier
update configure.ac to avoid a warning with autoconf 2.68
2011-06-02 - Christophe Grenier
PhotoRec: recover Games Factory .gam files
2011-06-02 - Christophe Grenier
PhotoRec: workaroud in progress bar when time goes backward
2011-06-02 - Christophe Grenier
Fix manifests for UAC
2011-06-02 - Christophe Grenier
PhotoRec: recover .gcs GCstart (personal collections manager) files
2011-06-02 - Christophe Grenier
PhotoRec: recover Delcam PowerSHAPE .psmodel files
2011-06-02 - Christophe Grenier
Image Creation creates an image file if missing
Fix bug introduced by commit #1115ff8b64c468b704e895e324eeea39aba194cd
2011-05-11 - Christophe Grenier
TestDisk & PhotoRec 6.12
2011-05-11 - Christophe Grenier
Add TestDisk 6.12 news
2011-05-11 - Christophe Grenier
Update spec file: remove testdisk-doc, replace ntfsprogs-devel by ntfs-3g-devel
2011-05-11 - Christophe Grenier
PhotoRec: handle several lines of comment in custom signature file
2011-05-10 - Christophe Grenier
File listing: add the possibility to copy select several files and copy all them
2011-05-10 - Christophe Grenier
NTFS undelete - Fix message when selecting destination
2011-05-10 - Christophe Grenier
Fix some compilation warning
2011-05-06 - Christophe Grenier
Add forgotten dfxml change required by commit 5118568923556949fa5e7b6657cabd1ebf490ae1
2011-05-02 - Christophe Grenier
PhotoRec: stricter check for BMP files
2011-04-28 - Christophe Grenier
dfxml report was missing the first byte_run, fix it.
2011-04-27 - Christophe Grenier
PhotoRec: generates Digital Forensics XML report
2011-04-27 - Christophe Grenier
Recover XFI Electronic Fuel Injection Systems .xfi, .gct and .ttd
2011-04-27 - Christophe Grenier
During Image Creation, refresh the display each 0.01%
2011-04-25 - Christophe Grenier
Fix read error detection in exfat_copy()
2011-04-25 - Christophe Grenier
When selecting undelete for an exFAT partition, avoid to redirect to NTFS undelete
2011-04-24 - Christophe Grenier
Try to convert the compilation date to the ISO format
2011-04-23 - Christophe Grenier
rework some if/then/else statements, add a few comments
2011-04-23 - Christophe Grenier
Reject sector size reported by Windows if bigger than 16MB
2011-04-23 - Christophe Grenier
Workaround a bug in wine, append to file doesn't always work.
2011-04-23 - Christophe Grenier
Add get_compilation_date() and td_jpeg_version() functions
2011-04-21 - Christophe Grenier
Workaround for Dos/DJGPP, stat.st_size seems to be 31 bits only.
2011-04-21 - Christophe Grenier
When write failed during the copy of a file, log the strerror message
2011-04-21 - Christophe Grenier
Reserve 9 digits instead of 7 to display file size in directory listing
2011-04-21 - Christophe Grenier
Fix listing of exFAT subdirectories
2011-04-19 - Christophe Grenier
PhotoRec: fix for custom signature using hexa
2011-04-19 - Christophe Grenier
PhotoRec: don't limit Quickbooks to 30MB
2011-04-19 - Christophe Grenier
Add the possibility to stop (Quit) the FAT32 root cluster search
2011-04-06 - Christophe Grenier
Support for ntfs-3g_ntfsprogs
2011-04-03 - Christophe Grenier
Should TestDisk search for partition created under Vista or later
2011-04-03 - Christophe Grenier
PhotoRec: recover McAfee Anti-Theft/FileVault .vault files
2011-04-03 - Christophe Grenier
PhotoRec: recover Pro Tools session File .ptf files
2011-04-03 - Christophe Grenier
PhotoRec: recover Apple Logic .exs
2011-04-03 - Christophe Grenier
PhotoRec: Move custom signature at the top of the list in FileOpts
2011-04-03 - Christophe Grenier
NTFS - Use date/time from AT_STANDARD_INFORMATION instead of AT_FILE_NAME
2011-04-03 - Christophe Grenier
qphotorec: add Proceed and Quit button
2011-04-03 - Christophe Grenier
PhotoRec: remove useless log_info()
2011-04-03 - Christophe Grenier
PhotoRec: when using custom signature, avoid pointer to memory that can be reallocated
2011-04-03 - Christophe Grenier
Add warning or workaround for libjpeg-turbo
2011-04-03 - Christophe Grenier
PhotoRec: new template file
2011-04-03 - Christophe Grenier
Minor optimisation in NTFS undelete
2011-04-03 - Christophe Grenier
Add the possibility to clone read sectors (Disabled at compile time by default).
2011-04-03 - Christophe Grenier
PhotoRec: Fix custom signature parser
2011-04-03 - Christophe Grenier
PhotoRec: distinguish Apple .acc from .mp4
2011-04-03 - Christophe Grenier
When listing corrupted ext2/3/4 filesystem, fix handle leak.
2011-04-03 - Christophe Grenier
libewf: Fix compile.sh script, don't be verbose by default
2011-04-03 - Christophe Grenier
Copy files from reiserfs. Need patched progsreiserfs
2011-03-28 - Christophe Grenier
Fix to deal with ncurses 5.8 API violation, newwin(0,0,0,0) doesn't create a new full-screen window anymore.
2011-03-25 - Christophe Grenier
PhotoRec: recover MPEG transport stream .ts (disabled by default)
2011-03-25 - Christophe Grenier
PhotoRec: fix file_rename() and file_rename_unicode() to allocate space for new file instead of using stack, add fallback if renamed failed
2011-03-25 - Christophe Grenier
PhotoRec: Call reset_list_file_enable() in main() instead of file_options_load_aux()
2011-03-25 - Christophe Grenier
Fix md 0.9 uuid copy
2011-03-25 - Christophe Grenier
PhhotoRec: recover .xlsx witht the correct extension
2011-03-25 - Christophe Grenier
PhotoRec: parse Paint Shop Pro to get the filesize
2011-03-25 - Christophe Grenier
PhotoRec: use "%llu" instead of "%lu" to display sectors offset
2011-03-19 - Christophe Grenier
PhotoRec: fix potential out of bound read during recovery of corrupted jpeg
2011-03-19 - Christophe Grenier
Warn that fixing MFT using MFT mirror is a non reversible operation.
2011-03-19 - Christophe Grenier
PhotoRec: some pdf were erroneously saved as Illusatrtor .ai
2011-03-19 - Christophe Grenier
Recent version of libewf have removed LIBEWF_HANDLE type, use libewf_handle_t is available
2011-03-06 - Christophe Grenier
Add missing src/exfat_dir.[ch] files since 2011-02-07
2011-03-05 - Christophe Grenier
PhotoRec: recover Windows Media Center TV .wtv files
2011-03-05 - Christophe Grenier
PhotoRec: recover Impulse Tracker .it files
2011-03-05 - Christophe Grenier
PhotoRec: recover Filevault .sparseimage
2011-03-05 - Christophe Grenier
PhotoRec: recover Oracle dump file .dmp
2011-03-05 - Christophe Grenier
PhotoRec: Limit file size to 4G when recovering from a FAT
2011-03-05 - Christophe Grenier
Allow sector size up to 8192 bytes
2011-03-05 - Christophe Grenier
PhotoRec: for zip archive, set the filename according to the first file in the archive
2011-03-05 - Christophe Grenier
PhotoRec: try to recover LilyPond .ly text file
2011-03-05 - Christophe Grenier
PhotoRec: recover gpg file when data has been encrypted with a symmetric cipher using a passphrase
2011-03-05 - Christophe Grenier
Modify file_search_footer() prototype
2011-03-05 - Christophe Grenier
FAT: handle filesystem sector size different than media sector size
2011-03-05 - Christophe Grenier
Fix for HPA and DCO detection (again)
2011-03-05 - Christophe Grenier
For non partionned media formated as FAT, set bytes per sector according
to FAT boot sector information.
2011-03-05 - Christophe Grenier
TestDisk: try to avoid endless directory loop when copying directory
when damaged filesystem
2011-03-05 - Christophe Grenier
TestDisk: recover btrfs, a GPL-licensed copy-on-write file system for Linux.
2011-02-07 - Christophe Grenier
Minimal support to list and copy files from exFAT for TestDisk.
PhotoRec:Can carve files from exFAT free space only
2011-01-10 - Christophe Grenier
Add mising file_lso.c file since commit 58fb3eaccbe01ba0867631956a58ad37c19ea1df
2011-01-07 - Christophe Grenier
On non-partionned media, discovers exFAT filesystem using backup sector.
2011-01-07 - Christophe Grenier
Fix exFAT recovery using backup boot sector
2011-01-05 - Christophe Grenier
PhotoRec: recover Torrent files
2011-01-05 - Christophe Grenier
PhotoRec: recover Freeway 5 pro files
2011-01-05 - Christophe Grenier
PhotoRec: recover lzo archive
2011-01-05 - Christophe Grenier
PhotoRec: argument signess fix in a log_info() call
2011-01-05 - Christophe Grenier
Detect ext2/3/4 filesystem using group 3 backup superblock when main superblock is damaged in non-partionned media.
2011-01-05 - Christophe Grenier
PhotoRec: distinguish zip archive from Mozilla Cross-Platform Install .xpi
2011-01-05 - Christophe Grenier
PhotoRec: recover MS Internet Shortcut .url files and avoid some false positives with text files and Fortran .f
2011-01-05 - Christophe Grenier
PhotoRec: recover recents version of Acronis .tib files
2011-01-05 - Christophe Grenier
PhotoRec: allows atom size up to 2GB
2010-12-23 - Christophe Grenier
PhotoRec: detect Page Maker .p65 files
2010-12-23 - Christophe Grenier
PhotoRec: fix the order of file checks
2010-12-16 - Christophe Grenier
List and undelete filesystem using alternate superblock if necessary
2010-12-16 - Christophe Grenier
Set alternate superblock information when available
2010-12-05 - Christophe Grenier
PhotoRec: handle fill bytes before JPG markers
See B.1.1.2 Markers in http://www.w3.org/Graphics/JPEG/itu-t81.pdf
2010-11-29 - Christophe Grenier
Compilation fix when ncurses is disabled
2010-11-29 - Christophe Grenier
Try to locate truecrypt logical partition by using the logical partition entry.
2010-11-29 - Christophe Grenier
Check wctomb() availability
2010-11-22 - Christophe Grenier
PhotoRec: recover Lotus Notes .nsf and cdl/cdt/cdd Concept Draw files
2010-11-22 - Christophe Grenier
PhotoRec: fix template
2010-11-22 - Christophe Grenier
PhotoRec: recover Pretty Good Privacy pgp files
2010-11-22 - Christophe Grenier
Reduce memory usage during NTFS undelete
2010-11-20 - Christophe Grenier
Add the possibility to list NTFS partition in the Advanced menu
2010-11-11 - Christophe Grenier
PhotoRec: display the data size and store image_remaining.dd where the files are recovered
2010-11-11 - Christophe Grenier
Log ewflib error messages to stderr
2010-11-11 - Christophe Grenier
TestDisk Image Creation: display the data size
2010-11-09 - Christophe Grenier
Can list ext3/ext4 in TestDisk Advanced menu
2010-11-09 - Christophe Grenier
When a key is pressed in a menu, default to the corresponding item.
2010-11-09 - Christophe Grenier
PhotoRec: additional signature for HTML files
2010-11-09 - Christophe Grenier
PhotoRec: avoid to truncate the file too short when there isn't enough data to read
2010-11-07 - Christophe Grenier
PhotoRec: add carve free space only from FAT12 possibility
2010-11-07 - Christophe Grenier
PhotoRec: avoid a false positive due to APP12 marker in jpeg recovery
2010-11-07 - Christophe Grenier
PhotoRec: detect asf/wmv video file size
2010-11-05 - Christophe Grenier
PhotoRec: user can choose to run sudo via the interface if he isn't root
2010-11-05 - Christophe Grenier
NTFS Rebuild BS: fix the potential partition location (Visible in log file only)
2010-11-05 - Christophe Grenier
Introduce pread_fast(), a function that can return a pointer to the data in cache
instead of using memcpy to fill the buffer with a copy of the data
2010-10-31 - Christophe Grenier
PhotoRec: remove has_value field in file_check_list_t
2010-10-31 - Christophe Grenier
Search for FAT32 and NTFS backup boot sector when checking if the partition table type is None
2010-10-31 - Christophe Grenier
Fix file_rename() and file_rename_unicode()
2010-10-31 - Christophe Grenier
Affect default values to mft_lcn and mftmirr_lcn that may be used uninitialized otherwise.
2010-10-31 - Christophe Grenier
PhotoRec: speedup optimization by avoiding some useless call to header_check_txt()
2010-10-31 - Christophe Grenier
file_riff.c: remove unused variable affectation
2010-10-31 - Christophe Grenier
file_pdf.c: removed useless affectation
2010-10-31 - Christophe Grenier
Don't dereference disk if disk parameter is NULL
2010-10-31 - Christophe Grenier
file_doc.c: remove useless code
2010-10-24 - Christophe Grenier
PhotoRec: use signatures defined in photorec.sig file.
2010-10-24 - Christophe Grenier
New prototype for size_to_unit()
2010-10-23 - Christophe Grenier
PhotoRec: recover lzo compressed archive
2010-10-23 - Christophe Grenier
PhotoRec: recover Print Shop .psf files
2010-10-23 - Christophe Grenier
Modified interface when prompting for a destination to store data
2010-10-23 - Christophe Grenier
Support cygwin's libncursesw10
2010-10-23 - Christophe Grenier
Use "make -j 2" in compile.sh
2010-09-24 - Christophe Grenier
Fix grammar in TestDisk first screen
2010-09-24 - Christophe Grenier
PhotoRec: handle another version of Acronis True Image
2010-09-24 - Christophe Grenier
PhotoRec: test chunk type while parsing PNG file
2010-09-24 - Christophe Grenier
Assume utf8 filenames in FAT
2010-09-19 - Christophe Grenier
aff_copy_short(): a 1-line banner
2010-09-19 - Christophe Grenier
TestDisk: when manually adding a partition, the proposed partition is now by default the biggest free space.
2010-09-19 - Christophe Grenier
src/log.c: refactor code by using log_open()
2010-09-19 - Christophe Grenier
PhotoRec: recover raw avi stream
2010-09-11 - Christophe Grenier
If compiled with "./configure --enable-mouse", most PhotoRec screens can be driven by mouse.
gpm library is dynamicaly loaded by ncurses, so this option isn't compatible with static binaries.
2010-09-11 - Christophe Grenier
Remove reference to jpegmmx-lib
2010-09-11 - Christophe Grenier
PhotoRec: in bruteforce mode, assume the error location is never after the estimated error location
2010-09-11 - Christophe Grenier
PhotoRec: during the bruteforce mode, try to handle situation where the error is located before the previous estimation.
It still need work.
2010-09-11 - Christophe Grenier
PhotoRec: improve jpeg localisation of erronous data, usefull for the bruteforce mode
2010-09-11 - Christophe Grenier
PhotoRec: recover Quantum GIS (QGIS), Open Source Geographic Information System files and firefox sessionstore files
2010-09-11 - Christophe Grenier
Move binaries from sbin to bin
2010-09-11 - Christophe Grenier
Update spec file to be a closer match to fedora 14 package
2010-09-11 - Christophe Grenier
Add fidentify man page, fix the section number of testdisk and photorec
2010-09-11 - Christophe Grenier
Don't check for varargs.h presence
2010-09-11 - Christophe Grenier
Fix for x86_64-pc-mingw32
2010-09-11 - Christophe Grenier
Warn the user that there is no echo when using sudo
2010-08-26 - Christophe Grenier
PhotoRec: code cleanup - use enum value for return value in src/phbf.c
2010-08-23 - Christophe Grenier
PhotoRec: fix dgn detection and the wrong argument to OLE_parse_summary() function
2010-08-23 - Christophe Grenier
Code cleanup
2010-08-23 - Christophe Grenier
Update TestDisk man page to include ext4 and undelete feature
2010-08-23 - Christophe Grenier
PhotoRec: fix the reported error location when EXIF information are corrupted
2010-08-23 - Christophe Grenier
PhotoRec: add http cache file detection
2010-08-20 - Christophe Grenier
PhotoRec: better detection of corrupted EXIF information
2010-08-18 - Christophe Grenier
MBRCode: Avoid to replace the disk signature used by Vista and later
2010-08-16 - Steven Mestdagh
Detect vnd (virtual node driver) devices that provides interface to disk image file.
2010-07-23 - Christophe Grenier
PhotoRec: recover Virtual desktop infrastructure 1.1 .vdi files
2010-07-23 - Christophe Grenier
PhotoRec: recover RoboForm .rfp files
2010-07-23 - Christophe Grenier
PhotoRec: recover Apple QuickTake 100 files
2010-07-23 - Christophe Grenier
PhotoRec: recover Broadcast Interface Module .bim files
2010-07-23 - Christophe Grenier
Fix NTFS undelete of sparse file
2010-07-23 - Christophe Grenier
PhotoRec: parse PNG/JNG/MNG files
2010-06-22 - Christophe Grenier
PhotoRec: allow carving on non sector boundary (experimental)
2010-06-22 - Christophe Grenier
Code cleanup
2010-06-22 - Christophe Grenier
PhotoRec: distinguish jar from zip archive (fix)
2010-06-22 - Christophe Grenier
PhotoRec: remove a check that was preventing some mov file bigger than 1GB to be recovered
2010-06-22 - Christophe Grenier
PhotoRec: relax check for PE exe
2010-06-22 - Christophe Grenier
PhotoRec: fix Dalvik .dex detection
2010-06-22 - Christophe Grenier
Space and name cleanup
2010-06-22 - Christophe Grenier
Handle Humax partition table
2010-06-22 - Christophe Grenier
TestDisk: reduce the number of read operations
2010-06-22 - Christophe Grenier
TestDisk: fix HFSP detection
Regression introduced in commit 183a66798e1ddbfd62c56e1d34287fddb0a4d3e7
2010-05-21 - Christophe Grenier
Another fix for DCO/HPA detection
2010-05-21 - Christophe Grenier
PhotoRec: stricter check for .wpd
2010-05-21 - Christophe Grenier
PhotoRec: recover Synchronized Multimedia Integration Language .smil
- VBooKMark .url
- utf-8 .xml
- Java Application Descriptor .jad
2010-05-21 - Christophe Grenier
PhotoRec: fix oversized file detection for .arw
2010-05-21 - Christophe Grenier
PhotoRec: stricter check for .swf/.swc
2010-05-21 - Christophe Grenier
PhotoRec: stricter check for .res
2010-05-21 - Christophe Grenier
PhotoRec: .ps file recovery - handle very small buffersize
2010-05-21 - Christophe Grenier
PhotoRec: stricter check for .prc - extract the modification date
2010-05-21 - Christophe Grenier
PhotoRec: stricter check for .pcx
2010-05-21 - Christophe Grenier
PhotoRec: stricter check for .mpg
2010-05-21 - Christophe Grenier
PhotoRec: mp3 recovery - code cleanup
2010-05-21 - Christophe Grenier
PhotoRec: stricter check for .lnk
2010-05-21 - Christophe Grenier
PhotoRec: stricter check for .ico
2010-05-21 - Christophe Grenier
PhotoRec: extract the exe filename from InteralName if available
2010-05-21 - Christophe Grenier
PhotoRec: recover Bentley Systems' MicroStation .dgn file format
2010-05-21 - Christophe Grenier
PhotoRec: recover history.dat file from Sony Ericson phone
2010-05-21 - Christophe Grenier
PhotoRec: stricter check for .au and extract the filesize
2010-05-21 - Christophe Grenier
PhotoRec: stricter check for .arj
2010-05-21 - Christophe Grenier
PhotoRec: add information about amr file format
2010-05-21 - Christophe Grenier
Mark as "const" a variable
2010-05-21 - Christophe Grenier
Prefix highligted selection by ">", so screen reader software find the
interface less confusing.
2010-04-27 - Christophe Grenier
Update TestDisk date, add photorecf
Add Windows Server 2008 and Windows 7 in description
2010-04-27 - Christophe Grenier
PhotoRec: recover Dalvik .dex files
2010-04-27 - Christophe Grenier
PhotoRec: recover DriftBox .dbn files
2010-04-27 - Christophe Grenier
PhotoRec: recover Netpbm (PBM/PGM/PPM) files
2010-04-27 - Christophe Grenier
PhotoRec: improve jpg file recovery in brute-force mode
2010-04-27 - Christophe Grenier
PhotoRec: modify internals for brute-force recovery
2010-04-27 - Christophe Grenier
Fix detection of Encase 6
Fix detection of OpenBSD SCSI device
2010-04-27 - Christophe Grenier
xfs, code cleanup
2010-04-27 - Christophe Grenier
Remove redundant location hints used by partition search (speedup)
2010-04-27 - Christophe Grenier
md 0.9: fix out of bound write memory operation
2010-04-27 - Christophe Grenier
luks: code cleanup
2010-04-27 - Christophe Grenier
Press 'F' during deeper partition search to continue after the end of the last found partition
2010-04-27 - Christophe Grenier
PhotoRec: recover another mbox (mailbox) folder file format
2010-04-27 - Christophe Grenier
PhotoRec: add another signature for Quickbooks qbw
2010-04-27 - Christophe Grenier
PhotoRec: fix gpg recovery
2010-04-27 - Christophe Grenier
PhotoRec: recover Quickbook qbb files based on OLE/Microsoft Compound Document file format
2010-04-27 - Christophe Grenier
Use destination offset instead of source offset when creating a partition image (Fix)
2010-04-27 - Christophe Grenier
Add specific tests (ie magic value) before checking for a filesystem (Use less CPU)
2010-04-27 - Christophe Grenier
Add a header needed under Solaris
2010-03-16 - Christophe Grenier
Interface need 24 lines to work correctly
2010-03-16 - Christophe Grenier
PhotoRec: recover Extended Renoise song .xrns files
2010-03-16 - Christophe Grenier
PhotoRec: stricter check for MPG file beginning by MPEG-4 visual object start code
2010-03-16 - Christophe Grenier
NTFS undelete: 'a' to select/deselect all files
2010-03-16 - Christophe Grenier
PhotoRec: recover Mind Your Own Business .myo files
2010-01-24 - Christophe Grenier
Rename sun_partition to sun_disklabel
2010-01-24 - Christophe Grenier
When deleting an Intel partition table, remove the EFI signature if present.
2010-01-24 - Christophe Grenier
Improve log file creation
2010-01-24 - Christophe Grenier
Add Windows manifest in the exe files itself (cygwin compilation)
2010-01-24 - Christophe Grenier
PhotoRec: recover encrypted rar files
2010-01-24 - Christophe Grenier
file_exe.c: rename a file structure
2010-01-24 - Christophe Grenier
PhotoRec: Improve .dv Digital Video file recovery to get the filesize
2010-01-24 - Christophe Grenier
Modify compile.sh to handle cross-compilation for arm-marvell-linux-gnu
used bySynology CS407
2010-01-24 - Christophe Grenier
Add missing files
2009-12-28 - Christophe Grenier
Fix a warning when running the cygwin version under Wine
2009-12-28 - Christophe Grenier
PhotoRec: recover FontLab .vfb files
2009-12-28 - Christophe Grenier
PhotoRec: recover Presto .pzh files
2009-12-28 - Christophe Grenier
PhotoRec: recover Game Maker .gm6 and .gmd files
2009-12-28 - Christophe Grenier
PhotoRec: recover ext[234] filesystem file image
2009-12-28 - Christophe Grenier
Recommand using parted under Linux to recreate missing partition
when Mac partition table is used.
2009-12-28 - Christophe Grenier
Better check for HPA/DCO reporting
2009-12-28 - Christophe Grenier
PhotoRec: return immediatly when date/time has been found in pdf
2009-12-28 - Christophe Grenier
PhotoRec: avoid out of bound read access when using OLE ministream (doc/ppt/xls...)
2009-12-28 - Christophe Grenier
TestDisk: when search an ext[234] superblock, display the corresponding
fsck.ext3 command to use the superblock parameters
2009-12-11 - Christophe Grenier
Cygwin: use posix path when creating a log file
2009-12-11 - Christophe Grenier
Detect disks when compiled for Haiku (free open source operating system compatible with BeOS)
2009-12-11 - Christophe Grenier
PhotoRec: stricter check for Mysql .frm files
2009-12-11 - Christophe Grenier
PhotoRec: recover Wilcom ES .emb files
2009-12-11 - Christophe Grenier
fidentify: enable all file formats
2009-12-11 - Christophe Grenier
Enable -Wc++-compat compilation warning
2009-12-11 - Christophe Grenier
Enable sudo for i686-apple-darwin9 binaries
2009-11-01 - Christophe Grenier
Avoid some .ini, .java and .txt false positifs
2009-11-01 - Christophe Grenier
Add missing fwrite return check
2009-11-01 - Christophe Grenier
PhotoRec: when no partition table is found, default to none
2009-11-01 - Christophe Grenier
Remove unused disk_car argument from test_ISO() function
2009-11-01 - Christophe Grenier
Fix header definition for function taking no argument
2009-11-01 - Christophe Grenier
Add offset in hfs+ structure comment
2009-11-01 - Christophe Grenier
PhotoRec: handle miniFAT when extracting doc/xls/ppt title from summary
2009-11-01 - Christophe Grenier
PhotoRec: stricter check for .dbf files
2009-11-01 - Christophe Grenier
PhotoRec: record last valid offset of a file, will be usefull for bruteforce
2009-11-01 - Christophe Grenier
TestDisk: fix ext2/ext3/ext4 superblock detection for 1024b block
2009-11-01 - Christophe Grenier
Define _FORTIFY_SOURCE during compilation to enable more source code warnings
2009-10-25 - Christophe Grenier
PhotoRec: recover Opera preferences .win files
2009-10-25 - Christophe Grenier
PhotoRec: recover encrypted file by eCryptfs
2009-10-25 - Christophe Grenier
PhotoRec: recover Adobe's Extensible Metadata Platform .xmp files
2009-10-25 - Christophe Grenier
PhotoRec: make atd_header static
2009-10-25 - Christophe Grenier
PhotoRec: don'tinclude iso9660.h in iso.h
2009-10-25 - Christophe Grenier
PhotoRec: better detection of docx/xlsx/pptx
2009-10-25 - Christophe Grenier
PhotoRec: fix MPEG-1 system header start code detection
2009-10-25 - Christophe Grenier
PhotoRec: try to detect Microsoft Tape .bkf end of file
2009-10-25 - Christophe Grenier
Code cleanup
2009-10-19 - Christophe Grenier
PhotoRec: recover Nintendo DS Game ROM Image .nds
2009-10-19 - Christophe Grenier
PhotoRec: recover Matlab .mat files
2009-10-19 - Christophe Grenier
PhotoRec: recover Color profiles .icc
2009-10-19 - Christophe Grenier
PhotoRec: recover File Maker Pro .fp5
2009-10-19 - Christophe Grenier
Identify ISO9660 image as non-partitionned media
2009-10-19 - Christophe Grenier
Move fat_set_part_name() to src/common.c and rename it to set_part_name_chomp()
2009-10-19 - Christophe Grenier
List 0xFB PC/Intel partition id as VMFS, VMware FileSystem
2009-10-19 - Christophe Grenier
PhotoRec: do not parse TIFF Makernotes
2009-10-19 - Christophe Grenier
Log syntax error in command line
2009-10-19 - Christophe Grenier
PhotoRec: minimal detection of file size of Adobe Photoshop Image .psd
2009-10-19 - Christophe Grenier
PhotoRec: search for JPEG beginning by SOI + APP12
2009-10-06 - Christophe Grenier
PhotoRec: recover Mathlab model .mdl
2009-10-06 - Christophe Grenier
PhotoRec: distinguish .xml.gz from .gz
2009-10-06 - Christophe Grenier
Scan for the first 20 disks under Mac OS X instead of 10 (fix)
2009-09-30 - Christophe Grenier
dir.c: little code reorganisation
2009-09-30 - Christophe Grenier
Scan for the first 20 disks under Mac OS X instead of 10
2009-09-05 - Christophe Grenier
file_template is a model for adding a new file format to PhotoRec
2009-09-04 - Christophe Grenier
Detect Windows server 2008 and Windows server 2008 R2 - compilation fix
2009-09-03 - Christophe Grenier
Detect Windows server 2008 and Windows server 2008 R2
2009-09-03 - Christophe Grenier
Fix HPA/DCO detection for some big disks (ie 1.5TB)
2009-09-03 - Christophe Grenier
PhotoRec: recover Mnemosyne .mem files
2009-09-03 - Christophe Grenier
PhotoRec: recover Bacula backup .bac and Qemu image .cow (COW and COW2)
2009-08-27 - Christophe Grenier
Log the machine architecture
2009-08-27 - Christophe Grenier
TestDisk: don't display "Structure: Ok" if there is no partition. Users are confused otherwise.
2009-08-27 - Christophe Grenier
PhotoRec: stricter check for PowerTab .ptb files
2009-08-27 - Christophe Grenier
PhotoRec: recover Xournal .xoj files
2009-08-20 - Christophe Grenier
Fix for Device Configuration Overlay detection when LBA48 isn't enabled
2009-08-20 - Christophe Grenier
PhotoRec: recover JPEG XR .wdp files
2009-08-18 - Christophe Grenier
TestDisk: locate ZFS partition beginning
2009-08-18 - Christophe Grenier
unicode.c: shutdown a warning
2009-08-18 - Christophe Grenier
PhotoRec: print an error if /cmd parameter hasn't been fully processed (work still needed)
2009-08-18 - Christophe Grenier
photorec.c: add missing setdate.h header
2009-08-18 - Christophe Grenier
PhotoRec: use a short extension when recovering sqlite files with DOS version
2009-08-18 - Christophe Grenier
PhotoRec: identify Ogg data/Theora video .ogm files
2009-08-18 - Christophe Grenier
PhotoRec: extract date/time and title from Word document
better doc / xls / ppt / ... identification
recover SigmaPlot.jnb files
2009-08-18 - Christophe Grenier
file_rename() and file_rename_unicode() new prototype
2009-08-18 - Christophe Grenier
Fix a double free when ext2fs_open() failed
2009-08-18 - Christophe Grenier
Faster search for backup ext2/ext3/ext4 superblock
2009-08-18 - Christophe Grenier
Fix small memory leak when copying files
2009-08-12 - Christophe Grenier
Move set_date() to a separate file
2009-07-31 - Christophe Grenier
qphotorec: fix the device list
2009-07-31 - Christophe Grenier
PhotoRec: avoid extension with more than 3 letters for DOS/DJGPP version
2009-07-26 - Christophe Grenier
PhotoRec: recover GraphPrism 4 .pzf files
2009-07-26 - Christophe Grenier
PhotoRec: recover deleted Encase EWF (.e01, .e02...) files
2009-07-26 - Christophe Grenier
Move write_part_gpt() in a separate file, so PhotoRec doesn't depend of
uuid_generate, uuidgen or uuid_create function
2009-07-26 - Christophe Grenier
PhotoRec: fix FAT unformat but scan the whole partition
2009-07-26 - Christophe Grenier
Code style cleanup
2009-07-26 - Christophe Grenier
PhotoRec: Log the sector number when a FAT directory is found
2009-07-26 - Christophe Grenier
TestDisk: add a boundary check when searching NTFS MFT
2009-07-26 - Christophe Grenier
Stricter check for EWF files - workaround a bug in libewf-20090510 when opening a file segment other than .e01
2009-07-26 - Christophe Grenier
PhotoRec: recover the following text files
- .emka EMKA IOX - Pharmacology & toxicology files
- .java JAVA source
- .json JavaScript Object Notation
- .ksh Korn Shell script
2009-07-26 - Christophe Grenier
PhotoRec: try to extract the date/time from pdf files
2009-07-26 - Christophe Grenier
PhotoRec: file_mov.c - define some variables as const
2009-07-26 - Christophe Grenier
PhotoRec: recover R, language and environment for statistical computing and graphics, .RData files
2009-07-26 - Christophe Grenier
Fix the spec file: TestDisk & PhotoRec man pages are moved to
"8 System Administration tools and Deamons" instead of "1 User Commands"
2009-07-26 - Christophe Grenier
PhotoRec: When manually selecting the blocksize and offset in expert mode, fix the offset
2009-07-16 - Christophe Grenier
PhotoRec: improve Adobe Photoshop Image .psd file signature
2009-07-16 - Christophe Grenier
PhotoRec: handle TIFF tag IMPrint, some improvements to get a better filesize
2009-07-16 - Christophe Grenier
TestDisk & PhotoRec man pages are moved to "8 System Administration tools and Deamons"
instead of "1 User Commands"
2009-07-16 - Christophe Grenier
Update acx_pthread.m4 to not use AC_LANG_SAVE, AC_LANG_C and AC_TRY_LINK deprecated macros
2009-07-06 - Christophe Grenier
PhotoRec: recover RED r3d camera videos
2009-07-03 - Christophe Grenier
PhotoRec: recover Guitar Pro 5 .gp5 files
2009-07-03 - Christophe Grenier
PhotoRec: recover Russian Finance 1C:Enterprise 8 .1cd files
2009-07-03 - Christophe Grenier
HPA/DOC detection, handle the case where native_max is null.
2009-07-03 - Christophe Grenier
TestDisk: additional control to avoid that the extended partition ends after the end of the disk
2009-07-03 - Christophe Grenier
PhotoRec: identify Windows Internet Shortcut .url, Visual Basic .vb
2009-07-03 - Christophe Grenier
PhotoRec: identify several RIFF files:
- MIDI sound file .mid
- MIDI MIDI Instruments Definition File .idf
- Windows Animated Cursor .ani
2009-07-03 - Christophe Grenier
PhotoRec: distinguish .html.gz from .gz
2009-07-03 - Christophe Grenier
PhotoRec .gpg: check publickey algo for Public-Key Encrypted Session Key Packet v3
2009-07-03 - Christophe Grenier
PhotoRec: recover 16 bits (MZ NE) windows executable
2009-07-03 - Christophe Grenier
PhotoRec: stricter check for .ape, Monkey's Audio compressed format
2009-07-03 - Christophe Grenier
TestDisk: Convert the directory name when it can't be created (Cygwin version)
2009-06-21 - Christophe Grenier
PhotoRec: recover FAT filesystem (ie. floppy image)
Note, you should disable the recovery of other filetypes
2009-06-21 - Christophe Grenier
PhotoRec: recover Quattro Pro spreadsheet qpw
2009-06-21 - Christophe Grenier
PhotoRec: check for EFBIG (file too large) error when writing files
2009-06-21 - Christophe Grenier
Update configure.ac to not use the deprecated AC_TRY_COMPILE macro,
don't use nested function
2009-06-12 - Christophe Grenier
PhotoRec: extract time from JPEG (fix), better detect end of file
2009-06-12 - Christophe Grenier
TestDisk: Skip 10MB if a read error occurs during image creation.
2009-06-12 - Christophe Grenier
PhotoRec: limit to 1GB when searching the previous unrecovered file
2009-06-12 - Christophe Grenier
PhotoRec: try to detect MPEG end of file
2009-06-12 - Christophe Grenier
Always include stdio.h before ncurses header and types.h
2009-06-11 - Christophe Grenier
md.c: add boundary checking
2009-06-11 - Christophe Grenier
PhotoRec: recover phpMyAdmin, MySQL and postgreSQL dumps with .sql
2009-06-11 - Christophe Grenier
Build fidentify by default
2009-05-27 - Christophe Grenier
PhotoRec: fix ending sector in log message
2009-05-27 - Christophe Grenier
PhotoRec: fix blocksize detection (regression introduce in 6.11)
2009-05-27 - Christophe Grenier
PhotoRec: when a ne file is found, mark the area as data
2009-05-27 - Christophe Grenier
PhotoRec: file_search_footer() gets a new parameter
2009-05-27 - Christophe Grenier
Remove unecessary memmem.h include
2009-05-27 - Christophe Grenier
Flush stderr before and after listing files
2009-05-24 - Christophe Grenier
PhotoRec: Fix Panasonic rw2 recovery
2009-05-24 - Christophe Grenier
Fix EFI partition table backup
2009-05-24 - Christophe Grenier
Repla ce "Estimated time for achievement" by "Estimated time to completion"
2009-05-24 - Christophe Grenier
If the destination is full, PhotoRec ask for a new location and it defaults
to the actual location instead of the default one.
2009-05-05 - Christophe Grenier
PhotoRec: move photorec_bf() to a separate file,
idem for photorec_find_blocksize() and file_found()
move photorec_info() and photorec_progressbar() to src/phnc.c
2009-05-05 - Christophe Grenier
"photorec /?" returns the help message
2009-05-05 - Christophe Grenier
move set_filename() from src/phrecn.c to src/photorec.c
2009-05-05 - Christophe Grenier
Limit the scope of several variables
2009-05-05 - Christophe Grenier
move autoset_unit() to a separate file
2009-05-05 - Christophe Grenier
PhotoRec: recover Scalable Vector Graphics .SVG files
2009-05-05 - Christophe Grenier
PhotoRec: Add boundary checking when parsing EXIF data (again)
2009-04-27 - Christophe Grenier
PhotoRec: add some texts that can be found in jpg modified by Adobe to avoid to reject the file
2009-04-27 - Christophe Grenier
PhotoRec: Recover MPEG .tod files
2009-04-27 - Christophe Grenier
PhotoRec: Add boundary checking when parsing EXIF data
2009-04-27 - Christophe Grenier
PhotoRec: recover SolidWorks .sldprt
2009-04-27 - Christophe Grenier
Avoid "return function()" in function returning void
2009-04-19 - Christophe Grenier
TestDisk & PhotoRec 6.11-WIP
2009-04-18 - Christophe Grenier
Clear the handle when the log is closed
2009-04-18 - Christophe Grenier
Handle more than 80 columns
2009-04-18 - Christophe Grenier
Handle Ctrl+C
2009-04-14 - Christophe Grenier
Code cleanup: remove unused variable in src/ntfs_dir.c
Make fd variable more local in src/ntfs_udl.c
2009-04-14 - Christophe Grenier
TestDisk: when searching partition near the end of the disk, stops if there is a read error
2009-04-14 - Christophe Grenier
PhotoRec: identify DNG (raw tiff)
2009-04-14 - Christophe Grenier
TestDisk: hexdump can use more than 24 lines
2009-04-14 - Christophe Grenier
TestDisk: Force screen redraw
2009-04-12 - Christophe Grenier
PhotoRec: recover TZif2 timeinfo zone files
2009-04-12 - Christophe Grenier
PhotoRec: fix Macintosh Picture .pct size detection
2009-04-12 - Christophe Grenier
Cylinder is now long unsigned int. Fix a parameter inversion for the DOS version.
2009-04-12 - Christophe Grenier
Don't forget the string format when logging an error, patch from Pascal Terjan
2009-04-12 - Christophe Grenier
PhotoRec: use tgz instead of tar.gz extension when recovering file for DOS DJGPP version
2009-04-12 - Christophe Grenier
Replace '/' and '\' by '_' when extracting the original filename from a file
2009-04-12 - Christophe Grenier
Code cleanup: remove unused variable
2009-04-12 - Christophe Grenier
Add PhotoRec name in testdisk.spec description
2009-04-08 - Christophe Grenier
PhotoRec: in expert mode, ask if the user want to create a file with all the unidentified sectors.
Add some code to modify PhotoRec to skip some sectors or recover a file with a known location,
it can be usefull for known fragmented file
2009-04-08 - Christophe Grenier
JPG, check the JPG structure before using libjpeg
2009-04-08 - Christophe Grenier
PhotoRec: fix the recovery of sr2 and arw TIFF
2009-04-08 - Christophe Grenier
FAT: Fix the check when listing deleted "." and ".." entries
2009-04-05 - Christophe Grenier
Windows, fix the argument order
2009-04-05 - Christophe Grenier
PhotoRec: sector number in filename is now prefixed with several 0, so the files can be sorted by name without problem
2009-04-05 - Christophe Grenier
file_mov.c: add "jP " header
2009-04-05 - Christophe Grenier
file_doc.c: better check for thumbs.db
2009-04-05 - Christophe Grenier
We are now in 2009
2009-03-25 - Christophe Grenier
PhotoRec: recover AutoSketch drawing .skd
2009-03-25 - Christophe Grenier
PhotoRec: recovers Thumbs.db with a .db extension instead of a .doc
2009-03-25 - Christophe Grenier
Stop FAT directory listing when a entry begins by a null char
2009-03-25 - Christophe Grenier
Compilation fix
2009-03-25 - Christophe Grenier
libewf project has moved to sourceforge
2009-03-22 - Christophe Grenier
Fix sign/unsigness problem
2009-03-22 - Christophe Grenier
Redraw the full screen after a file listing
2009-03-22 - Christophe Grenier
PhotoRec: allow R(egistered) char in txt file
2009-03-22 - Christophe Grenier
PhotoRec: reorganize how TIFF tag are searched
2009-03-22 - Christophe Grenier
PhotoRec: bugfix, reset file_rename pointer in reset_file_recovery()
2009-03-22 - Christophe Grenier
PhotoRec: modify Canon Raw picture .crw EOF footer detection
2009-03-22 - Christophe Grenier
TestDisk: recover exFAT partition
2009-03-15 - Christophe Grenier
PhotoRec: fix for TIFF .fff
2009-03-15 - Christophe Grenier
PhotoRec: limit recursion depth and loop count when checking exe information
2009-03-13 - Christophe Grenier
file_exe.c: Add missing boundary checks
2009-03-11 - Christophe Grenier
PhotoRec: log the correct sector numbers during FAT unformat in expert mode
2009-03-06 - Christophe Grenier
code cleanup: remove unused verbose parameter to disk_get_hpa_dco()
2009-03-06 - Christophe Grenier
code cleanup, fix signed/unsigned warnings
2009-03-06 - Christophe Grenier
code cleanup: remove verbose argument to fewf_init
2009-03-06 - Christophe Grenier
code cleanup: remove verbose argument to add_partition_*()
2009-03-06 - Christophe Grenier
PhotoRec: avoid a false positive with some jpg inside avi
2009-03-01 - Christophe Grenier
PhotoRec: when loading a previous session, avoid sscanf() and strtol() for better performance
2009-03-01 - Christophe Grenier
PhotoRec: Use "Disk identification, please wait..." and "Filesystem analysis, please wait..." messages
2009-02-27 - Christophe Grenier
find_blocksize: fix a bug introduced yesterday
2009-02-26 - Christophe Grenier
PhotoRec: bugfix, don't reset the blocksize if it's already known
2009-02-26 - Christophe Grenier
PhotoRec file_exe.c: Get the original filename from PE fileinfo structure
2009-02-26 - Christophe Grenier
find_blocksize() cleanup
2009-02-26 - Christophe Grenier
PhotoRec: recover some "DB" files
2009-02-26 - Christophe Grenier
file_ace.c: read 4096 bytes instead of 256 when checking the header
2009-02-26 - Christophe Grenier
Use e2fsprogs 1.41.4 instead of 1.41.0 if no version is installed
2009-02-22 - Christophe Grenier
PhotoRec: add the possibility to do a FAT unformat in expert mode
2009-02-22 - Christophe Grenier
Add PE information when building windows binaries
2009-02-20 - Christophe Grenier
TIFF: remove redundant define
2009-02-20 - Christophe Grenier
PhotoRec: extract the filename from the gzip header if available
2009-02-20 - Christophe Grenier
PhotoRec: extract the filename from Diablo II .d2 content
2009-02-20 - Christophe Grenier
PhotoRec: create the infrastructure to set a filename using the file content
2009-02-20 - Christophe Grenier
fidentify: log debug information
2009-02-20 - Christophe Grenier
export find_sectors_per_cluster_aux()
2009-02-18 - Christophe Grenier
PhotoRec: recover Diablo II .d2s and .mk5 files generated by a custom CAD-CAM software
2009-02-18 - Christophe Grenier
PhotoRec: search Ableton Lives Sets .als footer
2009-02-17 - Christophe Grenier
PhotoRec: move get_next_header() and get_next_sector() to the new file pnext.h
2009-02-16 - Christophe Grenier
Fix PhotoRec FAT free space carving, the first sector of cluster 2 was erronously removed from the disk space to analyse.
2009-02-16 - Christophe Grenier
Move find_sectors_per_cluster() and no_of_cluster2part_type() to a separated file
2009-02-16 - Christophe Grenier
PhotoRec: new prototype "void update_blocksize(...)"
2009-02-16 - Christophe Grenier
PhotoRec: add missing description in File Maker Pro 7 .fp7
2009-02-15 - Christophe Grenier
PhotoRec: recover AppleSingle/AppleDouble, File Maker Pro .fp7, Heredis - Genealogy .hr9 and Microsoft SQL Server Log Data File .ldf
2009-02-15 - Christophe Grenier
PhotoRec: add a debug message about the initial sector reading
2009-02-15 - Christophe Grenier
PhotoRec: modify Ableton Live Sets detection
2009-02-15 - Christophe Grenier
fidentify.c: Fix a warning
2009-02-11 - Christophe Grenier
update_search_space_aux(): scan the list backward as the last item is often the one that is searched.
2009-02-11 - Christophe Grenier
If compiled with sudo support, add a sudo menu item for non-root user even if device list isn't empty.
2009-02-11 - Christophe Grenier
PhotoRec: when excluding NTFS allocated space, abort if an error occurs instead of skipping the problem.
2009-02-11 - Christophe Grenier
Add the first sectors number to the log message when copying files from a FAT.
2009-02-11 - Christophe Grenier
PhotoRec: Recovers mov files that begin by a "mdat" container
2009-02-09 - Christophe Grenier
Log error message when fwrite failed
2009-02-09 - Christophe Grenier
Remove unecessary return value for del_search_space()
2009-02-09 - Christophe Grenier
Add manifest files to request highest available execution level under Windows Vista UAC
2009-02-03 - Christophe Grenier
PhotoRec: fix Windows PE .exe file identification bug and recover i386-COFF executable
2009-02-03 - Christophe Grenier
PhotoRec: recover Mozilla XPCOM Type Library .xpt
2009-02-03 - Christophe Grenier
hdaccess.c: fix compilation for cygwin (breakage introduced when fixing compilation warning)
2009-02-03 - Christophe Grenier
PhotoRec: Office document are still not well distinguished between themself...
2009-02-03 - Christophe Grenier
PhotoRec: recover Outlook Nickfile .nk2
2009-02-03 - Christophe Grenier
Fix some compilation warnings
2009-02-03 - Christophe Grenier
PhotoRec: recover MS Visio with .vsd extension
2009-02-03 - Christophe Grenier
configure.ac: libewf checks HAVE_OFF64_T, so defines it
2009-02-01 - Christophe Grenier
Define as static some functions
2009-02-01 - Christophe Grenier
Fix some missing headers for cygwin
2009-02-01 - Christophe Grenier
PhotoRec: recover Fruity Loop .flp files
2009-02-01 - Christophe Grenier
PhotoRec: recover Exchange Database .edb
2009-01-31 - Christophe Grenier
PhotoRec: recover more Pentax .tif as .pef, add missing header
2009-01-31 - Christophe Grenier
Cache optimisation: data is probably in the last buffers
2009-01-31 - Christophe Grenier
comp_FAT() cleanup
2009-01-31 - Christophe Grenier
Use pread() and pwrite() argument style for internal I/O
2009-01-30 - Christophe Grenier
TestDisk: fix name in log
2009-01-29 - Christophe Grenier
Fix a few memory leaks found using Coccinelle, http://www.emn.fr/x-info/coccinelle/
2009-01-27 - Christophe Grenier
src/diskacc.c: Fix typo in warning message
2009-01-27 - Christophe Grenier
Under Windows, use aligned memory for memory allocation bigger than 512 bytes
2009-01-26 - Christophe Grenier
TestDisk: fix a little bug when no log is asked
2009-01-26 - Christophe Grenier
Fix display of partition bigger than 2GB
2009-01-26 - Christophe Grenier
PhotoRec: fix an invalid boundary check when inserting signature
2009-01-26 - Christophe Grenier
Remove redundant check
2009-01-26 - Christophe Grenier
PhotoRec: identify LyX .lyx files
2009-01-22 - Christophe Grenier
Remove duplicated include in src/hdaccess.c
2009-01-22 - Christophe Grenier
PhotoRec: recover APA Style Helper .apa and Cool Edit/Adobe Audition session .ses
2009-01-22 - Christophe Grenier
PhotoRec: recover Lotus Data Interchange Format .dif
Moving Picture Experts Group Audio Layer 3 Uniform Resource Locator.m3u
Reaper Project rpp
Windows Play List.wpl
2009-01-22 - Christophe Grenier
PhotoRec: an icon should be square and 16 pixels minimum
2009-01-22 - Christophe Grenier
PhotoRec: remove useless include
2009-01-22 - Christophe Grenier
PhotoRec: add boundary checking for gz, jpg and pdf
2009-01-22 - Christophe Grenier
PhotoRec: fix endless loop
2009-01-22 - Christophe Grenier
PhotoRec: identified some constants as is
2009-01-20 - Christophe Grenier
PhotoRec: recover Java .class, Python Compiled Script .pyc, Timezone info and XV thumbnail image
2009-01-18 - Christophe Grenier
PhotoRec: recover Windows ico icons
2009-01-18 - Christophe Grenier
PhotoRec: recover TrueType Font .ttf files
2009-01-18 - Christophe Grenier
PhotoRec: recover Drawing Interchange File .dxf files
2009-01-18 - Christophe Grenier
fidentify: determine file type using PhotoRec signatures
2009-01-18 - Christophe Grenier
PhotoRec: move init_file_stats() to filegen.c
photorec_bf() prototype cleanup
2009-01-18 - Christophe Grenier
src/ext2.c: code cleanup
2009-01-18 - Christophe Grenier
file_ext.c: remove a dependency to ext2.c
2009-01-18 - Christophe Grenier
Add missing header
2009-01-18 - Christophe Grenier
PhotoRec: allow "uuid" type in mov files
2009-01-14 - Christophe Grenier
PhotoRec: recover .hds Parallels disk image and .mxf Material Exchange Format video
2009-01-14 - Christophe Grenier
Add multiple file selection in NTFS undelete
2009-01-14 - Christophe Grenier
qphotorec: non-fonctionnal QT prototype of PhotoRec
2009-01-14 - Christophe Grenier
Split ncurses text interface from functions
2009-01-14 - Christophe Grenier
Let the user choose to fix or not the MFT only if file can be listed.
2009-01-14 - Christophe Grenier
Don't recover NTFS partition with 0 data sector
2009-01-14 - Christophe Grenier
PhotoRec: try to find ShadowProtect spf filesize (Recovered file may be truncated)
2009-01-14 - Christophe Grenier
PhotoRec: check Outlook dbx filesize
2009-01-10 - Christophe Grenier
Modify header files for C function declaration if C++ compilation
2009-01-10 - Christophe Grenier
HFS+, HFSX: check the version field to reduce false positive
2009-01-04 - Christophe Grenier
Fix for C++ compilation
2009-01-04 - Christophe Grenier
PhotoRec: recover ape Monkey's Audio compressed format and mfa, The Games Factory Multimedia Fusion Files
2009-01-04 - Christophe Grenier
PhotoRec: uses TIFF tag to detect the filesize, get the picture date/time and the camera manufacturer.
2009-01-04 - Christophe Grenier
PhotoRec: detect gif filesize
2009-01-04 - Christophe Grenier
Fix for C++ compilation
2009-01-04 - Christophe Grenier
Fix warning for automake 1.10.1
Don't generate an error when windres is missing
Search uuid_create and uuid_generate first in C standard library before using other library
e2fsprogs 1.41.3 may use pthread, so when creating a static version, pthread flags must be added
2008-12-29 - Christophe Grenier
Do not allow HFS partition with 0 allocation block.
2008-12-29 - Christophe Grenier
Set a 0 sector size in TestDisk FAT boot sector code.
This way no FAT is reported when scanning TestDisk executable
2008-12-16 - Christophe Grenier
PhotoRec: recover ShadowProtect spf and APple Logic Studio files
2008-11-28 - Christophe Grenier
NTFS MFT repair: Warn if the file listing doesn't contain more than 2 directory entries '.' and '..'
2008-11-28 - Christophe Grenier
Close the log file before exit().
2008-11-18 - Christophe Grenier
PhotoRec: recover Agelong Tree Database/Abs0luteDatabase .atd files
2008-11-18 - Christophe Grenier
PhotoRec: Don't marked as D(eleted) an entry (ie. whole disk) that is not a partition
2008-11-18 - Christophe Grenier
When searching for a partition, TestDisk can read up to one cylinder after
the supposed end of disk.
2008-11-18 - Christophe Grenier
ext2/ext3/ext4 superblock research, display partition name
2008-11-18 - Christophe Grenier
dir.c: code cleanup
2008-11-16 - Christophe Grenier
Fix a bug in gzip parser discovered by LLVM/Clang Static Analyzer
2008-11-16 - Christophe Grenier
Code cleanup after using LLVM/Clang Static Analyzer
2008-11-16 - Christophe Grenier
When copying filenames, try to deal more efficently with filename restriction
2008-11-13 - Christophe Grenier
NTFS file copy: fix memory leak when copied failed.
2008-11-13 - Christophe Grenier
PhotoRec: recover WavPack, Hybrid Lossless Wavefile Compressor, .wv files
2008-11-13 - Christophe Grenier
Move attr variable definition more local in ntfs_utl.c
2008-11-13 - Christophe Grenier
PhotoRec: recover Cue sheet .cue files
2008-11-13 - Christophe Grenier
PhotoRec: declare as const some variables in file_mp3.c
2008-11-13 - Christophe Grenier
Update release to November 2008
2008-11-10 - Christophe Grenier
Under Windows, if log file can't be created in current directory, try to create it in home directory.
2008-11-10 - Christophe Grenier
Additional tests for device configuration identify (DCO) results
2008-11-10 - Christophe Grenier
TestDisk: identify Linux md created on big endian architecture
2008-11-10 - Christophe Grenier
Defined more functions as static
2008-10-28 - Christophe Grenier
PhotoRec: distinguish .csv from .txt
2008-10-28 - Christophe Grenier
PhotoRec:recover .sqm Windows Live Messenger Log File
2008-10-28 - Christophe Grenier
FAT1x directory listing, check for valid root directory size
2008-10-28 - Christophe Grenier
TestDisk, replace "Do you want to save disk file image.dd" by "Do you want to save partition file image.dd"
2008-10-08 - Christophe Grenier
PhotoRec: recover tar.gz with the correct extension instead of .gz
2008-10-07 - Christophe Grenier
PhotoRec: recover Php Video Pro .pvp files
2008-10-07 - Christophe Grenier
TestDisk: Add fullpathname parameter to display filename with the pathname
ie "testdisk /cmd device advanced,list,recursive,fullpathname"
2008-10-07 - Christophe Grenier
Display a warning if HPA or DCO is present
2008-10-07 - Christophe Grenier
Store hpa and dco values in the disk internal structure
2008-10-07 - Christophe Grenier
TestDisk: distinguish between "advanced,list" and "advanced,undelete"
2008-10-06 - Christophe Grenier
Linux version: log Host Protect Area (HPA) and Device Configuration Overlay (DCO) information
2008-10-06 - Christophe Grenier
PhotoRec: recover Turbo Tax .tax files
2008-10-06 - Christophe Grenier
Portability fixes for OpenBSD when e2fsprogs port is used
2008-10-06 - Christophe Grenier
List deleted files instead of normal files when choosing Undelete for a partition forced as NTFS
2008-10-06 - Christophe Grenier
Add logname option, usefull for people running several testdisk or photorec at once
2008-10-06 - Christophe Grenier
NTFS undelete: display "c to copy" only if files have been found.
2008-09-26 - Christophe Grenier
PhotoRec: for jpeg, get the date/time from the photo itself instead of the first date/time present in the EXIF header
2008-09-23 - Christophe Grenier
PhotoRec: add Sisporto sp3/spm file recovery
2008-09-23 - Christophe Grenier
Don't split read access if the two previous read IO have failed.
2008-09-23 - Christophe Grenier
Avoid a division by zero when a value of 0 cylinder is returned.
2008-09-18 - Christophe Grenier
PhotoRec: add Apple binary property list .abcdp recovery
2008-09-18 - Christophe Grenier
TestDisk: in Advanced menu, 'a' may be used to temporary add a partition
2008-09-18 - Christophe Grenier
Remove unexpected global variable in md.c
2008-09-11 - Christophe Grenier
PhotoRec: fix header check order
2008-09-10 - Christophe Grenier
Create the partition image in the current directory when "/cmd device advanced,copy" is used
2008-09-10 - Christophe Grenier
ext2 file listing: fix a one byte overflow
2008-09-09 - Christophe Grenier
PhotoRec: avoid an out of bound read access when parsing some corrupted doc/xls/... document
2008-09-08 - Christophe Grenier
PhotoRec: modify internal representation of files during recovery
2008-08-31 - Christophe Grenier
PhotoRec: better signature for Pentax .pef
2008-08-31 - Christophe Grenier
PhotoRec: avoid out-of-bound read access when extracting jpeg date
2008-08-31 - Christophe Grenier
Less strict check on "." and ".." entries for FAT directory
2008-08-30 - Christophe Grenier
PhotoRec: When only free space is carved, after the data search,
return to the partition selection as list_search_space has been modified
2008-08-28 - Christophe Grenier
win32: add debug code in disk_get_sector_size_win32
2008-08-25 - Christophe Grenier
Split the interface in several files, part 2
Text interface needs 24 lines instead of 25
2008-08-25 - Christophe Grenier
May want to use carvpath for in-place carving in the futur
2008-08-25 - Christophe Grenier
Fix for NTFS undelete when filename isn't found
2008-08-24 - Christophe Grenier
Split the interface in several files
Initial work to handle 24 lines and more than 25
2008-08-22 - Christophe Grenier
PhotoRec: code cleanup, use common list in alloc_list_t structure
2008-08-22 - Christophe Grenier
PhotoRec: little optimisation when searching a pattern in zip file
2008-08-22 - Christophe Grenier
PhotoRec: get the extension from name listed in OLE root directory
2008-08-21 - Christophe Grenier
PhotoRec: index pattern search to speedup operation
2008-08-21 - Christophe Grenier
PhotoRec: minor optimisation for zip recovery
2008-08-21 - Christophe Grenier
PhotoRec: add specific header for mov identification
2008-08-14 - Christophe Grenier
PhotoRec: convert the structure holding the list of filechecks
2008-08-14 - Christophe Grenier
PhotoRec: code cleanup, a specific function to search for blocksize has been created.
2008-08-14 - Christophe Grenier
PhotoRec: create a specific function to set the recovered filename
2008-08-14 - Christophe Grenier
PhotoRec: recover MS compress file (SZDD)
2008-08-14 - Christophe Grenier
Enable MFT repair in expert mode when the NTFS boot sector is ok even if its backup isn't
2008-08-11 - Christophe Grenier
Sort deleted NTFS files
2008-08-09 - Christophe Grenier
Remove unused code in NTFS undelete
2008-08-09 - Christophe Grenier
Rename filestat to stat in struct dir_data
2008-08-09 - Christophe Grenier
NTFS undelete: filename in the root directory should start by "/" and not "./"
2008-08-07 - Christophe Grenier
Log sector size and disk model when rejecting a device with a size of 0 byte.
2008-08-07 - Christophe Grenier
PhotoRec: recover ER Mapper Rasters (ERS) ascii header
2008-08-07 - Christophe Grenier
TestDisk: When copying deleted file from NTFS partition, create the sub-directories on the destination if missing.
Convert filenames if needed.
2008-08-06 - Christophe Grenier
EFI GPT: when changing the partition type, select by default the current type
2008-08-05 - Christophe Grenier
TestDisk: add initial support for NTFS undelete
2008-08-05 - Christophe Grenier
PhotoRec: add support for
- Ahnenblatt .ahn
- Microsoft Dynamics NAV (MS Navision) fbk/fdb/fob
- Wink .wnk
- tcpdump capture file .pcap
2008-08-05 - Christophe Grenier
Fix some compilation warning when ncurses isn't used
2008-08-05 - Christophe Grenier
TestDisk: add hints to locate partition beginning at 0/1/1 even if the geometry is wrong
2008-08-05 - Christophe Grenier
PhotoRec: fix search for "!/bin/bash" shell script
2008-07-30 - Christophe Grenier
PhotoRec: avoid to split mov, stricter check for m2ts, m2t, ogg anti-split check
2008-07-30 - Christophe Grenier
PhotoRec: search for "!/bin/bash" shell script
Try to improve emlx mail recovery
2008-07-30 - Christophe Grenier
Allow to navigate in some menus using 2, 4, 5, 6 and 8 keys instead of arrow keys
2008-07-18 - Christophe Grenier
Store disk geometry in cylinders/heads_per_cylinder/sectors_per_head instead of CHS
2008-07-17 - Christophe Grenier
Fix RPM spec file
2008-07-17 - Christophe Grenier
TestDisk & PhotoRec 6.10 release
2008-07-17 - Christophe Grenier
PhotoRec: add Sibelius .sib file format
2008-07-17 - Christophe Grenier
Cleanup compile.sh script
2008-07-14 - Christophe Grenier
Distinguish ext4 from ext3 filesystem
2008-07-14 - Christophe Grenier
PhotoRec: avoid false positive when recovering MS Publisher files
2008-07-13 - Christophe Grenier
Fix compilation for FreeBSD
2008-07-13 - Christophe Grenier
Add missing include
2008-07-13 - Christophe Grenier
Remove unused function declaration
2008-07-13 - Christophe Grenier
FAT directory listing, raise the maximum number of cluster for a single directory to 30 clusters instead of 10.
2008-07-13 - Christophe Grenier
When listing files, very long filenames may corrupted the screen. Rewrite the bottom of the screen.
2008-07-07 - Christophe Grenier
PhotoRec: add "/cmd device ext2_group,group_nr,search" to carve the corresponding ext2/ext3 group number
or "/cmd device ext2_inode,inode_nr,search" to carve the group holding the specified inode
2008-07-07 - Christophe Grenier
PhotoRec: add Paint Shop Pro .psp Image File
2008-07-07 - Christophe Grenier
TestDisk: add /cmd device advanced,list parameter
2008-07-07 - Christophe Grenier
PhotoRec: decompress found gzip to check for KMyMoney .kmy
2008-07-07 - Christophe Grenier
Add -v[ersion] parameter to TestDisk & PhotoRec
2008-07-05 - Christophe Grenier
FAT: Fix confusion between cluster_size and sectors_per_cluster
2008-07-05 - Christophe Grenier
PhotoRec: add missing free_search_space() header
2008-07-03 - Christophe Grenier
PhotoRec: organize how the range of sectors to carve is initialized.
2008-07-03 - Christophe Grenier
TestDisk: add Undelete in the Advanced menu for FAT and ext2
2008-07-03 - Christophe Grenier
File undelete for ext2
2008-07-03 - Christophe Grenier
Source cleanup in ext2p.[ch]
2008-06-30 - Christophe Grenier
When searching for the first partition, try to deal with incorrect geometry
2008-06-30 - Christophe Grenier
Mac partition table, don't forget to list FAT32
2008-06-30 - Christophe Grenier
Code cleanup in interface_partition_type_ncurses()
2008-06-30 - Christophe Grenier
Autoset the CHS/sector unit when geometry is changed.
2008-06-30 - Christophe Grenier
PhotoRec: recover Olympus Raw File .orf begiining by "IIRO"
2008-06-30 - Christophe Grenier
FAT32 partition named EFI are now set as GPT_ENT_TYPE_EFI by default
2008-06-30 - Christophe Grenier
Users can change the EFI partition type and the filesystem type for GPT
2008-06-30 - Christophe Grenier
When using libncurses.a under MacOS X, users may be unable to use the arrow keys.
Don't use libncurses.a by default
2008-06-23 - Christophe Grenier
Make the code less C++ hostile
2008-06-23 - Christophe Grenier
Mac: ncurses static library may be used
PhotoRec: add Ableton Live Sets .als file format
PhotoRec: safer prototype for del_search_space() and update_search_space_aux()
2008-06-23 - Christophe Grenier
PhotoRec: code cleanup in ntfs_remove_used_space()
2008-06-23 - Christophe Grenier
When rebuilding the NTFS boot sector, log the information before the read()
operation
2008-06-23 - Christophe Grenier
When navigating, allow to follow symlink
2008-06-23 - Christophe Grenier
PhotoRec: add file format name near the extension
2008-06-13 - Christophe Grenier
PhotoRec, add support for
- AlphaCAM amd/amt/atd/att
- arj Archive
- asm Pro/ENGINEER Assembly
- chm MS Windows HtmlHelp Data
- drw Pro/ENGINEER Drawing
- frm Pro/ENGINEER Drawing Form
- mfg Pro/ENGINEER Manufacturing
- prt Pro/ENGINEER Model
- stl Stereolithography CAD
- tph Pro/ENGINEER ToolPath
- wks Lotus 1-2-3
2008-06-13 - Christophe Grenier
PhotoRec: support for Standard for the Exchange of Product model data (stp) and
StereoLithography (STL) Ascii format
2008-06-13 - Christophe Grenier
Fix description for Mysql
2008-06-13 - Christophe Grenier
PhotoRec: add Licom AlphaCAM amb support
2008-06-13 - Christophe Grenier
PhotoRec: define constants so filesize can be limited to 16 or 32 bits
2008-06-11 - Christophe Grenier
PhotoRec: add more command line parameters for "/cmd" and sessions
2008-06-11 - Christophe Grenier
PhotoRec: recover Opera Hotlist .adr
2008-06-10 - Christophe Grenier
PhotoRec: it's not possible to get the file size for encrypted GnuPG message without the password
2008-06-10 - Christophe Grenier
PhotoRec: fix out of bound read access
2008-06-10 - Christophe Grenier
Update to e2fsprogs 1.40.10
2008-06-02 - Christophe Grenier
Fix filenames when copying accentuated filenames from a FAT under MacOSX
2008-06-01 - Christophe Grenier
Compilation fix for system without ncurses
2008-06-01 - Christophe Grenier
Portability fix for system missing S_IRUSR, S_IWUSR, S_IXUSR...
2008-06-01 - Christophe Grenier
sleep() doesn't exist under mingw32
2008-06-01 - Christophe Grenier
PhotoRec: recover Digital Speech Standard v2 .ds2 files
2008-05-30 - Christophe Grenier
PhotoRec: check the algo value used by public key packet
2008-05-30 - Christophe Grenier
Log the partition table type autodetected
2008-05-30 - Christophe Grenier
Detect Software (ATA)Raid configured (disk level) via dmraid
2008-05-30 - Christophe Grenier
PhotoRec: Stricter check for Fortran recovery
2008-05-30 - Christophe Grenier
Fix Real Audio .ra recovery
2008-05-30 - Christophe Grenier
PhotoRec: Better signature for .pcx bitmap images
2008-05-30 - Christophe Grenier
PhotoRec: Better signature for Mac Picture .pct
2008-05-30 - Christophe Grenier
Better signature for MPEG file beginning by a system header start code
2008-05-30 - Christophe Grenier
PhotoRec: Incredimail recovery wasn't working, fix it
2008-05-30 - Christophe Grenier
Extract date/time from Digital Speech Standard dss files
2008-05-30 - Christophe Grenier
bugfix: TestDisk can be compiled without e2fsprogs again
2008-05-28 - Christophe Grenier
PhotoRec: support for Sony Vegas .veg and SQLite database
2008-05-28 - Christophe Grenier
Update libewf to 20080501 in Linux RPM spec file
2008-05-27 - Christophe Grenier
PhotoRec: recover Adaptive Multi-Rate .amr audio file and Personal Ancestral File .paf
2008-05-27 - Christophe Grenier
wgetch_nodelay() and wmenuUpdate() can be static
2008-05-27 - Christophe Grenier
Keep corrupted files by default
2008-05-27 - Christophe Grenier
Scan for /dev/mmcblk?
2008-05-27 - Christophe Grenier
PhotoRec: distinguish Fortran from .txt
2008-05-27 - Christophe Grenier
More robust mp3 detection
2008-05-27 - Christophe Grenier
PhotoRec: m2t support
2008-05-27 - Christophe Grenier
support for file copy from ext2/ext3
2008-05-27 - Christophe Grenier
Update PhotoRec man page, device can be a parameter
2008-05-27 - Christophe Grenier
Test chmod function availability
2008-05-19 - Christophe Grenier
PhotoRec: FileOpts can use more than 25 lines
2008-05-19 - Christophe Grenier
Antivirus under Windows can conflict with PhotoRec when PhotoRec tries
to overwrite a file it has recovered a few secondes before.
Introduce a retry when opening files
2008-05-19 - Christophe Grenier
PhotoRec: recover DVD Video manager or title set .ifo
2008-05-19 - Christophe Grenier
Disable RepairMFT if partition has been found using backup boot sector.
2008-05-18 - Christophe Grenier
PhotoRec: support for vcalendar .ics and Mozilla "mork database" .msf files
2008-05-18 - Christophe Grenier
Support for OpenBSD uuid library
2008-05-14 - Christophe Grenier
PhotoRec: partial support for GPG/OpenPGP file recovery
2008-05-14 - Christophe Grenier
Fix filename_to_directory() for cygwin
2008-05-14 - Christophe Grenier
PhotoRec: distinguish Sony ARW from TIFF
2008-05-06 - Christophe Grenier
Display full filename when terminfo file (ie testdisk-6.10-WIP/win/c/cygwin) is missing
2008-05-06 - Christophe Grenier
Display a warning about the geometry after Quick Search and Deeper Search if necessary (Fix regression in 6.9)
2008-05-06 - Christophe Grenier
PhotoRec: recover jpeg files that begin by a COM marker
2008-05-06 - Christophe Grenier
Update to libewf 20080501
2008-05-01 - Christophe Grenier
Update to "May 2008"
2008-05-01 - Christophe Grenier
Fix a warning in Linux software RAID md
2008-05-01 - Christophe Grenier
Uses Mac OS specific function to get device sector size and device size
Fix compute_device_size() incorrect pread return value check
2008-05-01 - Christophe Grenier
When listing local directories, directories first, files next, both sorted by name (. and .. always first)
Allow navigation using numerical keys
Fix for DOS version
2008-05-01 - Christophe Grenier
Add td_list_add_sorted() function for insertion in a sorted list
2008-04-29 - Christophe Grenier
PhotoRec: recover NASA Flexible Image Transport System (FITS) and Blu-ray MPEG-2 m2ts
2008-04-29 - Christophe Grenier
Deleted files can be shown or not when listing files.
2008-04-29 - Christophe Grenier
Log error string when a file can't be created
2008-04-29 - Christophe Grenier
Software Raid md 1.x chunksize can be 0
2008-04-29 - Christophe Grenier
Update to libewf 20080322
2008-04-29 - Christophe Grenier
Bugfix: add missing fewf_sync() function to EWF
Fix reported size (2048 TB instead of 0) for some broken USB device under Windows
2008-04-22 - Christophe Grenier
PhotoRec: recover Microsoft Works Database .wdb
2008-04-22 - Christophe Grenier
Geometry menu can be used to force a 256 bytes sector size.
Current geometry is logged prior modification.
PhotoRec: Handle 256 bytes blocksize to recover files inside MS Backup archive
PhotoRec: When expert mode is enabled, it's possible to change the blocksize even
if blocksize was already known from filesystem.
2008-04-22 - Christophe Grenier
Icons have been moved in a separate directory
2008-04-22 - Christophe Grenier
Update readme.txt for darwin, dos and win
2008-04-16 - Christophe Grenier
PhotoRec: add recovery of pfx files holding PKCS#12 keys
2008-04-16 - Christophe Grenier
RIFF Cubase cpr filesize is big-endian
2008-04-14 - Christophe Grenier
Allow left, right and enter key while selecting a partition type
2008-04-14 - Christophe Grenier
Detect ncursesw/ncurses.h header presence
2008-04-14 - Christophe Grenier
Use IOCTL_DISK_GET_LENGTH_INFO to get disk size under Windows, it works with
Windows Dynamic Disk.
2008-04-11 - Christophe Grenier
Log compilation date/time
2008-04-11 - Christophe Grenier
Reorganize how disk geometry, size and sector size is gathered
2008-04-11 - Christophe Grenier
Avoid unused variable when not using sudo
2008-04-11 - Christophe Grenier
Don't display harddisk geometry in the warning message about read-only device
2008-04-11 - Christophe Grenier
Try to better deal with partition ending near disk size limit
2008-04-11 - Christophe Grenier
PhotoRec: Fix when only txt and/or mov files are selected for recovery.
2008-04-11 - Christophe Grenier
FAT32 partition listing: apply bit-mask to inode number, check for "." entry before listing files
2008-04-11 - Christophe Grenier
Allow pathname up to 1024 chars instead of 255
2008-04-11 - Christophe Grenier
Add td_min(), td_max() functions
2008-04-11 - Christophe Grenier
Partition type modification: only use number for Intel and Sun, otherwise select in a list.
2008-04-11 - Christophe Grenier
Can list by pressing 'l' in the Advanced menu (key usage not displayed)
2008-04-11 - Christophe Grenier
Update header checks
2008-04-09 - Christophe Grenier
Search for /dev/mapper/* and /dev/md? device under Linux
Under Windows, compare the device model to avoid disk duplicate
2008-04-09 - Christophe Grenier
Limit recovered .xcf filesize to 1GB
2008-04-07 - Christophe Grenier
PhotoRec: fix for zip recovery on 64-bits plateform
2008-04-07 - Christophe Grenier
PhotoRec: fix html signature detection
2008-04-07 - Christophe Grenier
PhotoRec: distinguish Debian Archive .deb from .a
2008-04-07 - Christophe Grenier
code cleanup: rename aff_buffer() fixup
2008-04-03 - Christophe Grenier
code cleanup: rename aff_buffer()
2008-04-02 - Christophe Grenier
PhotoRec: detect .iso filesize
2008-04-02 - Christophe Grenier
PhotoRec: read 512k chunks instead of 128k
2008-04-02 - Christophe Grenier
Resize HD cache buffer when request is too big for the current buffer instead of splitting the request
2008-04-02 - Christophe Grenier
tab_insert() is static
2008-04-02 - Christophe Grenier
For text recovery only check the first 2048 bytes
2008-04-02 - Christophe Grenier
In testdisk.spec add BuildRequires: ntfsprogs-devel
Don't build static by default
2008-04-02 - Christophe Grenier
Disable crypto for ntfsprogs compilation
Fix configure --enable-sudo and --enable-missing-uuid-ok
Check io.h header for mingw
2008-03-29 - Christophe Grenier
Add .iso file support (Don't always work)
2008-03-29 - Christophe Grenier
Add Windows RE(store) partition type for PC/Intel partition
2008-03-29 - Christophe Grenier
PhotoRec: for JPEG files, fix conversion from time/date store in Exif header to Unix time
2008-03-29 - Christophe Grenier
PhotoRec: for gzip files, extract the time/date from header and set the file time
2008-03-25 - Christophe Grenier
Need debug>1 to display an hexdump of windows IOCTL_STORAGE_QUERY_PROPERTY buffer
2008-03-25 - Christophe Grenier
Fix TestDisk welcome message
2008-03-24 - Christophe Grenier
Fix for NTFS listing: only hides system files beginning by '$' (not . and ..)
2008-03-24 - Christophe Grenier
Reports OS version and compiler version
2008-03-24 - Christophe Grenier
Move rebuild_FAT_BS, FAT_init_rootdir and repair_FAT_table headers to fat_adv.h
2008-03-24 - Christophe Grenier
Don't define menuNTFS/menuEXT2 if libntfs/libext2 is missing
2008-03-24 - Christophe Grenier
Fix preprocessor directive in partgpt.c
2008-03-24 - Christophe Grenier
add a cast for iconv call
2008-03-24 - Christophe Grenier
add a format attribute to log_handler()
2008-03-24 - Christophe Grenier
make vaff_txt() static
2008-03-24 - Christophe Grenier
fsync function may be missing, fix for mingw
2008-03-24 - Christophe Grenier
Search for a partition where Vista usually creates the first one even if the user don't enable Vista search
2008-03-24 - Christophe Grenier
include mingw/io.h for mkdir()
2008-03-24 - Christophe Grenier
check for cygwin/version.h, windows.h headers and fsync()
Add some compiler warning flags
2008-03-23 - Christophe Grenier
Links to tinfo library if available, solves "make static" under F-7
2008-03-23 - Christophe Grenier
Fix compile.sh
2008-03-20 - Christophe Grenier
Log the partition table type autodetected
2008-03-20 - Christophe Grenier
Don't scan too much after the end of the disk as defined by the user
2008-03-20 - Christophe Grenier
Use LIBEWF_VERSION_STRING instead of LIBEWF_VERSION if available
2008-03-20 - Christophe Grenier
Update compile.sh to avoid unnecessary download
2008-03-14 - Christophe Grenier
PhotoRec: for JPEG files, extract the time/date from Exif header and set the file time
2008-03-14 - Christophe Grenier
When loading FileOpts saved options, don't log the option by default
2008-03-14 - Christophe Grenier
Better description about MFT fixing
2008-03-14 - Christophe Grenier
After writing a new partition table don't prompt the user when TestDisk execution is driven by command line arguments
2008-03-14 - Christophe Grenier
Fix SC V10 .dc header
2008-03-14 - Christophe Grenier
PhotoRec: identify MS Publisher .pub files
2008-03-14 - Christophe Grenier
In latest libewf beta, libewf_get_bytes_per_sector() and libewf_get_media_size() take 2 arguments
2008-03-10 - Christophe Grenier
PhotoRec: add Ghost .gho recovery
2008-03-10 - Christophe Grenier
PhotoRec: Load and save FileOpts settings
2008-03-10 - Christophe Grenier
Add a warning when fixing MFT
2008-03-10 - Christophe Grenier
Get disk model under Windows
2008-03-09 - Christophe Grenier
TSCe Survey Controller DC v10.0 recovery
2008-03-09 - Christophe Grenier
Add /cmd device ...,list,recursive support
2008-03-09 - Christophe Grenier
Update headers check and e2fsprogs version
2008-02-28 - Christophe Grenier
Remove the possibility to add a partition for non-partionned disk
2008-02-28 - Christophe Grenier
Hide NTFS system files but not files beginning by '$'
2008-02-27 - Christophe Grenier
Use better description in Advanced menu
2008-02-27 - Christophe Grenier
PhotoRec: in FileOpts, press 's' to deselect all files or reset to default settings
2008-02-27 - Christophe Grenier
Change the display unit when changing the partition type
2008-02-27 - Christophe Grenier
partmac.c: code cleanup
2008-02-27 - Christophe Grenier
HFS/HFS+: replace superblock by volume header name
2008-02-25 - Christophe Grenier
PhotoRec: Flow Cytometry Standard 3.0 recovery support
2008-02-25 - Christophe Grenier
Remove Mac and Sun partition signature when writing an Intel partition table
2008-02-25 - Christophe Grenier
file undelete for FAT filesystem
2008-02-20 - Christophe Grenier
PhotoRec: add VectorWorks .mcd support
file_doc.c: fix unchecked return value of fread
file_mcd.c: fix invalid initialization
2008-02-20 - Christophe Grenier
TestDisk 6.9 released
2008-02-13 - Christophe Grenier
Fix memory leak in file_zip.c, uninitialized variable in phrrecn.c and invalid ncurses usage in dimage.c
2008-02-11 - Christophe Grenier
Bugfix for invalid ncurses usage after disk imaging
2008-02-10 - Christophe Grenier
Compatibility fix for e2fsprogs 1.40.6
Fix some gcc warnings
2008-02-08 - Christophe Grenier
Mix interactive and cli mode in PhotoRec
2008-02-08 - Christophe Grenier
Windows Enhanced MetaFile .emf support for PhotoRec
2008-02-05 - Christophe Grenier
Use IOCTL_DISK_GET_DRIVE_GEOMETRY_EX under Windows to get disk size (Fix boggus size with some internal USB card reader)
Report disk model under Linux
2008-02-05 - Christophe Grenier
Fix recovery of UTF8 text file
Fix ask_testdisk_log_creation prototype
2008-02-05 - Christophe Grenier
PhotoRec: Macintosh Picture.pct support
PhotoRec: SunPCI Disk Image
2008-02-01 - Christophe Grenier
MS Windows Link support
XBOX GTA San Andreas Save File support
2008-02-01 - Christophe Grenier
PhotoRec pseudo partition Whole Disk listed as "No partition"
Add comments about MS Office document maximal size
2008-02-01 - Christophe Grenier
Update spec file to add libewf support in RPM
Drop dos/testdisk.bat
2008-01-14 - Christophe Grenier
PhotoRec: expert can stop pass 0 and set the blocksize
2008-01-11 - Christophe Grenier
PhotoRec: Final Cut Pro .fcp support
2008-01-11 - Christophe Grenier
fix session error message
2008-01-11 - Christophe Grenier
PhotoRec: Digital Speech Standard (.dss) support
2008-01-10 - Christophe Grenier
Rename variable interface to ncurses_interface as interface may be defined
2008-01-09 - Christophe Grenier
Fix log creation
2008-01-09 - Christophe Grenier
add image file creation from partition
2008-01-09 - Christophe Grenier
Add image parameter in photorec man page
fix typo in PhotoRec
2008-01-04 - Christophe Grenier
TestDisk FAT and NTFS Advanced boot menu interface, automaticaly positioned to BackupBS or OrgBS
TestDisk Update the disk size if head count is modified
PhotoRec: display "Next" if necessary in file list
PhotoRec: recover Internet Explorer index.dat file
PhotoRec: "Mode EXT2/EXT3" option -> "Ext2/ext3 mode"
2007-12-28 - Christophe Grenier
Add new parameter to enable/disable all filetype recovery: photorec /cmd device ...,fileopts,everything,disable"
MPG recovery: check size defined by video sequence start code
2007-12-28 - Christophe Grenier
Support for file copy from FAT filesystem
2007-12-28 - Christophe Grenier
Fix compilation problem with "gcc -O0" (no optimisation)
2007-12-28 - Christophe Grenier
com_err library may be needed by ext2fs library
2007-12-23 - Christophe Grenier
Remove header_check from struct file_hint_struct
Add Microsoft Visual Studio Resource file .res support
2007-12-23 - Christophe Grenier
Rename find_in_mem() to td_memmem()
Add Maya .mb and .mp file support to PhotoRec
2007-12-21 - Christophe Grenier
Add Outlook .msg, MS VB .cls detection in PhotoRec
2007-12-21 - Christophe Grenier
In expert mode during RepairMFT, user can choose between MFT and MFTmirror if TestDisk can't find the correct one.
2007-12-15 - Christophe Grenier
Fix for read-only loopback device, thanks to Andries Brouwer for reporting the problem.
2007-12-15 - Christophe Grenier
Fix write for DOS version
2007-12-06 - Christophe Grenier
Move string/mem search in a separate file
2007-12-06 - Christophe Grenier
Avoid malloc(0) in NTFS code
2007-12-06 - Christophe Grenier
Better handle FAT filenames
Rename filenames while copying under Dos and Windows
2007-12-06 - Christophe Grenier
"testdisk -lu device" will list the partition with sector unit
2007-12-05 - Christophe Grenier
Handle Mac partition table partially overwritten by an Intel partition
2007-12-05 - Christophe Grenier
Fix some FAT & NTFS read/write
2007-12-05 - Christophe Grenier
Fix disk cache sync and disk error handling
2007-12-02 - Christophe Grenier
PhotoRec: add support for Microsoft OneNOte .one file
2007-12-02 - Christophe Grenier
Add some synchronisation points, should help to deal with unexpected program termination
2007-12-02 - Christophe Grenier
Start to reorganise how disk/file access works
2007-11-28 - Christophe Grenier
PhotoRec: fix txt and non-linearized pdf recovery
2007-11-28 - Christophe Grenier
Can use sudo if user is not root
2007-11-27 - Christophe Grenier
PhotoRec: detect HP Photosmart Photo Printing Album .albm files
2007-11-27 - Christophe Grenier
PhotoRec: check blender .bld content
2007-11-27 - Christophe Grenier
Use e2fsprogs 1.40.2
2007-11-21 - Christophe Grenier
Fix fat32_get_prev_cluster and FAT code cleanup
2007-11-19 - Christophe Grenier
Fix for type change when there is no partition table
2007-11-19 - Christophe Grenier
Add KeepAssX .kdb support to PhotoRec
2007-11-19 - Christophe Grenier
FAT volume name may contain lowercase chars
2007-11-16 - Christophe Grenier
Add ncurses parameters in configure
2007-11-16 - Christophe Grenier
Fix for big FAT filesystem
2007-11-13 - Christophe Grenier
IO redirection for alt. superblock/bs is enabled before file listing
2007-11-13 - Christophe Grenier
Use BLKROGET ioctl call to detect read-only loop device under Linux
2007-11-13 - Christophe Grenier
Add support for Corel Documents .wpd
2007-11-13 - Christophe Grenier
Remove src/Makefile.in, it's a generated file
2007-11-07 - Christophe Grenier
NTFS: log more information when repairing MFT
2007-11-06 - Christophe Grenier
Handle unicode filenames in display and when copying files from an NTFS partition
Thanks to Kenneth, C H LEE for the first patch
2007-11-02 - Christophe Grenier
- Use wprintw ncurses function instead of a custom one
- src/file_mov.c: Fix a compilation error if DEBUG_MOV is defined
29/10/2007 - 6.9-WIP
- PhotoRec: fix .mov recovery
- PhotoRec: add Acronis True Image .tib
28/10/2007 - 6.9-WIP
- PhotoRec: raise maximum file size limit
23/10/2007 - 6.9-WIP
- PhotoRec: add Vmware .vmdk detection
- TestDisk: replace "Proceed" and "Search!" by "Quick Search" and "Deeper Search" in the interface
17/10/2007 - 6.9-WIP
- TestDisk: replace non valid chars in filenames when copying files.
- TestDisk: add a warning screen when the media is in read-only.
- Identify DOS_FAT_32 correctly under Mac
15/10/2007 - 6.9-WIP
- TestDisk: Linux md 1.0/1.1/1.2 software raid detection.
14/10/2007 - 6.9-WIP
- lot of endianess fix on big endian CPU
13/10/2007 - 6.9-WIP
- PhotoRec: Allow to search in ext2/ext3 unallocated space only.
11/10/2007 - 6.9-WIP
- Additional fix for ntfsprogs 2.0
04/10/2007 - 6.9-WIP
- Mac HFSX partition support
03/10/2007 - 6.9-WIP
- EFI GPT write support
01/10/2007 - 6.9-WIP
- PhotoRec: add SketchUp .skp
30/09/2007 - 6.9-WIP
- Modify list.[ch] to avoid a conflict with ntfsprogs 2.0
25/09/2007 - 6.9-WIP
- PhotoRec: distinguish QuickBook .fst from XML.
12/09/2007 - 6.9-WIP
- PhotoRec: fix session support for big size
- PhotoRec: add WinSpec .spe file recovery
- PhotoRec: add file check to FastTrackerII Extended Module .xm recovery
- MacOSX: can force the terminal settings (TERM) if necessary
07/09/2007 - 6.9-WIP
- PhotoRec: better zip file check
05/09/2007 - 6.9-WIP
- Improve the code to select FAT1 and FAT2 location during FAT boot sector rebuild
- Source: create a separate file for CRC
- TestDisk: add Luks partition recovery
02/09/2007 - 6.9-WIP
- PhotoRec: fix and improve the ACE archive parser using Christophe Gisquet work.
31/08/2007 - 6.9-WIP
- TestDisk, menu Advanced, add possibility to list FAT partition
- TestDisk, menu Advanced, fix NTFS partition listing using NTFS backup boot sector
- Fix in FAT get_next_cluster and set_next_cluster if sector_size!=512
- PhotoRec: Fix utils_cluster_in_use(), in previous version, NTFS carving may miss some files.
30/08/2007 - 6.9-WIP
- bugfix, avoid to access a free'd memory when adding several times the same partition.
- TestDisk, add more checks to UFS and UFS2 identification.
- TestDisk, change some FAT read error message
27/08/2007 - 6.9-WIP
- PhotoRec: add Comic Life .comicdoc header detection
- PhotoRec: create directory with 0775 permission instead of 0700 (Unix/Linux/BSD/Mac/Sun)
23/08/2007 - 6.9-WIP
- Add minimal EFI Guid Partition Table (GPT) support
- PhotoRec: fix Outlook 64-bits .pst size detection
21/08/2007 - 6.9-WIP
- PhotoRec: fix Mac Address Book recovery, improve .mov recovery
20/08/2007 - 6.9-WIP
- PhotoRec: ask for another directory if PhotoRec failed to write files.
19/08/2007 - 6.9-WIP
- Work on ncurses specific code split
16/08/2007 - 6.9-WIP
- PhotoRec: add .dpx Cineon image file/SMTPE DPX
14/08/2007 - 6.9-WIP
- PhotoRec: add AutoCAD .dwg and PowerTab .ptb detection
13/08/2007 - 6.8
- TestDisk & PhotoRec 6.8 release
20/07/2007 - 6.8-WIP
- PhotoRec: add .dta and .spss file formats
19/07/2007 - 6.8-WIP
- PhotoRec: search .rar footer, get .7z and .cab filesize
- PhotoRec: fix a false positive problem
18/07/2007 - 6.8-WIP
- Fix highlighting when screen, screen manager with VT100/ANSI terminal emulation, is used (Replace A_STANDOUT by A_REVERSE).
- TestDisk: HFS detection has been improved to avoid false positive
17/07/2007 - 6.8-WIP
- PhotoRec: fix bruteforce recovery
10/07/2007 - 6.8-WIP
- PhotoRec: update tar (better signature) and cab file (filesize) detection
- Page up/down is now handled in disk selection
05/07/2007 - 6.8-WIP
- PhotoRec: fix a bug while updating the list of the HD space to carve.
04/07/2007 - 6.8-WIP
- Log potential NTFS partition location from MFT & MFTMirr location while rebuilding NTFS boot sector
- Autodetect the partition type
02/07/2007 - 6.8-WIP
- Mac: fix cylinder in disk geometry
- PhotoRec: try to detect LaTeX .tex file
26/06/2007 - 6.7
- TestDisk & Photorec Release
20/06/2007 - 6.7-WIP
- PhotoRec: add Matroska .mkv file format
19/06/2007 - 6.7-WIP
- TestDisk: try to find valid partition table (D,L,P,*) for Vista partition
18/06/2007 - 6.7-WIP
- TestDisk: fix load backup
12/06/2007 - 6.7-WIP
- TestDisk: ask the user if it should search for partition created under Vista or not.
06/06/2007 - 6.7-WIP
- PhotoRec: recovery can use bruteforce (disabled by default) to recover more fragmented JPG
28/05/2007 - 6.7-WIP
- PhotoRec: add MSOffice "Open" XML detection
23/05/2007 - 6.7-WIP
- Refresh the display less often when searching for NTFS MFT and FAT32 root directory
- Modify how partition type are presented
- Distinguish between HFS and HFS+ in Advanced
22/05/2007 - 6.7-WIP
- Only warn about possibly incorrect disk geometry for Intel and Sun partition table
15/05/2007 - 6.7-WIP
- PhotoRec: add ELF and wps file format
- Under Windows, avoid to discard some valid devices (digital camera)
13/05/2007 - 6.7-WIP
- PhotoRec: optimize how read operation is performed
10/05/2007 - 6.7-WIP
- TestDisk, fix a little bug introduce in prior modification
04/05/2007 - 6.7-WIP
- TestDisk "Search!" should require less CPU now.
30/04/2007 - 6.7-WIP
- Vista doesn't always created partition on cylinder boundaries, search partitions at 1MB cylinder boundaries
25/04/2007 - 6.7-WIP
- Begin to separate code that is ncurses specific
21/04/2007 - 6.7-WIP
- PhotoRec: Apply Igor Vallee patch to handle Lyrics3 / Lyrics3v2, APE Tagv2, ID3v1 (TAG) in mp3
19/04/2007 - 6.7-WIP
- PhotoRec: Allow to search in NTFS unallocated space only.
17/04/2007 - 6.7-WIP
- PhotoRec: internal modification, new header_check() prototype
- PhotoRec: add Mac AddressBook detection
16/04/2007 - 6.7-WIP
- PhotoRec: detect RIFF avi filesize
15/04/2007 - 6.7-WIP
- PhotoRec: add Real Audio .rm, CD Audio .cda, compressed Flash .swc, Macromedia .flv
Linux archive .a, archive .ace, MS cabinet archive .cab, RPM package .rpm,
MS Windows Metafile .wmf, FastTrackerII Extended Module .xm
- Improve mp3 and pcx file recovery
11/04/2007 - 6.7-WIP
- Improve NTFS partition location detection using backup boot sector or MFT
10/04/2007 - 6.7-WIP
- Windows: Drive detected as \\.\PhysicalDrive0 should now be writable
07/04/2007 - 6.7-WIP
- Fix a bug where "List" in the Advanced menu wasn't working.
03/04/2007 - 6.7-WIP
- Keep date & time while copying files from NTFS
29/03/2007 - 6.7-WIP
- PhotoRec: add Quickbooks .qbb and .qbw support
28/03/2007 - 6.7-WIP
- PhotoRec: add PaperPort .max file support
26/03/2007 - 6.7-WIP
- PhotoRec: try to detect Perl module .pm
21/03/2007 - 6.7-WIP
- PhotoRec: add Mac OS .emlx mail format
20/03/2007 - 6.7-WIP
- Improve FAT32 root directory detection
- PhotoRec: add NJStar Document .njx detection
12/03/2007 - 6.7-WIP
- PhotoRec: add 3ds max file support
08/03/2007 - 6.7-WIP
- Windows: Don't use pread/pwrite if cygwin compiler is used, I have found a bug.
06/03/2007 - 6.7-WIP
- PhotoRec: add Macromedia Freehand 5 (.fh5) & 10 (.fh10) and InDesign file support .indd
04/03/2007 - 6.7-WIP
- PhotoRec: distinguish registry config file .reg from text.
- PhotoRec: add basic Windows registry header detection and Event Log .evt support
01/03/2007 - 6.7-WIP
- Fix how the advanced menu works
26/02/2007 - 6.7-WIP
- Add noconfirm command parameter to be able to write the new partition table without confirmation.
22/02/2007 - 6.7-WIP
- Change how sys/mount.h header file is detected
21/02/2007 - 6.7-WIP
- PhotoRec: support for MS PE executable and MP3 with ID3 header
17/02/2007 - 6.6
- TestDisk & Photorec Release
16/02/2007 - 6.6-WIP
- Fix Reiserfs directry listing (Bug introduced in 6.5)
13/02/2007 - 6.6-WIP
- Fallback to malloc() if posix_memalign() failed
- PhotoRec: Improve Inbox mail recovery
12/02/2007 - 6.6-WIP
- PhotoRec: fix DIF Digital Video .dv recovery
11/02/2007 - 6.6-WIP
- PhotoRec: Recovery of some JPEG with Exif information was broken: Fix it.
09/02/2007 - 6.6-WIP
- PhotoRec: Add Minolta .mrw filesize detection
- PhotoRec: Add .sit StuffIt support
08/02/2007 - 6.6-WIP
- Windows version: cdrom support was gone in 6.5, it's back
- PhotoRec: Add Macromedia Flash .swf file support
- PhotoRec: Distinguish vcard .vcf from text .txt file
07/02/2007 - 6.6-WIP
- Fix some typo
06/02/2007 - 6.6-WIP
- FAT RebuildBS: improve heuristics to find the first FAT
05/02/2007 - 6.6-WIP
- Fix some typo
- Fix support for multiple EWF files
24/01/2007 - 6.6-WIP
- Windows version: Use \\.\PhysicalDrive0 to open disk device (Vista compatibility)
- Support for multiple EWF files
22/01/2007 - 6.6-WIP
- DOS version: Fix invalid drive selection
15/01/2007 - 6.6-WIP
- PhotoRec: Allow to search in FAT16/FAT32 unallocated space only.
05/01/2007 - 6.6-WIP
- PhotoRec: Add .flac audi and .cam image detection
04/01/2007 - 6.6-WIP
- PhotoRec: Add .3g2 detection (mov file familly)
27/12/2006 - 6.6-WIP
- PhotoRec: Add "Previous" and "Next" text in File options.
20/12/2006 - 6.6-WIP
- Fix the order of libraries for libewf support
19/12/2006 - 6.6-WIP
- Initial EWF support
12/12/2006 - 6.6-WIP
- Fix the previous fallback
10/12/2006 - 6.6-WIP
- pread/pwrite fallback to read/write method
03/12/2006 - 6.6-WIP
- PhotoRec: add Microsoft SQL mdf support
30/11/2006 - 6.6-WIP
- If TERM variable is set to a bad value, try a default value.
24/11/2006 - 6.6-WIP
- TestDisk: use location of current partitions as hint during partition search
- TestDisk: warn if LBA48 support seems missing
15/11/2006 - 6.6-WIP
- PhotoRec: add Cubase Song format .all and .cpr detection
12/11/2006 - 6.6-WIP
- PhotoRec: update Excel file detection
10/11/2006 - 6.6-WIP
- PhotoRec: bugfix in blocksize detection
06/11/2006 - 6.6-WIP
- Use another method to read the NTFS data if MFT are corrupted.
05/11/2006 - 6.6-WIP
- PhotoRec: modify how data are parsed
- PhotoRec: add Apple Audio .aif file support
29/10/2006 - 6.6-WIP
- PhotoRec: add blender .blend file support
28/10/2006 - 6.6-WIP
- Fix a typo that prevent compilation for OS/2
22/10/2006 - 6.5
6.5 release
09/10/2006 - 6.5-WIP
- Add folder selection when copying files in directory listing
- PhotoRec: identify .ram file by the rtsp:// address
28/09/2006 - 6.5-WIP
- Use latest postal address of FSF in COPYING and in source files
25/09/2006 - 6.5-WIP
- PhotoRec: add DIF Digital Video .dv and Real Media .rm file format
21/09/2006 - 6.5-WIP
- Split some headers to handle some compilation problem with boggus old libntfs
18/09/2006 - 6.5-WIP
- PhotoRec: add AppleWorks .cwk file support
14/09/2006 - 6.5-WIP
- NTFS directory listing is now faster
12/09/2006 - 6.5-WIP
- NTFS boot sector rebuild: better handle some error
11/09/2006 - 6.5-WIP
- Update the cache engine to also cache read failure
10/09/2006 - 6.5-WIP
- PhotoRec: Add a lowmem option, recovery is monopass.
- PhotoRec: Add xml identification
07/09/2006 - 6.5-WIP
- Fix NTFS code
06/09/2006 - 6.5-WIP
- PhotoRec: fix an endless loop in mov parser
05/09/2006 - 6.5-WIP
- Menu Advanced, display a message if no partition is avaible.
02/09/2006 - 6.5-WIP
- New NTFS MFT repair function
30/08/2006 - 6.5-WIP
- photorec: add detection of ruby .rb and DjVu .djv file
27/08/2006 - 6.5-WIP
- photorec: add support for iTunes mhbd file format
21/08/2006 - 6.5-WIP
- add "noconfirm" and "write" command in FAT and NTFS rebuild
- remove custom free function
11/08/2006 - 6.5-WIP
- photorec: update BMP, PDF and Gif filesize detection
10/08/2006 - 6.5-WIP
- photorec: update the internal structure, fix some bugs
07/08/2006 - 6.5-WIP
- photorec: add Incredimail (imm, imb) support
- photorec: update bzip2 header detection
19/07/2006 - 6.5-WIP
- photorec: add Reason .rns, Finale .mus, MIDI .mid support
18/07/2006 - 6.5-WIP
- update the terminal initialisation code
13/07/2006 - 6.5-WIP
- photorec: replace doc/OLE filesize detection algo, add Double Indirect FAT support
11/07/2006 - 6.5-WIP
- photorec: add doc/OLE filesize detection
09/07/2006 - 6.5-WIP
- photorec: add MS Backup file detection
28/06/2006 - 6.5-WIP
- photorec: update txt support to not break zip including noncompressed text.
- photorec: update mov support
25/06/2006 - 6.5-WIP
- photorec: fix a memory leak
21/06/2006 - 6.4
TestDisk and PhotoRec 6.4 release
20/06/2006 - 6.4-WIP
- photorec: add support for Access MDB
19/06/2006 - 6.4-WIP
- photorec: update XCF to handle version 1 (Thanks to Jeffrey Brent McBeth
for reporting the problem)
- photorec: little fix for jpeg EOF detection
16/06/2006 - 6.4-WIP
- photorec: fix the comment if user isn't root under MacOSX
14/06/2006 - 6.4-WIP
- Experimental copy support from NTFS is avaible
- Get the geometry from FAT or NTFS filesystem for non-partionned media
11/06/2006 - 6.4-WIP
- If necessary, search termcap info in the directory where the binary is
instead of current directory
- photorec: When "/d" parameter is used, avoid to create "hidden" directories
(directories that begins by a ".")
01/06/2006 - 6.4-WIP
- photorec: update text/html support
23/05/2006 - 6.4-WIP
- photorec: update zip support to detect end of file marker
- photorec: update jpeg support to detect end of file marker
- photorec: update text/html support
- photorec: add support for Panasonic/Leica ".raw"
20/05/2006 - 6.4-WIP
- photorec: modify the JPEG size limit
- photorec: fix a bug in multiple jpeg passes
- disk caching: fix in a bug occuring with bad sectors and end of disk
16/05/2006 - 6.4-WIP
- photorec: Add an expert mode to select the blocksize and the offset
04/05/2006 - 6.4-WIP
- photorec: Update TIFF support to detect Canon RAW ".cr2"
01/05/2006 - 6.4-WIP
- photorec: Update TIFF support to detect Nikon RAW ".nef"
30/04/2006 - 6.4-WIP
- bugfix: disk description is now always updated when geometry is changed
25/04/2006 - 6.4-WIP
- photorec: Update TIFF support to detect Pentax ".pef", Kodak ".dcr" and Sony ".sr2"
19/04/2006 - 6.4-WIP
- support for Reiser 4
- photorec: support for PCX
18/04/2006 - 6.4-WIP
- photorec: Thanks to Holger Klemm for JNG (JPEG Network Graphics)
and MNG (Multiple-Image Network Graphics) support
- fat_dir.c: list directories using to 10 clusters instead of 5
14/04/2006 - 6.4-WIP
- ntfs_adv.c: RebuildBS, distinguish between failed and aborted MFT search.
12/04/2006 - 6.4-WIP
- hdaccess.c: identify if the device is in read-only access mode (Unix).
03/04/2006 - 6.4-WIP
- fix Makefile.am since documentation has been updated
01/04/2006 - 6.4-WIP
- PhotoRec: add Gimp XCF File and QuarkXpress Document (.qxp) format support
31/03/2006 - 6.4-WIP
- PhotoRec: add Flash (.fla) and QuarkXpress Document (.qxd) support
30/03/2006 - 6.4-WIP
- PhotoRec: add MySQL support (.frm and .MYI)
22/03/2006 - 6.4-WIP
- PhotoRec: add CorelDraw (cdr) and Adobe Photoshop Image (psd) file support
13/03/2006 - 6.4-WIP
- PhotoRec: add prc PalmOS application support
01/03/2005 - 6.3
TestDisk and PhotoRec 6.3 release
28/02/2006 - 6.3-WIP
- fix configure.ac to properly detect ntfs_libntfs_version
20/02/2006 - 6.3-WIP
- PhotoRec: add support for ISO Media, Mpeg4 file format
16/02/2006 - 6.3-WIP
- Small user interface modification
14/02/2006 - 6.3-WIP
- Photorec: fix a little bug in session
12/02/2006 - 6.3-WIP
- Photorec: Linux support for fast blanked CR-RW
- scan FreeBSD cdrom device /dev/acd*
04/02/2006 - 6.3-WIP
- fix for IA64
03/02/2006 - 6.3-WIP
- fix FAT boot sector rebuild on 64 bits processor
30/01/2006 - 6.3-WIP
- PhotoRec: add support for Quicken file
29/01/2006 - 6.3-WIP
- If no disk found, display a message in the ncurses interface
28/01/2006 - 6.3-WIP
- PhotoRec: add support for OpenDocument file format
06/01/2006 - 6.3-WIP
- PhotoRec: update support for mp3 and ogg
04/01/2006 - 6.3-WIP
- PhotoRec: add support for StarOffice file format
03/01/2006 - 6.3-WIP
- PhotoRec: add session support
29/12/2005 - 6.3-WIP
- PhotoRec: fix an endless loop
21-23/12/2005 - 6.3-WIP
- PhotoRec: update to handle more than one file extension per file type
18/12/2005 - 6.3-WIP
- PhotoRec: add Encapsulated PostScript and PostScript file format
12/12/2005 - 6.3-WIP
- PhotoRec: add cdrom support for Windows version (Linux and BSD already have it)
08/12/2005 - 6.3-WIP
- FAT: improve FAT RebuildBS
07/12/2005 - 6.3-WIP
- PhotoRec: add gif and gz file detection
- PhotoRec: update mov file detection
06/12/2005 - 6.2
TestDisk & PhotoRec release
30/11/2005 - 6.2-WIP
- Interface, update the Advanced/Boot menu
- PhotoRec: update bmp file detection
29/11/2005 - 6.2-WIP
- Add disk cache and read ahead to improve performance
27/11/2005 - 6.2-WIP
- Apple version is now identified in the log file
- Handle more than 10 media in the main menu
- Apple partition map: for Apple_HFS partition, check for HFS and HFS+ filesystem
- Photorec: add .sit Mikron file format
23/11/2005 - 6.2-WIP
- Photorec doesn't try any write access on the media to examine, so open device in read only mode.
18/11/2005 - 6.2-WIP
- TestDisk MBR code doesn't halt anymore if a key is press at startup.
16/11/2005 - 6.2-WIP
- Partition found during search are displayed in real time. They are not
marked with D(eleted) any more.
09/11/2005 - 6.2-WIP
- Interface update. Thanks to Daniel, the Starman.
- Experimental HFS+ backup boot sector support
05/11/2005 - 6.2-WIP
- NTFS test and NTFS RebuildBS: Check the number of sectors per cluster
03/11/2005 - 6.2-WIP
- FAT and NTFS: fix for hidden_sectors field in boot sector after RebuildBS
01/11/2005 - 6.2-WIP
- Update the message when a partition is found and that doesn't fit in the HD
31/11/2005 - 6.2-WIP
- Add Acronis partition in Intel partition list
24/10/2005 - 6.2-WIP
- Add XBOX and FATX support but no test has been done
18/10/2005 - 6.2-WIP
- TestDisk: NTFS endianess fix
- PhotoRec: fix for reporting in log file
- Sun Solaris: ufs header, workaround a bug in gcc 3.4
17/10/2005 - 6.2-WIP
- TestDisk: FAT and NTFS endianess fix
- Photorec: Avoid null pointer in printf
14/10/2005 - 6.2-WIP
- Photorec: tiff support, detect EOI (End Of Image)
13/10/2005 - 6.2-WIP
- Add delete and mbr_code to cmd mode
10/10/2005 - 6.2-WIP
- In dir_partition_ext2, dir_partition_ntfs, dir_partition_reiser, if library isn't present,
don't prompt the user in cmd mode
08/10/2005 - 6.1
- TestDisk & Photorec Release
08/10/2005 - 6.1-WIP
- Don't display "Partition : Write error" erroneously if there is no logical partition
07/10/2005 - 6.1-WIP
- Get NTFS library version if avaible
06/10/2005 - 6.1-WIP
- MacOS X: use a little trick to get disk size
05/10/2005 - 6.0
- TestDisk & Photorec Release
05/10/2005 - 6.0-WIP
- Can stop the search for software Raid partition
04/10/2005 - 6.0-WIP
- Add some color output
- Modify RPM spec to produce static binary
- Fix TestDisk menu for Dos version
30/09/2005 - 5.9
- TestDisk & Photorec Release
27/09/2005 - 5.9-WIP
- PhotoRec: add Papyrus and 7zip support
23/09/2005 - 5.9-WIP
- Fix a small memory leak in io_redir.c
22/09/2005 - 5.9-WIP
- Add libraries information to log file
14/09/2005 - 5.9-WIP
- Modify generic function write_MBR_code and erase_list_part parameters
06/09/2005 - 5.9-WIP
- Photorec: add texte file recovery
30/08/2005 - 5.9-WIP
- FAT: fix directory listing time using timezone
26/08/2005 - 5.9-WIP
- Small User interface improvements
25/08/2005 - 5.9-WIP
- Modify the internal representation of partition type, now there
is one type per partition architecture
17/08/2005 - 5.9-WIP
- PhotoRec: add a little trick for ext2/ext3 filesystem
- PhotoRec: code cleanup
10/08/2005 - 5.9-WIP
- Minimal support for mac partition map
13/07/2005 - 5.9-WIP
- Small fixes for cross-compilation
08/07/2005 - 5.9-WIP
- PhotoRec: add support for OGG audio files
28/06/2005 - 5.9-WIP
- PhotoRec: add support for RAR files
20/06/2005 - 5.9-WIP
- NTFS boot sector: copy boot sector over backup boot sector now works
11/06/2005 - 5.9-WIP
- DOS version: use disk_clean function instead of file_clean
09/06/2005 - 5.9-WIP
- Introduce new menu
- Linux Raid: fix regression from 5.8, Raid 1 is again detected.
- FAT: fix a bug in expert mode
08/06/2005 - 5.9-WIP
- FAT: better check for directory attribut
- dump: use highlighting to show the differences between two objets
- Photorec: add a default file size limit of 2GB
- Try Direct IO (Need a lot of fixes)
04/06/2005 - 5.9-WIP
- Photorec: add support for ZIP files starting with PK00 (packed to removable disk)
30/05/2005 - 5.8
TestDisk 5.8 released
24/05/2005 - 5.8-WIP
- Photorec: Recognize php header
01/05/2005 - 5.8-WIP
- NTFS: Fix a bug in NTFS rebuilding introduced in 5.7
30/04/2005 - 5.8-WIP
- UFS2: Add support for UFS2
29/04/2005 - 5.8-WIP
- Photorec: MPG format is using streaming
26-29/04/2005 - 5.8-WIP
- Solaris: Add support for Intel version of the superblock
23/04/2005 - 5.8-WIP
- HFS+: Add support for HFS+
22/04/2005 - 5.8-WIP
- EXT2: e2fsprogs-1.36 parses the device name given in ext2fs_open, give a string instead of the io_channel.
- FAT: fix the cleaning function
10/04/2005 - 5.8-WIP
- Fix a memory freed problem when detecting if a partition can be Primary, Logical...
- Linux Raid: Add some code to detect Raid 5 earlier
07-09/04/2005 - 5.8-WIP
- FAT: Update the cleaning FAT function to repair FAT table (Expert mode only)
05/04/2005 - 5.8-WIP
- NTFS: Minor change to reported information
02/04/2005 - 5.7
TestDisk 5.7 release
30/03/2005 - 5.7-WIP
- FAT12/16: Add the possibility to initialize FAT root directory (Delete everything,
Expert mode only)
- FAT32: Fix for last FAT sector while cleaning the FAT (Expert mode only)
28/03/2005 - 5.7-WIP
- Directory listing: little UI modification
26/03/2005 - 5.7-WIP
- EXT2/EXT3: while listing filename permit to list file where inode information is unavaible.
24/03/2005 - 5.7-WIP
- Directory lising: force a ncurses redrawn of the screen, refresh is not always suffisant.
- EXT2/EXT3: read error code return by some ext2fs functions
23/03/2005 - 5.7-WIP
- FAT: Support for FAT without FAT12 (ie DOS 3.30), FAT16 or FAT32 mark.
22/03/2005 - 5.7-WIP
- FAT, NTFS: Update some error message, don't halt on boot sector read error.
- TestDisk: Updated MBR i386 boot code.
19/03/2005 - 5.7-WIP
- Dos version: fix read/write error message
16/03/2005 - 5.7-WIP
- PhotoRec: incremental directory name for recovery
- TestDisk: If partition table type is none, avoid to display warning twice.
- FAT: add support for one FAT only in boot sector rebuilding (need expert mode)
- FAT: fix for directory listing in boot sector rebuilding.
14/03/2005 - 5.7-WIP
- Photorec: update the warning message
11/03/2005 - 5.7-WIP
- Photorec: add support for a bunch of other file format
10/03/2005 - 5.7-WIP
- FAT: add support for one FAT only (instead of usual 2) in directory listing
09/03/2005 - 5.7-WIP
- Modify RPM spec file to get non-empty debug-info rpm
- Replace standard MBR i386 boot sector code by a GPL one
05/03/2005 - 5.7-WIP
- Stats for photorec
- configure.ac, compile.sh: remove --enable-debug option
- TestDisk: don't display a warning about the number of heads per cylinder if partition list is empty.
03/03/2005 - 5.7-WIP
- Photorec: a lot of code cleaning
22/02/2005 -5.7-WIP
- HFS detection has been improved to avoid false positive
- Doesn't halt if TestDisk can't create the log file
14/02/2005 - 5.6
TestDisk & PhotoRec 5.6 released
09/11/2004 - 5.5
TestDisk & PhotoRec 5.5 released
01/10/2004 - 5.4
TestDisk 5.4 released
xx/02/2004 - 5.2
Can rebuild NTFS boot sector
Can align partition to cylinder boundary or to head boundary.
Windows (NT 4/2000/2003/XP) version of TestDisk
Linux Debian package
Doesn't abort while writing partitions if read failed.
JFS partition recovery
|