Skip to content

Commit 6a09e49

Browse files
Latest 1.1.1 Release
1 parent 419eab4 commit 6a09e49

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,4 +130,7 @@ $RECYCLE.BIN/
130130
# Mac desktop service store files
131131
.DS_Store
132132

133-
_NCrunch*
133+
_NCrunch*
134+
135+
# Personal
136+
Makefile

Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/// This is an custom made input buffer so that we can get the output even if the user have not completed typing.
55
/// coded by @pradosh-arduino (github)
66
/// </summary>
7-
class superbuffer {
7+
class prad_buffer {
88
private char[] buffer = new char[1024];
99

1010
/// <summary>

buffer.csproj

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,17 @@
77
<Nullable>enable</Nullable>
88
<GenerateDocumentationFile>true</GenerateDocumentationFile>
99

10-
<Version>1.1.0</Version>
10+
<Version>1.1.1</Version>
1111
<Authors>Pradosh (helloImPR)</Authors>
1212
<Description>A fast, completely controllable input method solution for C#.</Description>
1313
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1414
<RepositoryUrl>https://github.com/pradosh-arduino/buffer</RepositoryUrl>
1515
<RepositoryType>git</RepositoryType>
16+
<PackageReadmeFile>readme.md</PackageReadmeFile>
1617
</PropertyGroup>
1718

19+
<ItemGroup>
20+
<None Include="./readme.md" Pack="true" PackagePath="\"/>
21+
</ItemGroup>
22+
1823
</Project>

setup.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)