Skip to content

Commit

Permalink
Added version 1.1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
KoenZomers committed Jul 13, 2021
2 parents 0f050a8 + 612b37c commit f1eb29c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Api/Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
<RootNamespace>KoenZomers.UniFi.Api</RootNamespace>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>Key.snk</AssemblyOriginatorKeyFile>
<Version>1.1.10.1</Version>
<Version>1.1.11.0</Version>
<Authors>Koen Zomers</Authors>
<Company>Koen Zomers</Company>
<Description>API in .NET Standard to fetch data from an on premises Ubiquiti UniFi Controller</Description>
<Copyright>Koen Zomers</Copyright>
<PackageProjectUrl>https://github.com/KoenZomers/UniFiApi</PackageProjectUrl>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageReleaseNotes>- Fixed passwords containing a double quote (") not working [Issue 24](https://github.com/KoenZomers/UniFiApi/issues/24)</PackageReleaseNotes>
<PackageReleaseNotes>- Added ability to force clients to reconnect [PR 22](https://github.com/KoenZomers/UniFiApi/pull/22)</PackageReleaseNotes>
<PackageLicenseUrl>https://github.com/KoenZomers/UniFiApi/blob/master/LICENSE</PackageLicenseUrl>
<AssemblyVersion>1.1.10.1</AssemblyVersion>
<FileVersion>1.1.10.1</FileVersion>
<AssemblyVersion>1.1.11.0</AssemblyVersion>
<FileVersion>1.1.11.0</FileVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ await uniFiApi.AuthorizeGuest("a0:23:f3:14:c2:fa");

// Revoke the authorization for a certain guest client to access the UniFi network
await uniFiApi.UnauthorizeGuest("a0:23:f3:14:c2:fa");

// Force a client to reconnect to the UniFi network
await uniFiApi.ReconnectClient("a0:23:f3:14:c2:fa");
```

## NuGet
Expand All @@ -68,6 +71,10 @@ Also available as NuGet Package: [KoenZomers.UniFi.Api](https://www.nuget.org/pa

## Version History

Version 1.1.11.0 - July 14, 2021

- Added ability to force clients to reconnect [PR 22](https://github.com/KoenZomers/UniFiApi/pull/22)

Version 1.1.10.1 - July 14, 2021

- Fixed passwords containing a double quote (") not working [Issue 24](https://github.com/KoenZomers/UniFiApi/issues/24)
Expand Down

0 comments on commit f1eb29c

Please sign in to comment.