prepare for beta3 release

svn path=/trunk/extragear/sysadmin/partitionmanager/; revision=977474
This commit is contained in:
Volker Lanz 2009-06-04 11:25:17 +00:00
parent f2fa7f71cb
commit b5a67f88ec
3 changed files with 37 additions and 3 deletions

34
CHANGES
View File

@ -1,3 +1,37 @@
1.0.0-BETA3
===========
* Set the default file system in the New-Partition-dialog, don't just rely on
it being the first one in the list.
* Sort items in file system combo boxes case-insensitively.
* Fix a bug where the total free space available could get smaller and smaller
when moving an existing partition in a dialog.
* Fix a bug that the progress information wasn't set as window title for the
top level application window.
* Speed up copying file systems (and thus moving, resizing and copying).
* Add some basic timing output to the detailed report for copying file systems.
* Find a file system's mount point even if it is identified by label in fstab.
* Add support for reading file system labels from FAT16 and FAT32.
* Fix a bug where the volume label for a linuxswap file system was lost when
resizing it.
* Make sure all interesting information shown in labels anywhere in the
application is user-selectable with the mouse.
* Display the UUID for most file systems that support it.
* Always show the current file system in the partition properties dialog's file
system combo box, even if it cannot be created, is too big or too small.
1.0.0-BETA2
===========

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 "-BETA2")
set(VERSION_SUFFIX "-BETA3")
set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_RELEASE}${VERSION_SUFFIX})
add_definitions(-D'VERSION="${VERSION}"')

View File

@ -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-BETA2.tar.bz2
$ cd partitionmanager-1.0.0-BETA2
$ tar xfj partitionmanager-1.0.0-BETA3.tar.bz2
$ cd partitionmanager-1.0.0-BETA3
$ mkdir build
$ cd build
$ cmake ..