~ubuntu-branches/ubuntu/trusty/gparted/trusty

« back to all changes in this revision

Viewing changes to src/ext3.cc

  • Committer: Package Import Robot
  • Author(s): Phillip Susi
  • Date: 2012-01-23 18:39:56 UTC
  • mfrom: (6.3.19)
  • Revision ID: package-import@ubuntu.com-20120123183956-hgocehdv6vs3g0gi
Tags: 0.11.0-1
* Merge from 0.8.1-1ubuntu5: Run dh_translations during build,
  if available.
* New upstream release 

  GParted 0.11.0  (2011-12-13)

  Key changes include:
  - Display ext2/3/4, ntfs, and btrfs unicode volume labels properly
  - Add labelling of btrfs file systems
  - Enable XFS copy to new smaller partition

  Bug Fixes
  - Display ext2/3/4 unicode volume labels properly (#662537)
  - Display ntfs unicode volume labels properly
    LP: #614994
  - Fix FAT16/32 label displayed as uppercase (#625337)
  - Add labelling of btrfs file systems (#663207)
    Thanks to Mike Fleetwood for small patch
    Requires btrfs-tools package yet-to-be-released (> Oct 25, 2011)
  - Fix btrfs volume label reading (#663590)
    Thanks to Mike Fleetwood for small patch
  - Enable XFS copy to new smaller partition (#663806)
    Thanks to Stephen Kirkby for small reverse umount order patch
  - Use newer btrfs multi-tool control command first (#663884)
    Thanks to Mike Fleetwood for this patch
  - Avoid redundant file system maximize actions (#663980)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Copyright (C) 2004 Bart
2
 
 * Copyright (C) 2008, 2009, 2010 Curtis Gedak
 
2
 * Copyright (C) 2008, 2009, 2010, 2011 Curtis Gedak
3
3
 *
4
4
 *  This program is free software; you can redistribute it and/or modify
5
5
 *  it under the terms of the GNU General Public License as published by
89
89
{
90
90
        if ( ! Utils::execute_command( "e2label " + partition .get_path(), output, error, true ) )
91
91
        {
92
 
                partition .label = Utils::regexp_label( output, "^(.*)" ) ;
 
92
                partition .label = Utils::trim( output ) ;
93
93
        }
94
94
        else
95
95
        {