Preparing for rc1 release.

svn path=/trunk/extragear/sysadmin/partitionmanager/; revision=1006405
This commit is contained in:
Volker Lanz 2009-08-03 17:43:41 +00:00
parent 0e518a5a9d
commit 34c69bead3
4 changed files with 31 additions and 13 deletions

36
CHANGES
View File

@ -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 <fatih@pardus.org.tr>. (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 * Set the default file system in the New-Partition-dialog, don't just rely on
it being the first one in the list. 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. 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. * 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. 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 * Fix a potential crash when merging a New Operation and a Create File System
Operation. Operation.
@ -89,8 +103,8 @@
partitions being wasted. partitions being wasted.
1.0.0-ALPHA2 1.0.0-ALPHA2 (2008-09-24)
============ =========================
* Add and install a .desktop file. * Add and install a .desktop file.
@ -135,3 +149,9 @@
* Add some doxygen documentation. * Add some doxygen documentation.
1.0.0-ALPHA1 (2008-09-18)
=========================
* First public release

View File

@ -27,7 +27,7 @@ set(CMAKE_BUILD_WITH_INSTALL_RPATH ON)
set(VERSION_MAJOR "1") set(VERSION_MAJOR "1")
set(VERSION_MINOR "0") set(VERSION_MINOR "0")
set(VERSION_RELEASE "0") set(VERSION_RELEASE "0")
set(VERSION_SUFFIX "-BETA3") set(VERSION_SUFFIX "-RC1")
set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_RELEASE}${VERSION_SUFFIX}) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_RELEASE}${VERSION_SUFFIX})
add_definitions(-D'VERSION="${VERSION}"') 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 recommended to build out of tree: After unpacking the source, create a separate
build directory and run cmake there: build directory and run cmake there:
$ tar xfj partitionmanager-1.0.0-BETA3.tar.bz2 $ tar xfj partitionmanager-1.0.0-RC1.tar.bz2
$ cd partitionmanager-1.0.0-BETA3 $ cd partitionmanager-1.0.0-RC1
$ mkdir build $ mkdir build
$ cd build $ cd build
$ cmake .. $ cmake ..

2
README
View File

@ -27,7 +27,5 @@ systems.
For quick install instructions see INSTALL. 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. For a list of changes since the previous release see CHANGES.