Skip to content

Commit

Permalink
v1.0.6.0 New release.
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioZ committed Feb 24, 2016
1 parent 2a974a2 commit f548105
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 2 deletions.
Binary file modified MadMilkman.Ini.Documentation.chm
Binary file not shown.
Binary file modified MadMilkman.Ini.Setup.msi
Binary file not shown.
1 change: 1 addition & 0 deletions MadMilkman.Ini.Tests/IniFileCreateUpdateTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,7 @@ public void UpdateDisallowDuplicatesKeysTest()
file.Sections[0].Keys.Add(key);
}

[Test]
public void UpdateArrayIndexerTest()
{
var file = new IniFile();
Expand Down
Binary file modified MadMilkman.Ini.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion MadMilkman.Ini/IniReaderWriter/IniReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ private void ReadTrailingComment(int leftIndention, string text)
this.currentTrailingComment.Text += Environment.NewLine + text;
}

/* MZ(2015-08-29): Added support for section names that may contain end wrapper or comment starter characters. */
private void ReadSection(int leftIndention, string line, IniFile file)
{
/* MZ(2015-08-29): Added support for section names that may contain end wrapper or comment starter characters. */
int sectionEndIndex = -1, potentialCommentIndex, tempIndex = leftIndention;
while (tempIndex != -1 && ++tempIndex <= line.Length)
{
Expand Down
2 changes: 1 addition & 1 deletion MadMilkman.Ini/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
[assembly: AllowPartiallyTrustedCallers]
[assembly: CLSCompliant(true)]

[assembly: AssemblyVersion("1.0.5.2")]
[assembly: AssemblyVersion("1.0.6.0")]
[assembly: NeutralResourcesLanguageAttribute("en-US")]
1 change: 1 addition & 0 deletions RELEASENOTES
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[1.0.6.0] NEW RELEASE
[1.0.5.2] Added support for quoted values which can contain comment's starting characters.
[1.0.5.1] Fixed issue with NULL array and list when deserializing object.

Expand Down

0 comments on commit f548105

Please sign in to comment.