Skip to content

Commit 7698660

Browse files
committed
Added ClickOnce Deployment
1 parent f6bca6f commit 7698660

File tree

6 files changed

+33
-20
lines changed

6 files changed

+33
-20
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
*.DS_Store
2+
*~
23
/SkeletonBasics-WPF/*.pfx
34
/SkeletonBasics-WPF/obj
45
/SkeletonBasics-WPF/bin
@@ -9,3 +10,5 @@
910
/SkeletonBasics-WPF/*.psess
1011
/SkeletonBasics-WPF/*.vsp
1112
/SkeletonBasics-WPF/publish
13+
14+
/SkeletonBasics-WPF/Libs/Microsoft.Kinect.Toolkit.FaceTracking/*.suo

README.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,25 @@ What is this?
55
-------------
66

77
As the title says, it's just a small program that takes kinect
8-
skeleton data from the KinectSDK (v1.7) framework and spits out the coordinates
8+
skeleton data from the KinectSDK (v1.8) framework and spits out the coordinates
99
of the skeleton's joints via OSC messages. These can can then be used
1010
on your language / framework of choice.
1111

12-
This version of OSCeleton is compatible with the OSCeleton-OpenNI version (Zillode/OSCeleton-OpenNI).
12+
The OSC protocol of this application is compatible with the [OSCeleton-OpenNI](https://github.com/Zillode/OSCeleton-OpenNI).
13+
A similar application for KinectSDK v2.0 is available [here](https://github.com/Zillode/OSCeleton-KinectSDK2).
1314

14-
Note: this version is incompatible with Sensebloom/OSCeleton!
15+
Note: this protocol is partially incompatible with Sensebloom/OSCeleton!
1516

1617
How do I use it?
1718
----------------
1819

20+
Download and install the [ClickOnce installer](http://osceleton.zillode.be/private/osceleton-kinectsdk/setup.exe)
21+
22+
How do I build it?
23+
------------------
24+
1925
### Install Visual Studio 2012
20-
### Install [Microsoft Kinect SDK (version 1.7)](http://www.microsoft.com/en-us/kinectforwindows/develop/developer-downloads.aspx)
26+
### Install [Microsoft Kinect SDK (version 1.8)](https://www.microsoft.com/en-us/download/details.aspx?id=40278)
2127
### Install [Microsoft Speech Platform SDK (version 11)](http://www.microsoft.com/en-us/download/details.aspx?id=27226)
2228
### Compile and run the SkeletonBasics solution
2329

@@ -115,6 +121,9 @@ discussion, come join the fun in a related [google group](http://groups.google.c
115121
### OSCeleton-OpenNI ?
116122
To use the OpenNI & NITE framework in combination with OSC messages, download [OSCeleton-OpenNI](https://github.com/Zillode/OSCeleton-OpenNI)
117123

124+
### OSCeleton-KinectSDK2 ?
125+
To use the Kinect SDK2 in combination with OSC messages, download [OSCeleton-KinectSDK2](https://github.com/Zillode/OSCeleton-KinectSDK2)
126+
118127
Have fun!
119128

120129

SkeletonBasics-WPF/MainWindow.xaml.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ public partial class MainWindow : System.Windows.Window
4949
private bool showSkeleton = true;
5050
private bool showRGB = false;
5151
private bool showDepth = false;
52-
private bool speechCommands = false;
5352

5453
// Outputs
5554
private int sensorId = 0;
@@ -249,7 +248,6 @@ private void WindowLoaded(object sender, System.Windows.RoutedEventArgs e)
249248

250249
this.checkBoxSeatedMode.IsEnabled = false;
251250
this.checkBoxShowSkeleton.IsChecked = showSkeleton;
252-
this.checkBoxSpeechCommands.IsChecked = speechCommands;
253251

254252
foreach (var potentialSensor in KinectSensor.KinectSensors)
255253
{

SkeletonBasics-WPF/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
// [assembly: AssemblyVersion("1.0.*")]
5252
[assembly: NeutralResourcesLanguage("en-US")]
5353
[assembly: CLSCompliant(true)]
54-
[assembly: AssemblyCompanyAttribute("lhoste")]
54+
[assembly: AssemblyCompanyAttribute("Zillode")]
5555
[assembly: AssemblyProductAttribute("OSCeleton-KinectSDK")]
56-
[assembly: AssemblyCopyrightAttribute("Copyright © Lode Hoste 2013")]
56+
[assembly: AssemblyCopyrightAttribute("Copyright © Zillode 2013")]
57+
[assembly: AssemblyVersionAttribute("1.0.0.0")]

SkeletonBasics-WPF/SkeletonBasics-WPF.csproj

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@
2626
<UpdatePeriodically>false</UpdatePeriodically>
2727
<UpdateRequired>false</UpdateRequired>
2828
<MapFileExtensions>true</MapFileExtensions>
29-
<InstallUrl>http://www.midasgestures.net/private/osceleton-kinectsdk/</InstallUrl>
30-
<UpdateUrl>http://www.midasgestures.net/private/osceleton-kinectsdk/</UpdateUrl>
31-
<SupportUrl>http://www.midasgestures.net</SupportUrl>
29+
<InstallUrl>http://osceleton.zillode.be/private/osceleton-kinectsdk/</InstallUrl>
30+
<UpdateUrl>http://osceleton.zillode.be/private/osceleton-kinectsdk/</UpdateUrl>
31+
<SupportUrl>http://osceleton.zillode.be</SupportUrl>
3232
<TargetCulture>en</TargetCulture>
3333
<ProductName>OSCeleton-KinectSDK</ProductName>
34-
<PublisherName>lhoste</PublisherName>
34+
<PublisherName>Zillode</PublisherName>
3535
<OpenBrowserOnPublish>false</OpenBrowserOnPublish>
36-
<ApplicationRevision>31</ApplicationRevision>
36+
<ApplicationRevision>34</ApplicationRevision>
3737
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
3838
<UseApplicationTrust>false</UseApplicationTrust>
3939
<PublishWizardCompleted>true</PublishWizardCompleted>
@@ -77,10 +77,13 @@
7777
<SignManifests>true</SignManifests>
7878
</PropertyGroup>
7979
<PropertyGroup>
80-
<ManifestCertificateThumbprint>E1326BB8EA2233567028613A2537CD2C33CFAC03</ManifestCertificateThumbprint>
80+
<ManifestCertificateThumbprint>694989113E1FA49CAB8185DD43AD8344FA5188DD</ManifestCertificateThumbprint>
8181
</PropertyGroup>
8282
<PropertyGroup>
83-
<ManifestKeyFile>zillode.pfx</ManifestKeyFile>
83+
<ManifestKeyFile>publish\zillode.be.pfx</ManifestKeyFile>
84+
</PropertyGroup>
85+
<PropertyGroup>
86+
<SignAssembly>false</SignAssembly>
8487
</PropertyGroup>
8588
<ItemGroup>
8689
<Reference Include="Microsoft.Kinect">
@@ -147,14 +150,13 @@
147150
<Generator>ResXFileCodeGenerator</Generator>
148151
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
149152
</EmbeddedResource>
150-
<None Include="Lode.pfx" />
151153
<None Include="Properties\app.manifest" />
152154
<None Include="Properties\Settings.settings">
153155
<Generator>SettingsSingleFileGenerator</Generator>
154156
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
155157
</None>
156158
<AppDesigner Include="Properties\" />
157-
<None Include="zillode.pfx" />
159+
<None Include="publish\zillode.be.pfx" />
158160
</ItemGroup>
159161
<ItemGroup>
160162
<Resource Include="Images\Kinect.ico" />

SkeletonBasics-WPF/SkeletonBasics-WPF.csproj.user

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<PublishUrlHistory>publish\</PublishUrlHistory>
5-
<InstallUrlHistory>http://www.midasgestures.net/private/osceleton-kinectsdk/</InstallUrlHistory>
6-
<SupportUrlHistory>http://www.midasgestures.net</SupportUrlHistory>
7-
<UpdateUrlHistory>http://www.midasgestures.net/private/osceleton-kinectsdk/</UpdateUrlHistory>
5+
<InstallUrlHistory>http://osceleton.zillode.be/private/osceleton-kinectsdk/|http://midas.zillode.be/private/osceleton-kinectsdk/|http://www.midasgestures.net/private/osceleton-kinectsdk/</InstallUrlHistory>
6+
<SupportUrlHistory>http://osceleton.zillode.be|http://www.midasgestures.net</SupportUrlHistory>
7+
<UpdateUrlHistory>http://osceleton.zillode.be/private/osceleton-kinectsdk/|http://midas.zillode.be/private/osceleton-kinectsdk/|http://www.midasgestures.net/private/osceleton-kinectsdk/</UpdateUrlHistory>
88
<BootstrapperUrlHistory />
99
<ErrorReportUrlHistory />
1010
<FallbackCulture>en-US</FallbackCulture>

0 commit comments

Comments
 (0)