PushBulletSharp 2.3.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package PushBulletSharp --version 2.3.1
                    
NuGet\Install-Package PushBulletSharp -Version 2.3.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PushBulletSharp" Version="2.3.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PushBulletSharp" Version="2.3.1" />
                    
Directory.Packages.props
<PackageReference Include="PushBulletSharp" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add PushBulletSharp --version 2.3.1
                    
#r "nuget: PushBulletSharp, 2.3.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=PushBulletSharp&version=2.3.1
                    
Install as a Cake Addin
#tool nuget:?package=PushBulletSharp&version=2.3.1
                    
Install as a Cake Tool

A simple C# wrapper to PushBullet's HTTP API.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.1.0 11,727 1/24/2018
3.0.1 4,324 11/8/2016
3.0.0 1,528 11/8/2016
2.3.3 13,390 1/6/2016
2.3.2 2,183 10/26/2015
2.3.1 2,142 10/16/2015
2.3.0 1,709 10/15/2015
2.2.1 2,090 10/8/2015
2.2.0 2,542 10/8/2015
2.1.1 2,207 8/31/2015
2.1.0 2,007 8/23/2015
2.0.0 2,159 5/25/2015
1.5.0 1,973 3/26/2015
1.4.1 1,780 3/21/2015
1.4.0 2,400 10/19/2014
1.3.0 1,585 10/5/2014
1.2.1 1,584 9/15/2014
1.2.0 1,927 9/14/2014
1.1.0 1,933 9/14/2014
1.0.0 1,881 9/14/2014

Hotfix by github user @DriesPeeters.

After some debugging I found that the Pushbullet API does not work with comma characters in the modified_after field. Since this field can be a double value, and in Belgium the default conversion of a double to a string contains a comma, I changed the double to string conversion code in the getPushes method.

Reproduction of the error:
1. Change your laptop's region setting to 'Dutch (Belgium)'
2. Use a non integer DateTime value (as I added in the unit test)
3. Execute the GetPushesAllSince unit test
4. You will get the error above

Done to fix the issue:
Changed the Culture of the conversion to InvariantCulture.