diff --git a/CHANGES b/CHANGES index ad2ee0b..9bdd55f 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,27 @@ +1.0.0-BETA2 +=========== + +* Add an application icon contributed by David Miller. + +* Allow setting the file system label in the dialog when creating a new partition. + +* Add a context menu to operation list. + +* Use a shell script to run partition manager as a child of hal-lock. This + should in theory (and according to the hal-lock manpage) avoid notifications + for new devices, but doesn't seem to work that well. + +* Fix a bug that would keep the user from deleting a newly created logical + partition because the application thought there were higher-numbered + partitions still mounted. + +* Add a kcm for KDE Partition Manager. If this is built and installed or not + can be (like it already is the case with the KPart) configured via cmake. + +* Require KDE 4.2. (It will still work with KDE 4.1 but you'll have to hack the + build yourself to make it work). + + 1.0.0-BETA1 =========== diff --git a/CMakeLists.txt b/CMakeLists.txt index 31d1ac5..1115405 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 "-BETA1") +set(VERSION_SUFFIX "-BETA2") set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_RELEASE}${VERSION_SUFFIX}) add_definitions(-D'VERSION="${VERSION}"') diff --git a/INSTALL b/INSTALL index b895681..edfd7bc 100644 --- a/INSTALL +++ b/INSTALL @@ -15,8 +15,7 @@ install your distribution's packages (again, don't forget the dev-package). libblkid: Also part of e2fsprogs. See libuuid. -KDE4: KDE 4.0 will not work. The minimum required version is 4.1.0. To build the -documentation, you need 4.1.4 or 4.2.0. +KDE4: KDE 4.0 or 4.1 will not work. The minimum required version is 4.2.0. 2. Configure @@ -25,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-BETA1.tar.bz2 -$ cd partitionmanager-1.0.0-BETA1 +$ tar xfj partitionmanager-1.0.0-BETA2.tar.bz2 +$ cd partitionmanager-1.0.0-BETA2 $ mkdir build $ cd build $ cmake ..