Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=883a975f1b84a05cf04c0e96e63e6303a8f1ae2a
commit 883a975f1b84a05cf04c0e96e63e6303a8f1ae2a Author: Miklos Vajna <[EMAIL PROTECTED]> Date: Thu Oct 2 02:54:49 2008 +0200 updates for 0.9.6 diff --git a/NEWS b/NEWS index 19fcf38..bb29211 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,7 @@ VERSION DESCRIPTION ----------------------------------------------------------------------------- +0.9.6 - fixed cd/dvd seach on eee pc + - initial ppc support 0.9.5 - add back libparted support which was removed accidently 0.9.4 - allow special chars in passwords - fix installation in case a depcycle is splitted to diff --git a/configure b/configure index 8168bd6..9477087 100755 --- a/configure +++ b/configure @@ -20,7 +20,7 @@ elif os.uname()[-1] == 'ppc': packages.extend(['mac-fdisk']) # when releasing a new setup, please update this. -version = "0.9.5" +version = "0.9.6" # parse our options parser = OptionParser(version="configure for Frugalware Setup v%s" % (version)) diff --git a/src/plugins/Makefile b/src/plugins/Makefile index 95ac206..0f05cbb 100644 --- a/src/plugins/Makefile +++ b/src/plugins/Makefile @@ -1,6 +1,6 @@ # Makefile for Frugalware Linux Setup # -# Copyright (C) 2005 by Miklos Vajna <[EMAIL PROTECTED]> +# Copyright (C) 2005, 2006, 2007, 2008 by Miklos Vajna <[EMAIL PROTECTED]> # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/plugins/formatdisk.c b/src/plugins/formatdisk.c index a040de5..2c5b7a8 100644 --- a/src/plugins/formatdisk.c +++ b/src/plugins/formatdisk.c @@ -1,7 +1,7 @@ /* * formatdisk.c for Frugalware setup * - * Copyright (c) 2005 by Miklos Vajna <[EMAIL PROTECTED]> + * Copyright (c) 2005, 2006, 2007, 2008 by Miklos Vajna <[EMAIL PROTECTED]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/plugins/loadsource.c b/src/plugins/loadsource.c index ce4f2f5..33cb2f3 100644 --- a/src/plugins/loadsource.c +++ b/src/plugins/loadsource.c @@ -1,7 +1,7 @@ /* * loadsource.c for Frugalware setup * - * Copyright (c) 2005 by Miklos Vajna <[EMAIL PROTECTED]> + * Copyright (c) 2005, 2006, 2007, 2008 by Miklos Vajna <[EMAIL PROTECTED]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/plugins/partdisk.c b/src/plugins/partdisk.c index e7382d3..d89aca1 100644 --- a/src/plugins/partdisk.c +++ b/src/plugins/partdisk.c @@ -1,7 +1,7 @@ /* * partdisk.c for Frugalware setup * - * Copyright (c) 2005 by Miklos Vajna <[EMAIL PROTECTED]> + * Copyright (c) 2005, 2006, 2007, 2008 by Miklos Vajna <[EMAIL PROTECTED]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/plugins/postconf.c b/src/plugins/postconf.c index 32e5a75..77dd7e0 100644 --- a/src/plugins/postconf.c +++ b/src/plugins/postconf.c @@ -1,7 +1,7 @@ /* * postconf.c for Frugalware setup * - * Copyright (c) 2005, 2008 by Miklos Vajna <[EMAIL PROTECTED]> + * Copyright (c) 2005, 2006, 2007, 2008 by Miklos Vajna <[EMAIL PROTECTED]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by _______________________________________________ Frugalware-git mailing list [email protected] http://frugalware.org/mailman/listinfo/frugalware-git
