Skip to content

Commit bd83181

Browse files
authored
Merge pull request #9 from neocortex-link/feat/rtl-arabic-support
[feat] Arabic system support
2 parents b50eb1f + 9f67023 commit bd83181

11 files changed

+938
-15
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.3.2] - 12 February 2024
8+
- Right-to-Left language support in Chat Panel
9+
710
## [0.3.1] - 3 February 2024
811
- Microphone dropdown component
912
- Component and sample updates
+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
namespace Neocortex.Data
2+
{
3+
public enum WritingDirection
4+
{
5+
LeftToRight,
6+
RightToLeft
7+
}
8+
}

Runtime/Data/Enums/WritingDirection.cs.meta

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
namespace Neocortex
2+
{
3+
public static class StringExtensions
4+
{
5+
public static string CorrectRTL(this string str)
6+
{
7+
return ArabicSupport.ArabicFixer.Fix(str, true);
8+
}
9+
}
10+
}

Runtime/Extension Methods/StringExtensions.cs.meta

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Runtime/Plugins.meta

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)