From 288d752ace09b2073a4882a99d8bd6d253fda240 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Sun, 26 Jul 2026 05:18:14 +0000
Subject: [PATCH 1/2] [ROOT][DOCS] contrib-readme-action has updated readme
---
README.md | 15 +++++++++++----
1 file changed, 11 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md
index 3d13017..80550f1 100644
--- a/README.md
+++ b/README.md
@@ -249,6 +249,15 @@ Contributors
Regelink
+
+
+
+
+ Sl-Alex
+
+ |
+
+
@@ -256,8 +265,6 @@ Contributors
rgruening
|
-
-
@@ -293,6 +300,8 @@ Contributors
DaMutz
|
+
+
@@ -300,8 +309,6 @@ Contributors
StormOli
|
-
-
From 6dfac123d894829f9d56a0c54e869c509438707f Mon Sep 17 00:00:00 2001
From: Lars Elgtvedt Susaas <9848846+nimrof@users.noreply.github.com>
Date: Sun, 26 Jul 2026 05:21:19 +0200
Subject: [PATCH 2/2] removed the need for non-digit before the digit in the
regex
---
EDSEditorGUI/InsertObjects.cs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/EDSEditorGUI/InsertObjects.cs b/EDSEditorGUI/InsertObjects.cs
index 52d7509..72f2bd6 100644
--- a/EDSEditorGUI/InsertObjects.cs
+++ b/EDSEditorGUI/InsertObjects.cs
@@ -159,7 +159,7 @@ private bool Verify(bool InitiallyDisableIfError = false)
int j = 1;
foreach (ODentry od in srcObjects.Values)
{
- String numpattern = @"(\w*\d+\Z)";
+ String numpattern = @"(\d+\Z)";
string newname;
string[] words = Regex.Split(od.parameter_name, numpattern);
@@ -235,7 +235,7 @@ private void Button_create_Click(object sender, EventArgs e)
UInt16 newIndex = (UInt16)(od.Index + o);
ODentry newObject = od.Clone();
- String pattern = @"(\w*\d+\Z)";
+ String pattern = @"(\d+\Z)";
string[] words = Regex.Split(od.parameter_name, pattern);
// MatchCollection nummatches = System.Text.RegularExpressions.Regex.Matches(od.parameter_name, numpattern);
|