diff --git a/README.md b/README.md index a4caa36..80f3ff3 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,17 @@ -.NET Unicode Information Library -======================== +Unicode Character Inspector & .NET Unicode Information Library +============================================================== Summary ------- -This projects provides access to some of the data contained in the Unicode Character Database by the means of a portable .NET assembly. -Included, is a small WPF application allowing to inspect the Unicode code points composing a specified text. +This projects has two parts. +One is a library, providing access to some of the data contained in the Unicode Character Database by the means of a portable .NET assembly. +The other, is a small WPF application allowing to inspect the Unicode code points composing a specified text. + +Using the Unicode Character Inspector application +------------------------------------------------- +Simply launch the application, then type or paste some text in the text box on the top of the window. +The code points will be displayed in the list on the left side. Select one of them to display the associated information in the bottom-right pane. +![Screenshot of Unicode Character Inspector](docs/uci-00.png) Compiling and using the project ------------------------------- @@ -63,6 +70,7 @@ This library includes a subset of the official [Unicode Character Database](http * Simple_Uppercase_Maping * Simple_Lowercase_Mapping * Simple_Titlecase_Mapping +* Name_Alias * Block * ASCII_Hex_Digit * Bidi_Control diff --git a/UnicodeInformation.sln b/UnicodeInformation.sln index f2ecbf3..7d397aa 100644 --- a/UnicodeInformation.sln +++ b/UnicodeInformation.sln @@ -19,6 +19,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution System.Unicode.snk = System.Unicode.snk EndProjectSection EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{311FC325-8547-4806-8617-956F1356A92C}" + ProjectSection(SolutionItems) = preProject + docs\uci-00.png = docs\uci-00.png + EndProjectSection +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU diff --git a/docs/uci-00.png b/docs/uci-00.png new file mode 100644 index 0000000..64c6883 Binary files /dev/null and b/docs/uci-00.png differ