[yast-commit] r63055 - in /trunk/packager: VERSION package/yast2-packager.changes src/modules/SourceDialogs.ycp

Author: lslezak Date: Mon Jan 3 15:20:26 2011 New Revision: 63055 URL: http://svn.opensuse.org/viewcvs/yast?rev=63055&view=rev Log: - fixed partition evaluation (when thare are more than 10 partitions) (bnc#660943) - 2.20.14 Modified: trunk/packager/VERSION trunk/packager/package/yast2-packager.changes trunk/packager/src/modules/SourceDialogs.ycp Modified: trunk/packager/VERSION URL: http://svn.opensuse.org/viewcvs/yast/trunk/packager/VERSION?rev=63055&r1=630... ============================================================================== --- trunk/packager/VERSION (original) +++ trunk/packager/VERSION Mon Jan 3 15:20:26 2011 @@ -1 +1 @@ -2.20.13 +2.20.14 Modified: trunk/packager/package/yast2-packager.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/packager/package/yast2-packager.c... ============================================================================== --- trunk/packager/package/yast2-packager.changes (original) +++ trunk/packager/package/yast2-packager.changes Mon Jan 3 15:20:26 2011 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Mon Jan 3 14:15:53 UTC 2011 - lslezak@suse.cz + +- fixed partition evaluation (when thare are more than 10 + partitions) (bnc#660943) +- 2.20.14 + +------------------------------------------------------------------- Tue Nov 30 14:58:31 UTC 2010 - lslezak@suse.cz - fixed DownloadInAdvance mode check - it's the default now Modified: trunk/packager/src/modules/SourceDialogs.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/packager/src/modules/SourceDialog... ============================================================================== --- trunk/packager/src/modules/SourceDialogs.ycp (original) +++ trunk/packager/src/modules/SourceDialogs.ycp Mon Jan 3 15:20:26 2011 @@ -991,7 +991,7 @@ foreach(string part, (list<string>)disk["partitions"]:[], { - string partnum = regexpsub(part, ".*-part([0-9])*$", "\\1"); + string partnum = regexpsub(part, ".*-part([0-9]*)$", "\\1"); string disk_label = label + sformat(" (%1%2)", dev, partnum); found = found || (part == selected); -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
lslezak@svn2.opensuse.org