Skip to content
This repository has been archived by the owner on Apr 15, 2021. It is now read-only.

Commit

Permalink
v1.6.1
Browse files Browse the repository at this point in the history
- Updated api endpoints
- Fixed large data deserialization
- Added synchronus and asynchronus helpers for account, users, lists,
clips and notifications
- Liking, commenting and favoriting clips
  • Loading branch information
HarounTlili committed Mar 25, 2013
1 parent 8874d14 commit a8901b0
Show file tree
Hide file tree
Showing 35 changed files with 4,126 additions and 3,401 deletions.
137 changes: 63 additions & 74 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,75 +1,64 @@
# Kippt.NET #

----------


**Kippt.NET** is a C# Library for consuming [kippt.com](https://kippt.com "Kippt") apis.

# Features #

----------
- Multi-target Library : .NET 4.0, Silverlight, Windows Phone, Windows RT, Mono
- No Dependencies
- Supports All Api Endpoints
- Synchronus & Asynchronus Support
- Availaible On Nuget

![Kippt.NET On NuGet](http://haythem.github.com/Kippt.NET/img/nuget.png)

# Getting Started #

----------
## Synchronously ##
`using (var client = new KipptClient("HaythemTlili", "SomeToken"))
{
// Get user's lists
var lists = KipptList.GetLists(client);

// Print lists titles
foreach (var list in lists.Lists)
{
Console.WriteLine(list.Title);
}
}`

## Asynchronously ##
`using (var client = new KipptClient("HaythemTlili", "SomeToken"))
{
client.Completed += (s, e) =>
{
if (e.Error == null)
{
var lists = (KipptListCollection)e.Result;

// Print lists titles
foreach (var list in lists.Lists)
{
Console.WriteLine(list.Title);
}
}
}

// Get user's lists
KipptList.GetListsAsync(client);
}`

# ChangeLog #

----------
## v1.5 ##
- Support for Windows Phone 7.5
- Support for WinRT
- Support for Silverlight 5
- Support for Mono
- Support for asynchronus programming (event based)
- Added KipptNotification end point
- Optimized HTTP authentication logic
- Search clips with filters : since, list
- Fixed events logic
- Optimized KipptEventArgs
- Better exception handling

# Read More #

----------
# Kippt.NET #

----------


**Kippt.NET** is a C# Library for consuming [kippt.com](https://kippt.com "Kippt") apis.

# Features #

----------
- Multi-target Library : .NET 4.0, Silverlight, Windows Phone, Windows RT, Mono
- No Dependencies
- Supports All Api Endpoints
- Synchronus & Asynchronus Support
- Availaible On Nuget

![Kippt.NET On NuGet](http://haythem.github.com/Kippt.NET/img/nuget.png)

# Getting Started #

----------
`var client = new KipptClient("Username", "ApiToken");
var list = new KipptList();
list.Title = "Kippt.NET";`

## Synchronously ##

`list = list.Create(client);`

## Asynchronously ##

`client.Completed += (s, e) => { var list = (KipptList)e.Result; };
list.CreateAsync(client);`

# ChangeLog #

----------

## v1.0 ##
- Initial release

## v1.5 ##
- Support for Windows Phone 7.5
- Support for WinRT
- Support for Silverlight 5
- Support for Mono
- Support for asynchronus programming (event based)
- Added KipptNotification end point
- Optimized HTTP authentication logic
- Search clips with filters : since, list
- Fixed events logic
- Optimized KipptEventArgs
- Better exception handling

## v1.6.x ##
- Updated api endpoints
- Fixed large data deserialization
- Added synchronus and asynchronus helpers for account, users, lists, clips and notifications
- Liking, commenting and favoriting clips

# Read More #

----------
For more detailed documentation, you can visit the [documentation](http://haythem.github.com/Kippt.NET/) page.
72 changes: 36 additions & 36 deletions Source/Kippt.Controls/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Kippt.Controls")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Kippt.Controls")]
[assembly: AssemblyCopyright("Copyright © 2012")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("b66d1e7d-1591-4486-9bff-84ca40ccf4b9")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// 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.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Kippt.Controls")]
[assembly: AssemblyDescription("Kippt Controls For ASP.NET And ASP.NET MVC")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Haythem Tlili")]
[assembly: AssemblyProduct("Kippt.Controls")]
[assembly: AssemblyCopyright("Copyright © 2013")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("b66d1e7d-1591-4486-9bff-84ca40ccf4b9")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// 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.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
Loading

0 comments on commit a8901b0

Please sign in to comment.