Skip to content

Commit

Permalink
Update to 1.0.5
Browse files Browse the repository at this point in the history
- Fixed regex pattern for LexOffice and SevDesk
  • Loading branch information
AndreasReitberger committed Dec 1, 2021
1 parent 64bd808 commit 2f031bd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Binary file modified source/.vs/RCoreSharp/DesignTimeBuild/.dtbcache.v2
Binary file not shown.
Binary file modified source/.vs/RCoreSharp/v16/.suo
Binary file not shown.
6 changes: 3 additions & 3 deletions source/CoreSharp/RCoreSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Description>A simple library holding useful and recurring functions.</Description>
<RootNamespace>AndreasReitberger.Core</RootNamespace>
<Version>1.0.4</Version>
<AssemblyVersion>1.0.4.0</AssemblyVersion>
<FileVersion>1.0.4.0</FileVersion>
<Version>1.0.5</Version>
<AssemblyVersion>1.0.5.0</AssemblyVersion>
<FileVersion>1.0.5.0</FileVersion>
<RepositoryUrl>https://github.com/AndreasReitberger/CoreSharp</RepositoryUrl>
<PackageTags>Core, Library, Sharp</PackageTags>
<RepositoryType>GitHub</RepositoryType>
Expand Down
6 changes: 3 additions & 3 deletions source/CoreSharp/Utilities/RegexHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
public static class RegexHelper
{

#region LexOffice
public const string LexOfficeAccessToken = @"(^([0-9A-Za-z]{8}[-][0-9A-Za-z]{4}[-][0-9A-Za-z]{4}[-][0-9A-Za-z]{4}[-][0-9A-Za-z]{12})$)";
public const string SevDeskAccessToken = @"(^([a-z0-9])\w+$)";
#region LexOffice & SevDesk
public const string LexOfficeAccessToken = @"(^[a-zA-Z0-9]*)"; //@"(^([0-9A-Za-z]{8}[-][0-9A-Za-z]{4}[-][0-9A-Za-z]{4}[-][0-9A-Za-z]{4}[-][0-9A-Za-z]{12})$)";
public const string SevDeskAccessToken = @"(^[a-zA-Z0-9]*)"; //@"(^([a-z0-9])\w+$)";
#endregion

#region OctoPrint
Expand Down

0 comments on commit 2f031bd

Please sign in to comment.