diff options
author | Christophe Grenier <[email protected]> | 2024-02-22 19:06:52 +0100 |
---|---|---|
committer | Christophe Grenier <[email protected]> | 2024-02-22 19:06:52 +0100 |
commit | 281be432dd79121e08e0898887a9ee1f30fb3e96 (patch) | |
tree | b5b8df89538bf4fa2d88c7cf8d410bb42185e1e9 | |
parent | 097a76f1d3865b861f29e2508d3917856026cf78 (diff) |
TestDisk & PhotoRec 7.2v7.2
-rw-r--r-- | INFO | 2 | ||||
-rw-r--r-- | NEWS | 29 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | linux/testdisk.spec.in | 2 | ||||
-rw-r--r-- | src/icon_ph.rc | 2 | ||||
-rw-r--r-- | src/icon_tst.rc | 2 |
6 files changed, 35 insertions, 6 deletions
@@ -1,2 +1,2 @@ TestDisk & PhotoRec , https://www.cgsecurity.org -Copyright (C) 1998-2023 Christophe GRENIER <[email protected]> +Copyright (C) 1998-2024 Christophe GRENIER <[email protected]> @@ -1,4 +1,33 @@ Current news +== 7.2 == +== General Improvements == +- Display disk serial number when selecting source disk +- Add support for BeFS for EFI GPT and Mac partition table + +== TestDisk == +- When searching for partition, press '+' key to skip 5% of the disk. +- exfat: Better utf-8 support when iconv is missing +- APFS: Detect APFS partition + +== PhotoRec & QPhotoRec == +- Huge work to formally verify (Frama-C WP) the code using by the various parsers +New file formats +- bbdoc +- clip - Clip Studio Paint +- drw - micrografx designer format +- exr - OpenEXR v2 +- fbx: Kaydara 3D file +- FCStd +- hdf: Hierarchical Data Format 5 +- lz: lzip compressed file +- Microsoft Jet DB / Sage Simply Accounting database +- mtcx - Mathcad +- rvt - Revit +- shp/shx - Shaefile support +- wad - Doom + +New translations for QPhotoRec: Finnish, Polish, Greek (el), sv_SE and zh_CN + == 7.1 == == General Improvements == * It should be possible to reproduce, byte for byte, every build of testdisk package in Debian https://wiki.debian.org/ReproducibleBuilds diff --git a/configure.ac b/configure.ac index 2f62598c..27a6ce9f 100644 --- a/configure.ac +++ b/configure.ac @@ -2,11 +2,11 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.59]) -AC_INIT([testdisk],[7.2-WIP],[[email protected]]) +AC_INIT([testdisk],[7.2],[[email protected]]) AC_LANG(C) sinclude(acx_pthread.m4) sinclude(mkdir.m4) -TESTDISKDATE="January 2024" +TESTDISKDATE="February 2024" AC_SUBST(TESTDISKDATE) AC_DEFINE_UNQUOTED([TESTDISKDATE],"$TESTDISKDATE",[Date of release]) AC_CONFIG_AUX_DIR(config) diff --git a/linux/testdisk.spec.in b/linux/testdisk.spec.in index f96eeb03..30c8eddd 100644 --- a/linux/testdisk.spec.in +++ b/linux/testdisk.spec.in @@ -1,5 +1,5 @@ %define ver_progsreiserfs 0.3.1-rc8 -%define is_wip 1 +#% define is_wip 1 %{?is_wip:%define ver_wip -WIP} Summary: Tool to check and undelete partition, PhotoRec recovers lost files diff --git a/src/icon_ph.rc b/src/icon_ph.rc index 9d9281b8..a948b2b1 100644 --- a/src/icon_ph.rc +++ b/src/icon_ph.rc @@ -22,7 +22,7 @@ BEGIN VALUE "Comments", "Signature based file recovery utility" VALUE "FileVersion", "7.2" VALUE "ProductVersion", "7.2" - VALUE "LegalCopyright", "Copyright (C) 1998-2023 Christophe GRENIER, et al." + VALUE "LegalCopyright", "Copyright (C) 1998-2024 Christophe GRENIER, et al." END END BLOCK "VarFileInfo" diff --git a/src/icon_tst.rc b/src/icon_tst.rc index ef93f6ee..258a42b4 100644 --- a/src/icon_tst.rc +++ b/src/icon_tst.rc @@ -22,7 +22,7 @@ BEGIN VALUE "Comments", "Partition and file recovery utility" VALUE "FileVersion", "7.2" VALUE "ProductVersion", "7.2" - VALUE "LegalCopyright", "Copyright (C) 1998-2023 Christophe GRENIER, et al." + VALUE "LegalCopyright", "Copyright (C) 1998-2024 Christophe GRENIER, et al." END END BLOCK "VarFileInfo" |