Skip to content

Commit

Permalink
3.6.21
Browse files Browse the repository at this point in the history
  • Loading branch information
cainhuang committed Feb 27, 2017
1 parent 220bb5b commit 64e9427
Show file tree
Hide file tree
Showing 16 changed files with 19 additions and 16 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ cmake_minimum_required (VERSION 2.8)
# set(CMAKE_CONFIGURATION_TYPES "Debug;Release;Profile" CACHE STRING "" FORCE)
set(CMAKE_CONFIGURATION_TYPES "Debug;Release" CACHE STRING "" FORCE)

set (BEHAVIAC_PACKAGE_VERSION 3.6.20)
set (BEHAVIAC_PACKAGE_VERSION 3.6.21)

#option( BUILD_SHARED_LIBS "set to OFF to build static libraries" ON )
SET(BUILD_SHARED_LIBS ON CACHE BOOL "set to OFF to build static libraries")
Expand Down
Binary file modified docs/behaviac.chm
Binary file not shown.
3 changes: 3 additions & 0 deletions history.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2017-2-27 3.6.21
Fix a bug for adding and removing the properties of the struct.

2017-2-24 3.6.20
Fix a bug for renaming the agent and setting its base class.

Expand Down
2 changes: 1 addition & 1 deletion inc/behaviac/common/_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
#define BEHAVIAC_RELEASE 0
#endif

#define BEHAVIAC_VERSION_STRING "3.6.20"
#define BEHAVIAC_VERSION_STRING "3.6.21"

Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public EBTStatus SelectorUpdate(Agent pAgent, EBTStatus childStatus, ref int act
s = pBehavior.exec(pAgent);
}

// If the child fails, or keeps running, do the same.
// If the child succeeds, or keeps running, do the same.
if (s != EBTStatus.BT_FAILURE)
{
return s;
Expand Down
2 changes: 1 addition & 1 deletion integration/demo_running/behaviac/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.6.20
3.6.21
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public EBTStatus SelectorUpdate(Agent pAgent, EBTStatus childStatus, ref int act
s = pBehavior.exec(pAgent);
}

// If the child fails, or keeps running, do the same.
// If the child succeeds, or keeps running, do the same.
if (s != EBTStatus.BT_FAILURE)
{
return s;
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.6.20
3.6.21
2 changes: 1 addition & 1 deletion src/behaviortree/nodes/composites/selector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ namespace behaviac {
s = pBehavior->exec(pAgent);
}

// If the child fails, or keeps running, do the same.
// If the child succeeds, or keeps running, do the same.
if (s != BT_FAILURE) {
return s;
}
Expand Down
4 changes: 2 additions & 2 deletions tools/designer/BehaviacDesigner/MetaStoreDock.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1527,7 +1527,7 @@ private void addMember()

if (prop != null)
{
structType.Properties.Add(prop);
structType.AddProperty(prop);

this.memberListBox.Items.Add(Member_Str + prop.DisplayName);
this.memberListBox.SelectedIndex = this.memberListBox.Items.Count - 1;
Expand Down Expand Up @@ -2138,7 +2138,7 @@ private void removeSelectedMember()

if (structType.CanBeRemoved())
{
structType.Properties.RemoveAt(memberIndex);
structType.RemoveProperty(structType.Properties[memberIndex].BasicName);

_lastSelectedType = structType.Name;
}
Expand Down
4 changes: 2 additions & 2 deletions tools/designer/BehaviacDesigner/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
// Build Number
// Revision
//
[assembly: AssemblyVersion("3.6.20")]
[assembly: AssemblyFileVersion("3.6.20")]
[assembly: AssemblyVersion("3.6.21")]
[assembly: AssemblyFileVersion("3.6.21")]
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public EBTStatus SelectorUpdate(Agent pAgent, EBTStatus childStatus, ref int act
s = pBehavior.exec(pAgent);
}

// If the child fails, or keeps running, do the same.
// If the child succeeds, or keeps running, do the same.
if (s != EBTStatus.BT_FAILURE)
{
return s;
Expand Down
2 changes: 1 addition & 1 deletion tutorials/CsTutorials/behaviac/runtime/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.6.20
3.6.21
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public EBTStatus SelectorUpdate(Agent pAgent, EBTStatus childStatus, ref int act
s = pBehavior.exec(pAgent);
}

// If the child fails, or keeps running, do the same.
// If the child succeeds, or keeps running, do the same.
if (s != EBTStatus.BT_FAILURE)
{
return s;
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.6.20
3.6.21
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.6.20
3.6.21

0 comments on commit 64e9427

Please sign in to comment.