diff --git a/CHANGES b/CHANGES index 0147471..99bcd9c 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,19 @@ -1.0.0-BETA3 -=========== +1.0.0-RC1 (2009-08-03) +====================== + +* Correctly handle ext4 file systems even with patched parted 1.8.8 (and + hopefully 1.8.9 too). Patch by Fatih Asici . (bug + #195243) + +* Clear the partition flags for a copied partition in the preview. (bug + #202346) + +* Write the new start sector to the partition's boot sector if an NTFS file + system was moved or copied. (bug #202329) + + +1.0.0-BETA3 (2009-06-04) +======================== * Set the default file system in the New-Partition-dialog, don't just rely on it being the first one in the list. @@ -32,8 +46,8 @@ system combo box, even if it cannot be created, is too big or too small. -1.0.0-BETA2 -=========== +1.0.0-BETA2 (2009-04-30) +======================== * Add an application icon contributed by David Miller. @@ -53,8 +67,8 @@ can be (like it already is the case with the KPart) configured via cmake. -1.0.0-BETA1 -=========== +1.0.0-BETA1 (2009-01-13) +======================== * Fix a potential crash when merging a New Operation and a Create File System Operation. @@ -89,8 +103,8 @@ partitions being wasted. -1.0.0-ALPHA2 -============ +1.0.0-ALPHA2 (2008-09-24) +========================= * Add and install a .desktop file. @@ -135,3 +149,9 @@ * Add some doxygen documentation. + +1.0.0-ALPHA1 (2008-09-18) +========================= + +* First public release + diff --git a/CMakeLists.txt b/CMakeLists.txt index 9d4c10e..4193321 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,7 +27,7 @@ set(CMAKE_BUILD_WITH_INSTALL_RPATH ON) set(VERSION_MAJOR "1") set(VERSION_MINOR "0") set(VERSION_RELEASE "0") -set(VERSION_SUFFIX "-BETA3") +set(VERSION_SUFFIX "-RC1") set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_RELEASE}${VERSION_SUFFIX}) add_definitions(-D'VERSION="${VERSION}"') diff --git a/INSTALL b/INSTALL index 8e9848f..8cfa62e 100644 --- a/INSTALL +++ b/INSTALL @@ -24,8 +24,8 @@ KDE Partition Manager is built with cmake, like most of KDE4 today. It is recommended to build out of tree: After unpacking the source, create a separate build directory and run cmake there: -$ tar xfj partitionmanager-1.0.0-BETA3.tar.bz2 -$ cd partitionmanager-1.0.0-BETA3 +$ tar xfj partitionmanager-1.0.0-RC1.tar.bz2 +$ cd partitionmanager-1.0.0-RC1 $ mkdir build $ cd build $ cmake .. diff --git a/README b/README index 713b4d3..8df4937 100644 --- a/README +++ b/README @@ -27,7 +27,5 @@ systems. For quick install instructions see INSTALL. -For a list of currently known bugs see BUGS. - For a list of changes since the previous release see CHANGES.