Prepare for beta2 release.

svn path=/trunk/extragear/sysadmin/partitionmanager/; revision=958009
This commit is contained in:
Volker Lanz 2009-04-23 09:42:06 +00:00
parent e24f569db4
commit fd43800ec9
3 changed files with 28 additions and 5 deletions

24
CHANGES
View File

@ -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
===========

View File

@ -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}"')

View File

@ -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 ..