Skip to content

Commit 26fbf4c

Browse files
committed
Release v1.6.1
1 parent 6f69452 commit 26fbf4c

File tree

2 files changed

+74
-71
lines changed

2 files changed

+74
-71
lines changed

.github/workflows/dotnet.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ jobs:
3636
- name: Test
3737
run: dotnet test SharpLibHid.sln --no-build --verbosity normal
3838
- name: Publish Nuget x86
39-
run: dotnet nuget push './Hid/bin/x86/Release/Slions.SharpLib.Hid-x86.1.6.0.nupkg' --skip-duplicate -k ${{ secrets.NUGET_CREATE_TOKEN }} --source https://api.nuget.org/v3/index.json
39+
run: dotnet nuget push './Hid/bin/x86/Release/Slions.SharpLib.Hid-x86.1.6.1.nupkg' --skip-duplicate -k ${{ secrets.NUGET_CREATE_TOKEN }} --source https://api.nuget.org/v3/index.json
4040
- name: Publish Nuget x64
41-
run: dotnet nuget push './Hid/bin/x64/Release/Slions.SharpLib.Hid-x64.1.6.0.nupkg' --skip-duplicate -k ${{ secrets.NUGET_CREATE_TOKEN }} --source https://api.nuget.org/v3/index.json
41+
run: dotnet nuget push './Hid/bin/x64/Release/Slions.SharpLib.Hid-x64.1.6.1.nupkg' --skip-duplicate -k ${{ secrets.NUGET_CREATE_TOKEN }} --source https://api.nuget.org/v3/index.json
4242

4343
#env:
4444
# NUGET_APIKEY: ${{ secrets.NUGET_TOKEN }}

Project/Hid/Hid.csproj

Lines changed: 72 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<!--<TargetFrameworks>netstandard2.0</TargetFrameworks>-->
1212
<!--netstandard2.0;net5.0; netcoreapp3.1;-->
1313
<UseWindowsForms>true</UseWindowsForms>
14-
<Version>1.6.0</Version>
14+
<Version>1.6.1</Version>
1515
<Authors>Stéphane Lenclud</Authors>
1616
<Copyright>(c)2021 Stéphane Lenclud</Copyright>
1717
<RootNamespace>SharpLib.Hid</RootNamespace>
@@ -39,74 +39,77 @@
3939
<PackageProjectUrl>https://github.com/Slion/SharpLibHid</PackageProjectUrl>
4040

4141
<PackageReleaseNotes>
42-
v1.6.0
43-
Device architecture change.
44-
Device properties support.
45-
Device friendly name fetched from ancestors if need be.
46-
NuGet package ID changed.
47-
48-
v1.5.1
49-
Joysticks supported to same level as GamePads.
50-
Add function to check if dpad is available.
51-
52-
v1.5.0
53-
Fix crash with generic HID devices when using 64-bits architecture.
54-
Add virtual reality usage collection.
55-
Performance optimizations to cope with high volume of HID input reports coming from Oculus Rift S.
56-
Upgrade to SharpLibWin32 v0.2.1.
57-
58-
v1.4.3
59-
Adding pinvoke declarations supporting HID Demo device properties dialog.
60-
61-
v1.4.2
62-
Debug and Log rework.
63-
Adding HID Event convenient methods.
64-
65-
v1.4.1
66-
Keyboard modifiers and repeats management.
67-
68-
v1.4.0
69-
Adding support for keyboards.
70-
Switched to .NET Framework 4.0.
71-
72-
v1.3.1
73-
Adding TvPower usage present on MCE remotes with basic IR learning capabilities.
74-
75-
v1.3.0
76-
Registration and Parser functionalities can now be used independently.
77-
78-
v1.2.1
79-
Upgrading to SharpLibWin32 v0.0.4.
80-
81-
v1.2.0
82-
Adding dependency on SharpLibWin32.
83-
84-
v1.1.0
85-
Adding support for gamepad dpad repeat events.
86-
Adding support for custom repeat delay and speed.
87-
88-
v1.0.7
89-
Fixing framework folder name.
90-
91-
v1.0.6
92-
Project URL updated.
93-
94-
v1.0.5
95-
Fixing HID Demo crash on Surface Pro 3. Adding usage enumeration for GenericDevice.
96-
97-
v1.0.4
98-
Build configuration fix.
99-
100-
v1.0.3
101-
x86 Build.
102-
103-
v1.0.2
104-
Adding missing public keyword for some of our Usage enumerations.
105-
106-
v1.0.1
107-
Adding ThinkPad specific usages.
108-
Adding support for optional event repeat.
109-
</PackageReleaseNotes>
42+
v1.6.1
43+
Fix missing eHome remote control device and events.
44+
45+
v1.6.0
46+
Device architecture change.
47+
Device properties support.
48+
Device friendly name fetched from ancestors if need be.
49+
NuGet package ID changed.
50+
51+
v1.5.1
52+
Joysticks supported to same level as GamePads.
53+
Add function to check if dpad is available.
54+
55+
v1.5.0
56+
Fix crash with generic HID devices when using 64-bits architecture.
57+
Add virtual reality usage collection.
58+
Performance optimizations to cope with high volume of HID input reports coming from Oculus Rift S.
59+
Upgrade to SharpLibWin32 v0.2.1.
60+
61+
v1.4.3
62+
Adding pinvoke declarations supporting HID Demo device properties dialog.
63+
64+
v1.4.2
65+
Debug and Log rework.
66+
Adding HID Event convenient methods.
67+
68+
v1.4.1
69+
Keyboard modifiers and repeats management.
70+
71+
v1.4.0
72+
Adding support for keyboards.
73+
Switched to .NET Framework 4.0.
74+
75+
v1.3.1
76+
Adding TvPower usage present on MCE remotes with basic IR learning capabilities.
77+
78+
v1.3.0
79+
Registration and Parser functionalities can now be used independently.
80+
81+
v1.2.1
82+
Upgrading to SharpLibWin32 v0.0.4.
83+
84+
v1.2.0
85+
Adding dependency on SharpLibWin32.
86+
87+
v1.1.0
88+
Adding support for gamepad dpad repeat events.
89+
Adding support for custom repeat delay and speed.
90+
91+
v1.0.7
92+
Fixing framework folder name.
93+
94+
v1.0.6
95+
Project URL updated.
96+
97+
v1.0.5
98+
Fixing HID Demo crash on Surface Pro 3. Adding usage enumeration for GenericDevice.
99+
100+
v1.0.4
101+
Build configuration fix.
102+
103+
v1.0.3
104+
x86 Build.
105+
106+
v1.0.2
107+
Adding missing public keyword for some of our Usage enumerations.
108+
109+
v1.0.1
110+
Adding ThinkPad specific usages.
111+
Adding support for optional event repeat.
112+
</PackageReleaseNotes>
110113

111114

112115

0 commit comments

Comments
 (0)