Skip to content

Commit c43e451

Browse files
committed
Updates to NuGet version numbers and release notes.
1 parent 7448885 commit c43e451

File tree

884 files changed

+978
-989
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

884 files changed

+978
-989
lines changed

AntPlus/AntPlus.csproj

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<AssemblyVersion>3.0.0.0</AssemblyVersion>
4+
<AssemblyVersion>3.0.1.0</AssemblyVersion>
55
<TargetFramework>netstandard2.0</TargetFramework>
66
<GenerateDocumentationFile>True</GenerateDocumentationFile>
77
<RootNamespace>SmallEarthTech.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
@@ -24,12 +24,7 @@
2424
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
2525
<PackageIcon>PackageLogo.png</PackageIcon>
2626
<PackageReadmeFile>readme.md</PackageReadmeFile>
27-
<PackageReleaseNotes>1. CommonSpeedCadence - bug fix handling default data page 0.
28-
2. Treadmill - added None to CapabilityFlags enum.
29-
3. AntDevice - fixed log warning bug in SendExtAcknowledgedMessage method.
30-
4. AntDeviceCollection - ctor has been modified.
31-
5. BicyclePower/Parameters - all methods are now async calls.
32-
6. Tracker - the asset is removed from the Assets collection if the Asset.AssetStatus.RemoveAsset flag is set.</PackageReleaseNotes>
27+
<PackageReleaseNotes>Docunemtaion updates.</PackageReleaseNotes>
3328
</PropertyGroup>
3429

3530
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">

AntPlus/DeviceProfiles/BicyclePower/Parameters.cs

+5-3
Original file line numberDiff line numberDiff line change
@@ -278,10 +278,9 @@ public void Parse(byte[] dataPage)
278278
}
279279
}
280280

