Skip to content

Commit cb5caa5

Browse files
committed
Updated NuGet tags and README files. Updated to version 0.6.1.
1 parent f128654 commit cb5caa5

3 files changed

Lines changed: 9 additions & 7 deletions

File tree

Package/Package README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# UnicodeHelper
22

3-
*Note: This is very much a work-in-progress.*
3+
*Note: This is a work-in-progress. In particular, some methods on UString have not been implemented yet.*
44

5-
.Net library to get information about Unicode codepoints and to handle 32-bit codepoints. Current version supoorts **Unicode 16.0.0**.
5+
UnicodeHelper is a .Net library to get Unicode property information about codepoints, and to better handle the
6+
upper planes (1-16) of Unicode where having to deal with surrogate pairs can get messy using normal .Net strings.
7+
Current version supoorts **Unicode 16.0.0**.
8+
9+
A goal for this library is to have *every* implemented method be extensively tested, so it should already be fairly stable.
610

UnicodeHelper/UString.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -454,13 +454,11 @@ public int LastIndexOf(UCodepoint value, int startIndex, int count)
454454

455455
public int IndexOf(UString value)
456456
{
457-
// TODO: Write tests for this method
458457
return IndexOf(value, 0, Length);
459458
}
460459

461460
public int IndexOf(UString value, int startIndex)
462461
{
463-
// TODO: Write tests for this method
464462
return IndexOf(value, startIndex, Length - startIndex);
465463
}
466464

UnicodeHelper/UnicodeHelper.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
<RunAnalyzersDuringLiveAnalysis>False</RunAnalyzersDuringLiveAnalysis>
88
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
99
<Title>Unicode Helper</Title>
10-
<Version>0.6.0</Version>
10+
<Version>0.6.1</Version>
1111
<Authors>FoolRunning</Authors>
12-
<Description>.Net library to get information about Unicode codepoints and to better handle 32-bit codepoints.</Description>
12+
<Description>.Net library to get information about Unicode codepoints and to better handle the upper planes (1-16) of Unicode.</Description>
1313
<Copyright>© 2024 Tim Steenwyk</Copyright>
1414
<PackageLicenseFile>LICENSE</PackageLicenseFile>
15-
<PackageTags>unicode utf-32 codepoint data code point</PackageTags>
15+
<PackageTags>unicode;utf-32;codepoint;data;code;point;surrogate pair;character;characters;surrogate;pair;surogate pair;surogate</PackageTags>
1616
<RepositoryUrl>https://github.com/FoolRunning/UnicodeHelper</RepositoryUrl>
1717
<RepositoryType></RepositoryType>
1818
<PackageReadmeFile>Package README.md</PackageReadmeFile>

0 commit comments

Comments
 (0)