Skip to content

Commit

Permalink
FIX: Calculation of channel numbers works now also with %CCCC%
Browse files Browse the repository at this point in the history
  • Loading branch information
Waldemar Porscha committed May 31, 2024
1 parent dfa4510 commit f724b35
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@

[assembly: System.Reflection.AssemblyCompanyAttribute("OpenKNX")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("3.3.3.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("3.3.3")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("3.3.4.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("3.3.4")]
[assembly: System.Reflection.AssemblyProductAttribute("OpenKNXproducer")]
[assembly: System.Reflection.AssemblyTitleAttribute("OpenKNXproducer")]
[assembly: System.Reflection.AssemblyVersionAttribute("3.3.3.0")]
[assembly: System.Reflection.AssemblyVersionAttribute("3.3.4.0")]
2 changes: 1 addition & 1 deletion ProcessInclude.cs
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ static string ReplaceChannelTemplate(string iValue, int iChannel)
{
do
{
lMatch = Regex.Match(lResult, @"%(C{1,4})(\*\d{1,3})?([\+\-]\d{1,3})?%");
lMatch = Regex.Match(lResult, @"%(C{1,4})(\*\d{1,3})?([\+\-]\d{1,4})?%");
lReplaced = false;
if (lMatch.Captures.Count > 0)
{
Expand Down

0 comments on commit f724b35

Please sign in to comment.