281-
/// <summary>
282-
/// Gets the requested parameters subpage.
283-
/// </summary>
281+
/// <summary>Gets the requested parameters subpage.</summary>
284282
/// <param name="parameterSubpage">The parameter subpage.</param>
283+
/// <returns><see cref="MessagingReturnCode"/></returns>
285284
public async Task<MessagingReturnCode> GetParameters(Subpage parameterSubpage)
286285
{
287286
return await _bicycle.RequestDataPage(DataPage.GetSetParameters, 500, (byte)parameterSubpage);
@@ -292,6 +291,7 @@ public async Task<MessagingReturnCode> GetParameters(Subpage parameterSubpage)
292291
/// 236.5 mm, auto crank length is enabled. Typically you would omit the length parameter to enable auto crank length.
293292
/// </summary>
294293
/// <param name="length">The length in millimeters. Omit to enable auto crank length.</param>
294+
/// <returns><see cref="MessagingReturnCode"/></returns>
295295
public async Task<MessagingReturnCode> SetCrankLength(double length = 237)
296296
{
297297
byte[] msg;
@@ -318,6 +318,7 @@ public async Task<MessagingReturnCode> SetCrankLength(double length = 237)
318318
/// whether the transition was successful or not.
319319
/// </remarks>
320320
/// <param name="offset">The offset in seconds.</param>
321+
/// <returns><see cref="MessagingReturnCode"/></returns>
321322
public async Task<MessagingReturnCode> SetTransitionTimeOffset(byte offset)
322323
{
323324
byte[] msg = new byte[] { (byte)DataPage.GetSetParameters, (byte)Subpage.RiderPositionConfiguration, offset, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
@@ -334,6 +335,7 @@ public async Task<MessagingReturnCode> SetTransitionTimeOffset(byte offset)
334335
/// </remarks>
335336
/// <param name="threshold">The threshold percentage.</param>
336337
/// <exception cref="System.ArgumentOutOfRangeException">Parameter threshold range is 0 to 100 percent.</exception>
338+
/// <returns><see cref="MessagingReturnCode"/></returns>
337339
public async Task<MessagingReturnCode> SetPeakTorqueThreshold(double threshold)
338340
{
339341
// valid range is 0 to 100 percent

AntPlus/readme.md

+2
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,7 @@ Add a reference to this class in your application to interact with ANT+ devices
1313
Unknown devices are supported by the UnknownDevice class.
1414
##### Addtional Links
1515
* [Documentation](https://stephenhidem.github.io/AntPlus/html/40537603-f0ed-f134-8e97-bd58d1d8b17d.htm)
16+
* [Examples](https://github.com/StephenHidem/AntPlus/tree/master/Examples) - See MAUI-gRPC and WpfUsbStickApp examples.
1617
* [Issues](https://github.com/StephenHidem/AntPlus/issues) - Mention AntPlus class library in the issue title.
18+
* [Discussions](https://github.com/StephenHidem/AntPlus/discussions) - Post questions and join discussions.
1719

AntRadioInterface/AntRadioInterface.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<AssemblyVersion>2.0.0.0</AssemblyVersion>
4+
<AssemblyVersion>2.0.1.0</AssemblyVersion>
55
<TargetFramework>netstandard2.0</TargetFramework>
66
<RootNamespace>SmallEarthTech.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
77
<GenerateDocumentationFile>True</GenerateDocumentationFile>
@@ -23,7 +23,7 @@
2323
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
2424
<PackageIcon>PackageLogo.png</PackageIcon>
2525
<PackageReadmeFile>readme.md</PackageReadmeFile>
26-
<PackageReleaseNotes>IAntRadio - some interfaces have been changed to Task&lt;T&gt; return types. Others likely to follow in the future.</PackageReleaseNotes>
26+
<PackageReleaseNotes>Docunentation updates.</PackageReleaseNotes>
2727
</PropertyGroup>
2828

2929
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">

AntRadioInterface/readme.md

+2
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@ that supports the Dynastream/Garmin ANT USB stick.
88
One important thing to note is this example uses the .NET and native DLLs provided in Dynastream's PC SDK.
99
##### Addtional Links
1010
* [Documentation](https://stephenhidem.github.io/AntPlus/html/e3aaa19e-2c22-c645-29dd-df0b206bf71f.htm)
11+
* [Examples](https://github.com/StephenHidem/AntPlus/tree/master/Examples) - See AntUsbStick for an example implementation.
1112
* [Issues](https://github.com/StephenHidem/AntPlus/issues) - Mention AntRadioInterface in the issue title.
13+
* [Discussions](https://github.com/StephenHidem/AntPlus/discussions) - Post questions and join discussions.

Documentation/Documentation.shfbproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
<NamespaceSummaries>
6161
<NamespaceSummaryItem name="(global)" isDocumented="False" />
6262
<NamespaceSummaryItem name="SmallEarthTech.AntPlus" isDocumented="True">This is the global namespace for ANT+ devices.</NamespaceSummaryItem>
63-
<NamespaceSummaryItem name="SmallEarthTech.AntPlus.DeviceProfiles (Group)" isGroup="True" isDocumented="False">This namespace contains supported ANT+ device profiles.</NamespaceSummaryItem>
63+
<NamespaceSummaryItem name="SmallEarthTech.AntPlus.DeviceProfiles (Group)" isGroup="True" isDocumented="True">This namespace contains supported ANT+ device profiles.</NamespaceSummaryItem>
6464
<NamespaceSummaryItem name="SmallEarthTech.AntPlus.DeviceProfiles.AssetTracker" isDocumented="True">Contains the asset tracker classes and members.</NamespaceSummaryItem>
6565
<NamespaceSummaryItem name="SmallEarthTech.AntPlus.DeviceProfiles.BicyclePower" isDocumented="True">Contains the bicycle power classes and members.</NamespaceSummaryItem>
6666
<NamespaceSummaryItem name="SmallEarthTech.AntPlus.DeviceProfiles.BikeSpeedAndCadence" isDocumented="True">Contains the bicycle speed and cadence classes and members.</NamespaceSummaryItem>
@@ -72,7 +72,7 @@
7272
<NamespaceSummaryItem name="SmallEarthTech.AntRadioInterface" isDocumented="True">The ANT+ radio interface namespace.</NamespaceSummaryItem>
7373
<NamespaceSummaryItem name="SmallEarthTech.AntPlus.DeviceProfiles.StrideBasedSpeedAndDistance" isDocumented="False">Contains the stride based speed and sensor classes and members.</NamespaceSummaryItem>
7474
<NamespaceSummaryItem name="SmallEarthTech.AntUsbStick" isDocumented="True">This namespace supports the concrete implementation of the ANT radio interface.</NamespaceSummaryItem>
75-
<NamespaceSummaryItem name="SmallEarthTech.AntPlus (Group)" isGroup="True" isDocumented="False">This is the global namespace for ANT+ devices.</NamespaceSummaryItem>
75+
<NamespaceSummaryItem name="SmallEarthTech.AntPlus (Group)" isGroup="True" isDocumented="True">This is the global namespace for ANT+ devices.</NamespaceSummaryItem>
7676
<NamespaceSummaryItem name="SmallEarthTech.AntPlus.DeviceProfiles" isDocumented="True">This namespace contains supported ANT+ device profiles.</NamespaceSummaryItem></NamespaceSummaries>
7777
</PropertyGroup>
7878
<!-- There are no properties for these groups. AnyCPU needs to appear in order for Visual Studio to perform

Examples/AntUsbStick/readme.md

+2
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,6 @@ This snippet makes use of the Small Earth Technology ANT+ Class Library AntDevic
2121
will provide logging services and the IAntRadio implementation provided by the ANT+ USB Stick Class Library to the AntDeviceCollection.
2222
##### Addtional Links
2323
* [Documentation](https://stephenhidem.github.io/AntPlus/html/bf8a5d40-6d1a-6d79-a57f-fd17688d7682.htm)
24+
* [Examples](https://github.com/StephenHidem/AntPlus/tree/master/Examples) - Includes AntUsbStick source code
2425
* [Issues](https://github.com/StephenHidem/AntPlus/issues) - Mention AntUsbStick in the issue title.
26+
* [Discussions](https://github.com/StephenHidem/AntPlus/discussions) - Post questions and join discussions.

docs/fti/FTI_100.json

+1-1
Large diffs are not rendered by default.

docs/fti/FTI_101.json

+1-1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)