From 947b0694183b23af003cdac141408011ea9ed115 Mon Sep 17 00:00:00 2001 From: Bernd Boeckmann Date: Sun, 26 May 2024 18:58:46 +0200 Subject: [PATCH] release version 1.3.15 --- appinfo/fdisk.lsm | 4 ++-- doc/fdisk/CHANGES.md | 2 +- source/fdisk/main.h | 2 +- source/fdisk/pdiskio.c | 4 ---- 4 files changed, 4 insertions(+), 8 deletions(-) diff --git a/appinfo/fdisk.lsm b/appinfo/fdisk.lsm index e4d9b80..15cd2fa 100644 --- a/appinfo/fdisk.lsm +++ b/appinfo/fdisk.lsm @@ -1,7 +1,7 @@ Begin3 Title: Free FDISK -Version: 1.3.14 -Entered-date: 2024-02-05 +Version: 1.3.15 +Entered-date: 2024-05-26 Description: Fixed disk partition tool Summary: Fixed disk partition tool to create, delete and view hard disk partitions. diff --git a/doc/fdisk/CHANGES.md b/doc/fdisk/CHANGES.md index 157fd25..10bf0b1 100644 --- a/doc/fdisk/CHANGES.md +++ b/doc/fdisk/CHANGES.md @@ -8,7 +8,7 @@ Bug classification: - LOW: Cosmetic bugs, like display issues etc. -Version 1.3.15 (2024-??-??) +Version 1.3.15 (2024-05-26) --------------------------- Fixes: - HIGH: Fix FDISK not modifying partition type via command line /MODIFY diff --git a/source/fdisk/main.h b/source/fdisk/main.h index 3462b7f..e4db4be 100644 --- a/source/fdisk/main.h +++ b/source/fdisk/main.h @@ -4,7 +4,7 @@ #define FD_NAME "Free FDISK" #endif -#define VERSION "1.3.14" +#define VERSION "1.3.15" #define COPYLEFT "1998 - 2024" #define SIZE_OF_IPL ( 512 - 4 * 16 - 2 - 6 ) diff --git a/source/fdisk/pdiskio.c b/source/fdisk/pdiskio.c index da133d3..c46b381 100644 --- a/source/fdisk/pdiskio.c +++ b/source/fdisk/pdiskio.c @@ -174,10 +174,6 @@ int IsRecognizedFatPartition( unsigned partitiontype ) } break; case 0x0b: - if ( flags.version >= COMP_W95B ) { - return TRUE; - } - break; case 0x0c: if ( flags.version >= COMP_W95B ) { return TRUE;