Skip to content

Commit

Permalink
New release
Browse files Browse the repository at this point in the history
Bump version number, update read me, spelling fixes.
#1
  • Loading branch information
gordonwatts committed Apr 3, 2016
1 parent 8941d79 commit bbdbefe
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ iCal parser in a Portable Class Library

Description
===========
When it comes to the .NET world, the DDay.iCal library is fantastic. I stronly recommend that others check this out.
When it comes to the .NET world, the DDay.iCal library is fantastic. I strongly recommend that others check this out.

This is some experiments to understand how hard it is to write such a library, and do it in a portable way
(that is, Windows Phone, etc.). This work was prompted by me spending an hour trying to get DDay.iCal working
Expand All @@ -19,15 +19,15 @@ Initial goals (if this doesn't go off the rails):
- Supports local time and UTC time, but not the VTIMEZONE record

DDay.iCal is rather full featured, especially when it comes to manipulating events, all the various flavors of
iCal events, and reocurring items. This is meant to be simple.
iCal events, and reoccurring items. This is meant to be simple.

NOTE: Some of my test input .ics files were taken from DDay.iCal. Many thanks to their work for that.

Development
===========

1. VS 2013, Build.
2. Note that in debug mode many more tests are availible (friend assembly)
1. VS 2015, Build (also tested in VS 2013).
2. Note that in debug mode many more tests are available (friend assembly)
3. nuget pack .\iCal.PCL.csproj -Prop Configuration=Release from the iCal.PCL directory.

License
Expand Down
4 changes: 2 additions & 2 deletions iCal.PCL/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.4.0")]
[assembly: AssemblyFileVersion("1.0.4.0")]
[assembly: AssemblyVersion("1.0.5.0")]
[assembly: AssemblyFileVersion("1.0.5.0")]

// Allow testing of some internals, which
// just makes tests and authoring easier.
Expand Down
5 changes: 4 additions & 1 deletion iCal.PCL/Serialization/iCalSerializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,11 @@ public static IEnumerable<object> Deserialize(IEnumerable<string> inputLines)
}

/// <summary>
/// Translagors for each event block type
/// Translators for each event block type
/// </summary>
/// <remarks>
/// The implied contract is that the function cannot return null. If it gets called, it must return some sort of object.
/// </remarks>
private static Dictionary<string, Func<RawModel, object>> _translators = new Dictionary<string, Func<RawModel, object>>()
{
{"VEVENT", MakeVEvent}
Expand Down
6 changes: 3 additions & 3 deletions iCal.PCL/iCal.PCL.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<package >
<metadata>
<id>iCal.PCL</id>
<version>1.0.4</version>
<version>1.0.5</version>
<title>iCal.PCL</title>
<authors>Gordon Watts</authors>
<owners>Gordon Watts</owners>
<licenseUrl>http://choosealicense.com/licenses/mit/</licenseUrl>
<projectUrl>https://github.com/gordonwatts/iCal.PCL/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Light weight and very simple iCal parser. Parses only VEVENT objects.</description>
<releaseNotes>Custom error to propagate bad line through to callers</releaseNotes>
<description>Light weight and very simple iCal parser. Parses only VEVENT objects; ignores other in iCal data.</description>
<releaseNotes>Fixes to deal with VEVENT objects in the source file (ignored)</releaseNotes>
<copyright>Copyright 2015</copyright>
<tags>iCal Portable PCL</tags>
</metadata>
Expand Down

0 comments on commit bbdbefe

Please sign in to comment.