Skip to content

Commit

Permalink
Created pre-release build 1.0.2.11
Browse files Browse the repository at this point in the history
  • Loading branch information
fisothemes committed Aug 25, 2023
1 parent b328431 commit 6bdd421
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 25 deletions.
Binary file added builds/1.0.2.11/TcDynCollections.library
Binary file not shown.
23 changes: 3 additions & 20 deletions src/TwinCat Dynamic Collections/TcDynCollections/POUs/MAIN.TcPOU
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
<POU Name="MAIN" Id="{dc6abe44-dfc6-0eff-1900-3902669cc79c}" SpecialFunc="None">
<Declaration><![CDATA[PROGRAM INTERNAL MAIN
VAR
Data : ARRAY[0..10] OF INT := [1,2,3,4,5,6,7,8,9,10];
rData : ARRAY[0..10] OF INT;
i,j : T_Position;
ipImm : I_Immutable_List;
Comp : T_Comparison;
bAdd, bRemove, bClear : BOOL;
fbArray : FB_Array(10);
fbArray_List : FB_Array_List(0);
Expand All @@ -15,46 +15,29 @@ VAR
fbSet : FB_Tree_Set;
fbMap : FB_Tree_Map;
fbDeque : FB_Deque;
Data : ARRAY[0..10] OF INT := [1,2,3,4,5,6,7,8,9,10];
END_VAR
]]></Declaration>
END_VAR]]></Declaration>
<Implementation>
<ST><![CDATA[Comp := F_Compare_Any(i,j);
IF bAdd THEN
<ST><![CDATA[IF bAdd THEN
bAdd := FALSE;
fbMap
.Insert(Data[0], Data[1])
.Get(Data[0], rData[0]);
END_IF
IF bRemove THEN
bRemove := FALSE;
fbSet.Remove(j);
END_IF
IF bClear THEN
bClear := FALSE;
fbMap.Clear();
END_IF]]></ST>
</Implementation>
<LineIds Name="MAIN">
<LineId Id="158" Count="1" />
<LineId Id="54" Count="0" />
<LineId Id="126" Count="0" />
<LineId Id="246" Count="0" />
<LineId Id="248" Count="1" />
<LineId Id="247" Count="0" />
<LineId Id="60" Count="1" />
<LineId Id="96" Count="0" />
<LineId Id="63" Count="0" />
<LineId Id="155" Count="0" />
<LineId Id="68" Count="0" />
<LineId Id="141" Count="0" />
<LineId Id="143" Count="1" />
<LineId Id="171" Count="0" />
<LineId Id="142" Count="0" />
</LineIds>
</POU>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ END_VAR]]></Declaration>
<Implementation>
<ST><![CDATA[F_GetVersion.iMajor := 1;
F_GetVersion.iMinor := 0;
F_GetVersion.iBuild := 1;
F_GetVersion.iRevision := 10;
F_GetVersion.iBuild := 2;
F_GetVersion.iRevision := 11;
]]></ST>
</Implementation>
<LineIds Name="F_GetVersion">
<LineId Id="267" Count="3" />
<LineId Id="289" Count="3" />
<LineId Id="2" Count="0" />
</LineIds>
</POU>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<Title>TwinCat Dynamic Collections</Title>
<Author>Goodwill Mzumala</Author>
<DefaultNamespace>TcDynCollections</DefaultNamespace>
<ProjectVersion>1.0.1.10</ProjectVersion>
<ProjectVersion>1.0.2.11</ProjectVersion>
<DocFormat>reStructuredText</DocFormat>
<Description>A library for handling collections of data dynamically.</Description>
<CombineIds>true</CombineIds>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// This function has been automatically generated from the project information.
VAR_GLOBAL CONSTANT
{attribute 'const_non_replaced'}
stLibVersion_TwinCat_Dynamic_Collections : ST_LibVersion := (iMajor := 1, iMinor := 0, iBuild := 1, iRevision := 10, nFlags := 0, sVersion := '1.0.1.10');
stLibVersion_TwinCat_Dynamic_Collections : ST_LibVersion := (iMajor := 1, iMinor := 0, iBuild := 2, iRevision := 11, nFlags := 0, sVersion := '1.0.2.11');
END_VAR
]]></Declaration>
</GVL>
Expand Down

0 comments on commit 6bdd421

Please sign in to comment.