Mailinglist Archive: yast-commit (233 mails)
| < Previous | Next > |
[yast-commit] r63055 - in /trunk/packager: VERSION package/yast2-packager.changes src/modules/SourceDialogs.ycp
- From: lslezak@xxxxxxxxxxxxxxxxx
- Date: Mon, 03 Jan 2011 14:20:27 -0000
- Message-id: <20110103142027.B42033250A@svn2.opensuse.org>
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=63054&r2=63055&view=diff
==============================================================================
--- 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.changes?rev=63055&r1=63054&r2=63055&view=diff
==============================================================================
--- 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@xxxxxxx
+
+- fixed partition evaluation (when thare are more than 10
+ partitions) (bnc#660943)
+- 2.20.14
+
+-------------------------------------------------------------------
Tue Nov 30 14:58:31 UTC 2010 - lslezak@xxxxxxx
- 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/SourceDialogs.ycp?rev=63055&r1=63054&r2=63055&view=diff
==============================================================================
--- 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@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
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=63054&r2=63055&view=diff
==============================================================================
--- 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.changes?rev=63055&r1=63054&r2=63055&view=diff
==============================================================================
--- 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@xxxxxxx
+
+- fixed partition evaluation (when thare are more than 10
+ partitions) (bnc#660943)
+- 2.20.14
+
+-------------------------------------------------------------------
Tue Nov 30 14:58:31 UTC 2010 - lslezak@xxxxxxx
- 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/SourceDialogs.ycp?rev=63055&r1=63054&r2=63055&view=diff
==============================================================================
--- 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@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
| < Previous | Next > |