diff -Nru testdrive-3.17/ChangeLog testdrive-3.18/ChangeLog --- testdrive-3.17/ChangeLog 2013-02-21 02:55:39.000000000 +0000 +++ testdrive-3.18/ChangeLog 2013-04-16 02:41:36.000000000 +0000 @@ -1,4 +1,13 @@ -testdrive (3.17) released; urgency=low +testdrive (3.18) released; urgency=low + + [ Howard Chan ] + * testdrive/testdrive.py: + - this addes a Kubuntu Active Desktop image to TestDrive + and fixes LP: #1154563 + + -- Dustin Kirkland Mon, 15 Apr 2013 21:30:30 -0500 + +testdrive (3.17-0ubuntu1) raring; urgency=low [Benjamin Kerensa] * Fix hang on "Configuring Virtual Machine" when Virtualbox 4.2 @@ -15,7 +24,7 @@ - testdrive-gtk.desktop: Add. Doesn't support translations. - debian/testdrive-gtk.install: Install new .desktop file. - -- Andres Rodriguez Thu, 17 May 2012 12:18:20 -0400 + -- Andres Rodriguez Wed, 20 Feb 2013 21:56:09 -0500 testdrive (3.16-0ubuntu1) quantal; urgency=low diff -Nru testdrive-3.17/debian/changelog testdrive-3.18/debian/changelog --- testdrive-3.17/debian/changelog 2013-02-21 02:55:39.000000000 +0000 +++ testdrive-3.18/debian/changelog 2013-04-16 02:41:42.000000000 +0000 @@ -1,4 +1,13 @@ -testdrive (3.17-0ubuntu1~precise) precise; urgency=low +testdrive (3.18-0ubuntu1~precise) precise; urgency=low + + [ Howard Chan ] + * testdrive/testdrive.py: + - this addes a Kubuntu Active Desktop image to TestDrive + and fixes LP: #1154563 + + -- Dustin Kirkland Mon, 15 Apr 2013 21:30:30 -0500 + +testdrive (3.17-0ubuntu1) raring; urgency=low [Benjamin Kerensa] * Fix hang on "Configuring Virtual Machine" when Virtualbox 4.2 @@ -15,7 +24,7 @@ - testdrive-gtk.desktop: Add. Doesn't support translations. - debian/testdrive-gtk.install: Install new .desktop file. - -- Andres Rodriguez Thu, 17 May 2012 12:18:20 -0400 + -- Andres Rodriguez Wed, 20 Feb 2013 21:56:09 -0500 testdrive (3.16-0ubuntu1) quantal; urgency=low diff -Nru testdrive-3.17/testdrive/testdrive.py testdrive-3.18/testdrive/testdrive.py --- testdrive-3.17/testdrive/testdrive.py 2013-02-21 02:19:59.000000000 +0000 +++ testdrive-3.18/testdrive/testdrive.py 2013-04-16 02:29:33.000000000 +0000 @@ -112,6 +112,8 @@ category = 'kubuntu' elif category == 'kubuntu-mobile': category = 'kubuntu' + elif category == 'kubuntu-active': + category = 'kubuntu' flavor = iso.split()[0].capitalize() if flavor == 'Ubuntu-netbook': flavor = 'Ubuntu' @@ -121,6 +123,8 @@ flavor = 'Kubuntu' elif flavor == 'Kubuntu-mobile': flavor = 'Kubuntu' + elif flavor == 'Kubuntu-active': + flavor = 'Kubuntu Active' elif flavor == 'Ubuntustudio': flavor = 'Ubuntu Studio' elif flavor == 'Ubuntu-server':