Skip to content

Commit 7f5c465

Browse files
committed
Fix issue with not assining before/after actions with NULL where removed in editor.
And rebuild all for next msi
1 parent 249014b commit 7f5c465

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

BotEngine/BotEngine.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
<TargetFramework>netcoreapp3.1</TargetFramework>
66
<StartupObject>BotEngine.Program</StartupObject>
77
<Nullable>annotations</Nullable>
8-
<Version>0.1.3-beta-77</Version>
8+
<Version>0.2.3-beta-78</Version>
99
<Authors>Keif888</Authors>
1010
<Description>Android BotEngine</Description>
11-
<AssemblyVersion>0.1.3.77</AssemblyVersion>
12-
<FileVersion>0.1.3.77</FileVersion>
11+
<AssemblyVersion>0.2.3.77</AssemblyVersion>
12+
<FileVersion>0.2.3.77</FileVersion>
1313
</PropertyGroup>
1414

1515
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

BotEngineClient/BotEngineClient.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<PropertyGroup>
44
<TargetFramework>netcoreapp3.1</TargetFramework>
55
<Nullable>annotations</Nullable>
6-
<AssemblyVersion>1.2.2.47</AssemblyVersion>
7-
<FileVersion>1.2.2.47</FileVersion>
6+
<AssemblyVersion>1.3.2.47</AssemblyVersion>
7+
<FileVersion>1.3.2.47</FileVersion>
88
</PropertyGroup>
99

1010
<ItemGroup>

FindTextClient/FindTextClient.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<TargetFramework>netcoreapp3.1</TargetFramework>
55
<UseWindowsForms>true</UseWindowsForms>
66
<Nullable>annotations</Nullable>
7-
<AssemblyVersion>1.2.2.23</AssemblyVersion>
8-
<FileVersion>1.2.2.23</FileVersion>
7+
<AssemblyVersion>1.3.2.23</AssemblyVersion>
8+
<FileVersion>1.3.2.23</FileVersion>
99
</PropertyGroup>
1010

1111
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

FindTextClient/FindTextDLL.dll

0 Bytes
Binary file not shown.

ScriptEditor/ScriptEditor.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2030,8 +2030,8 @@ private void BtnUpdate_Click(object sender, EventArgs e)
20302030
ActiveTreeNode.Text = tbActionName.Text;
20312031

20322032
botAction.ActionType = cbActionType.Text;
2033-
botAction.AfterAction = cbActionAfter.Text;
2034-
botAction.BeforeAction = cbActionBefore.Text;
2033+
botAction.AfterAction = cbActionAfter.Text.Length == 0 ? null: cbActionAfter.Text;
2034+
botAction.BeforeAction = cbActionBefore.Text.Length == 0 ? null : cbActionBefore.Text;
20352035
botAction.Frequency = null;
20362036
botAction.DailyScheduledTime = null;
20372037
if (Enum.TryParse(botAction.ActionType, true, out ValidActionType validActionType))

ScriptEditor/ScriptEditor.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ Uses code derived from FindText 8.5 sourced from https://autohotkey.com/boards/v
1313
<PackageProjectUrl>https://github.com/keif888/AndroidBotEngine</PackageProjectUrl>
1414
<RepositoryUrl>https://github.com/keif888/AndroidBotEngine</RepositoryUrl>
1515
<Version>0.3.3</Version>
16-
<AssemblyVersion>0.4.4.64</AssemblyVersion>
17-
<FileVersion>0.4.4.64</FileVersion>
16+
<AssemblyVersion>0.5.4.65</AssemblyVersion>
17+
<FileVersion>0.5.4.65</FileVersion>
1818
<ApplicationIcon>ApplicationIcon.ico</ApplicationIcon>
1919
</PropertyGroup>
2020

TestBotEngineClient/TestBotEngineClient.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
<IsPackable>false</IsPackable>
77

8-
<AssemblyVersion>1.0.1.14</AssemblyVersion>
8+
<AssemblyVersion>1.1.1.14</AssemblyVersion>
99

10-
<FileVersion>1.0.1.14</FileVersion>
10+
<FileVersion>1.1.1.14</FileVersion>
1111
</PropertyGroup>
1212

1313
<ItemGroup>

0 commit comments

Comments
 (0)