Skip to content

Commit

Permalink
Set version to 0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
AndresTraks committed Jul 13, 2018
1 parent ac41383 commit 67057d6
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 15 deletions.
6 changes: 3 additions & 3 deletions BulletSharp/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("BulletSharpPInvoke")]
[assembly: AssemblyCopyright("Copyright © Andres Traks 2017")]
[assembly: AssemblyCopyright("Copyright © Andres Traks 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.10.0.0")]
[assembly: AssemblyFileVersion("0.10.0.0")]
[assembly: AssemblyVersion("0.11.0.0")]
[assembly: AssemblyFileVersion("0.11.0.0")]
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using System;
using System.IO;
using System.Reflection;
using System.Windows.Forms;
using System.Xml;

namespace DemoFramework
Expand All @@ -15,7 +14,7 @@ public class GraphicsLibraryManager
public static bool ExitWithReload { get; set; }

static string[] supportedLibraries = {
"SharpDX (DirectX 11)", "SharpDX (DirectX 10)", "SlimDX (DirectX 9)", "OpenTK (OpenGL)", "MonoGame (OpenGL)" };
"SharpDX (DirectX 11)", "SlimDX (DirectX 9)", "OpenTK (OpenGL)", "MonoGame (OpenGL)" };
public static string[] GetSupportedLibraries()
{
return supportedLibraries;
Expand All @@ -29,9 +28,6 @@ public static bool IsLibraryAvailable(string library)
case "SharpDX (DirectX 11)":
assemblyNames = new[] { "DemoFramework.SharpDX11", "SharpDX", "SharpDX.Direct3D11", "SharpDX.Direct3D11.Effects", "SharpDX.DXGI", "SharpDX.D3DCompiler" };
break;
case "SharpDX (DirectX 10)":
assemblyNames = new[] { "DemoFramework.SharpDX", "SharpDX", "SharpDX.Direct3D10", "SharpDX.DXGI", "SharpDX.D3DCompiler" };
break;
case "SlimDX (DirectX 9)":
assemblyNames = new[] { "DemoFramework.SlimDX", "SlimDX, Version=4.0.13.43, Culture=neutral, PublicKeyToken=b1b0c32fd1ffe4f9" };
break;
Expand Down Expand Up @@ -70,10 +66,6 @@ public static Graphics GetGraphics(Demo demo)
assembly = Assembly.Load("DemoFramework.SharpDX11");
graphicsType = assembly.GetType("DemoFramework.SharpDX11.SharpDX11Graphics");
break;
case "SharpDX (DirectX 10)":
assembly = Assembly.Load("DemoFramework.SharpDX");
graphicsType = assembly.GetType("DemoFramework.SharpDX.SharpDXGraphics");
break;
case "SlimDX (DirectX 9)":
assembly = Assembly.Load("DemoFramework.SlimDX");
graphicsType = assembly.GetType("DemoFramework.SlimDX.SlimDXGraphics");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public override float FarPlane
FormBorderStyle windowedFormBorderStyle;
bool togglingFullScreen = false;

public override IDebugDraw GetPhysicsDebugDrawer()
public override DebugDraw GetPhysicsDebugDrawer()
{
return new PhysicsDebugDraw(Device);
}
Expand Down
4 changes: 2 additions & 2 deletions libbulletc/src/btSoftBodyHelpers_wrap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,13 @@ void btSoftBodyHelpers_DrawFrame(btSoftBody* psb, btIDebugDraw* idraw)
{
btSoftBodyHelpers::DrawFrame(psb, idraw);
}

#ifndef BULLETC_DISABLE_SOFTBODY_HELPERS
void btSoftBodyHelpers_DrawInfos(btSoftBody* psb, btIDebugDraw* idraw, bool masses,
bool areas, bool stress)
{
btSoftBodyHelpers::DrawInfos(psb, idraw, masses, areas, stress);
}

#endif
void btSoftBodyHelpers_DrawNodeTree(btSoftBody* psb, btIDebugDraw* idraw, int mindepth,
int maxdepth)
{
Expand Down
2 changes: 2 additions & 0 deletions libbulletc/src/btSoftBodyHelpers_wrap.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ extern "C" {
EXPORT void btSoftBodyHelpers_DrawClusterTree(btSoftBody* psb, btIDebugDraw* idraw, int mindepth, int maxdepth);
EXPORT void btSoftBodyHelpers_DrawFaceTree(btSoftBody* psb, btIDebugDraw* idraw, int mindepth, int maxdepth);
EXPORT void btSoftBodyHelpers_DrawFrame(btSoftBody* psb, btIDebugDraw* idraw);
#ifndef BULLETC_DISABLE_SOFTBODY_HELPERS
EXPORT void btSoftBodyHelpers_DrawInfos(btSoftBody* psb, btIDebugDraw* idraw, bool masses, bool areas, bool stress);
#endif
EXPORT void btSoftBodyHelpers_DrawNodeTree(btSoftBody* psb, btIDebugDraw* idraw, int mindepth, int maxdepth);
#ifndef BULLETC_DISABLE_SOFTBODY_HELPERS
EXPORT void btSoftBodyHelpers_ReoptimizeLinkOrder(btSoftBody* psb);
Expand Down

0 comments on commit 67057d6

Please sign in to comment.