Skip to content

Commit

Permalink
Bug fix related to ignoring Tatin packages
Browse files Browse the repository at this point in the history
  • Loading branch information
aplteam committed Mar 12, 2023
1 parent cccbb93 commit b7a8848
Show file tree
Hide file tree
Showing 15 changed files with 47 additions and 34 deletions.
5 changes: 4 additions & 1 deletion APLSource/Fire/GUI/OnAutocompleteInWhereToLook.aplf
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,15 @@
:If ~n.ReuseSearch.State No need for autocomplete on a hit list
fn.AutoCompleteForm.Visible Flag: is autocompletion visible right now?
isQSE'⎕SE'31 ⎕C n.StartSearchIn.Text Flag: is it pointing to ⎕SE?!
sisQSE{:⎕SE ((0)'#'=1,):# }n.StartSearchIn.Text Determine source
sisQSE{:⎕SE ((0=)'#'=1,):# }n.StartSearchIn.Text Determine source
:If 0=s
{}HideAutoComplete
:Else
{}CheckForQSE isQSE
l1 ##.List s 0 Get list of all named NS in either # or ⎕SE
:If n.IgnoreTatinPkgs.State
l(~(¨l[;0])'#._tatin' '⎕SE._tatin' '⎕SE._Tatin' '⎕SE.Tatin')l
:EndIf
:If 0<l Empty?! Guard!
l¨l[;0] Just the refs as names
l({(()[1]l).=},n.StartSearchIn.Text)l Reduce the autocomplete list
Expand Down
2 changes: 1 addition & 1 deletion APLSource/Fire/GUI/OnKeyPressInLookIn.aplf
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
:If '.'=2y
:If '.'¯1n.StartSearchIn.Text
:Trap 2 6
r0<(n.StartSearchIn.Text).{⎕NL }2 3 4 9
r0<(n.StartSearchIn.Text).{⎕NL }2 3 4 9
:Else
:Return
:EndTrap
Expand Down
7 changes: 5 additions & 2 deletions APLSource/Fire/History.apla
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
(
'⍝ Contains information regarding the last release. A full history is available on GitHub. (This line is ignored)'
''
'* 9.5.1 from 2023-02-13'
' * Bug fix in GUI.LetLinkDelete'
'* 9.5.1 from 2023-03-12'
' * Bug fixes'
' * Bug fix in ListNamespaceTree_'
' * Bug fix in GUI.LetLinkDelete'
' * "Start looking here" offered #._tatin or ⎕SE._tatin even if "Ignore Tatin packages" was ticked'
''
'* 9.5.0 from 2023-02-06'
' * Search operation is way quicker now under some circumstances'
Expand Down
2 changes: 1 addition & 1 deletion APLSource/Fire/ListNamespaceTree.aplf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"type" may be 1 (the default) or 2.\\
1: Returns a list of references with all named namespaces in "ref"\\
2: Return abnomalies\\
Semi-global ∆buffer is used to to collect results while running recursively.
Semi-global ∆buffer is used to collect results while running recursively.
type{(0<⎕NC ): 1}'type'
:If 1type
∆bufferref
Expand Down
5 changes: 3 additions & 2 deletions APLSource/Fire/ListNamespaceTree_.aplf
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
level ListNamespaceTree_(ref type classFlag);list;list1;list2;bool1;bool2;list3;list4;this;lista;lista2
Sub-function of "ListNamespaceTree" without independent value.
"flag" decides whether unnamed namespaces and instances (form, sockets etc
but no class instances!) should be included or not.
"flag" decides whether unnamed namespaces and instances (forms, sockets etc
but never class instances!) should be included or not.
Needs semi-global "∆buffer" to save results.
list1ref{.('',⎕NL 9.1)} Ordinary & unnamed namespaces (NS)
If somebody is brave enough to assign ⎕DMX to a variable we end up with a ref pointing to it.
Luckily the format of such a ref happens to be a matrix rather than a string.
That's why we get rid of those here:
list1(1=¨¨list1)/list1
{:.}//¨'Tatin.Core'¨¨list1 TODO⍝ Now check #.Tatin.RumbaLean.Tests.R: it points to #.Tatin.Core which DOES NOT exist
list1(~¨/¨(GetDisplayFormat¨list1)¨'[]')/list1 Remove unnamed NS
:If 0list21ref{.('',⎕NL 9.2)} Instances (classes & GUI objects)
:AndIf 0list2(~'('¨¨list2)/list2 Those carrying a "(" are useless for us: GUI leftovers.
Expand Down
2 changes: 1 addition & 1 deletion APLSource/Fire/Version.aplf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
rVersion
See also `History`
r'Fire' '9.5.1-beta-1+262' '2023-02-13'
r'Fire' '9.5.1+265' '2023-03-12'
14 changes: 7 additions & 7 deletions APLSource/TestCases/Test_Misc_014.aplf
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
#.⎕EX'FireReportGhost'
'FireReportGhost'#.⎕NS''
#.FireReportGhost.⎕FIX #.⎕SRC APLTreeUtils2
#.FireReportGhost.⎕FIX #.⎕SRC FilesAndDirs
#.FireReportGhost.⎕FIX #.⎕SRC APLProcess
#.FireReportGhost.APLTreeUtils2.⎕FX'r←Hello' 'r←''Worlds''' This is NOT a ghost!
#.FireReportGhost.FilesAndDirs.⎕FX'r←Hello' 'r←''World'''
#.FireReportGhost.FilesAndDirs.⎕FX'r←Hello2' 'r←''World2'''
#.FireReportGhost.FilesAndDirs.⎕FX'r←Hello3' 'r←''World3'''
#.FireReportGhost.FilesAndDirs.⎕FIX':Class MyClass' '∇r←Hello' ':Access Public Shared' 'r←''Universe''' '' ':EndClass'
#.FireReportGhost.APLProcess.⎕FX'r←Hello' 'r←''World'''
#.FireReportGhost.APLProcess.⎕FX'r←Hello2' 'r←''World2'''
#.FireReportGhost.APLProcess.⎕FX'r←Hello3' 'r←''World3'''
#.FireReportGhost.APLProcess.⎕FIX':Class MyClass' '∇r←Hello' ':Access Public Shared' 'r←''Universe''' '' ':EndClass'
#.FireReportGhost.⎕FIX':Interface InterfaceFoo' '∇r←Hello arg' '' ':EndInterface'
#.FireReportGhost.InterfaceFoo.⎕FX'r←∆Hello10' 'r←''World10'''
'#.FireReportGhost.MyGUI'⎕WC'Form'('Visible' 0)('KeepOnClose' 1)
Expand All @@ -25,8 +25,8 @@
⎕DL 0.05

Checks
expected'#.FireReportGhost.MyGUI' 'Hello' '#.FireReportGhost.FilesAndDirs' 'Hello' 'Hello2' 'Hello3' '#.FireReportGhost.APLTreeUtils2' 'Hello' '#.FireReportGhost.InterfaceFoo' '∆Hello10'
T.GoToTidyUp ref.TV.Itemsexpected
expected'#.FireReportGhost.MyGUI' 'Hello' '#.FireReportGhost.APLProcess' 'Hello' 'Hello2' 'Hello3' '#.FireReportGhost.APLTreeUtils2' 'Hello' '#.FireReportGhost.InterfaceFoo' '∆Hello10'
T.GoToTidyUp ~expected ∆LazyMatch ref.TV.Items
rg#.Fire.Fire.ReportGosts
ref.TV.SelItems0 0 0 0 1 0 0 0
1 rg.DeleteGhost ref.TV
Expand Down
2 changes: 1 addition & 1 deletion APLSource/TestCases/Test_ReplaceVars_007.aplf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
⎕DL 0.2
{}∆Select n2.StartBtn
∆Process n.Form
T.GoToTidyUp'Namespace''n2.Form'⎕WG'Type'
T.GoToTidyUp'Namespace''n2.Form'⎕WG'Type' Error?! Try again!

RT._OK

Expand Down
7 changes: 7 additions & 0 deletions Docs/ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ A bump of the minor number indicates added functionality plus possibly bug fixes

A bump of the patch number indicates bug fixes.

## Version 9.5.1 from 2023-03-12

* Bug fix in `ListNamespaceTree_`
* Bug fix in `GUI.LetLinkDelete`
* "Start looking here" offered `#._tatin` or `⎕SE._tatin` etc even if "Ignore Tatin packages" was ticked


## Version 9.5.0 from 2023-02-06

* Search operation is now much quicker under some cirumstances
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018 APL Team Ltd
Copyright (c) 2023 Kai Jaeger

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
22 changes: 11 additions & 11 deletions TestResults/CodeCoverage.html
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,12 @@ <h1 id="top">Coverage Report</h1>
<tr><th>Executed at</th><th>APLVersion</th><th>Memory (MB)</th></tr>
</thead>
<tbody>
<tr><td>2022-12-15 12:03:10</td><td>Windows-64 ⋄ 18.0.46299.0 ⋄ W ⋄ Development ⋄ Unicode</td><td>51</td></tr>
<tr><td>2023-03-12 10:21:08</td><td>Windows-64 ⋄ 18.0.46765.0 ⋄ W ⋄ Development ⋄ Unicode</td><td>51</td></tr>
</tbody>
</table>
<p>Overall 50% of the testable code is covered.</p>
<p>(Comment lines, empty lines, all <code>:End</code>* lines etc. are ignored)</p>
<p>215 of the fns/opr are 100% covered.</p>
<p>213 of the fns/opr are 100% covered.</p>
<div id="partly-covered" class="keep-together">
<table id="percent">
<thead>
Expand Down Expand Up @@ -195,6 +195,7 @@ <h1 id="top">Coverage Report</h1>
<tr class="uncovered"><td>#.Fire.Fire.GUI.CenterOnMonitor</td><td>15←≢2-4,7,10-11,14-20,22,24</td><td>0</td><td>15</td></tr>
<tr class="uncovered"><td>#.Fire.Fire.GUI.CheckForQSE</td><td>2, 3, 4</td><td>0</td><td>3</td></tr>
<tr class="uncovered"><td>#.Fire.Fire.GUI.CheckForUpdates</td><td>11←≢1-6,8-11,13</td><td>0</td><td>11</td></tr>
<tr class="uncovered"><td>#.Fire.Fire.GUI.ClickFindButton</td><td>5←≢2-3,5-7</td><td>0</td><td>5</td></tr>
<tr class="uncovered"><td>#.Fire.Fire.GUI.CopyAutoCompleteToCombo</td><td>8←≢4-11</td><td>0</td><td>8</td></tr>
<tr class="uncovered"><td>#.Fire.Fire.GUI.CreateContextMenu</td><td>14←≢1-14</td><td>0</td><td>14</td></tr>
<tr class="uncovered"><td>#.Fire.Fire.GUI.CreateContextMenu_AllFromSelectedNamespace</td><td>1, 2</td><td>0</td><td>2</td></tr>
Expand Down Expand Up @@ -238,7 +239,7 @@ <h1 id="top">Coverage Report</h1>
<tr class="uncovered"><td>#.Fire.Fire.GUI.OnAbout</td><td>2</td><td>0</td><td>1</td></tr>
<tr class="uncovered"><td>#.Fire.Fire.GUI.OnAmendWindowSize</td><td>1</td><td>0</td><td>1</td></tr>
<tr class="uncovered"><td>#.Fire.Fire.GUI.OnAutoCompleteList</td><td>6←≢2-7</td><td>0</td><td>6</td></tr>
<tr class="uncovered"><td>#.Fire.Fire.GUI.OnAutocompleteInWhereToLook</td><td>23←≢3-9,11-23,25-26,28</td><td>0</td><td>23</td></tr>
<tr class="uncovered"><td>#.Fire.Fire.GUI.OnAutocompleteInWhereToLook</td><td>25←≢3-9,11-14,16-26,28-29,31</td><td>0</td><td>25</td></tr>
<tr class="uncovered"><td>#.Fire.Fire.GUI.OnCallingCmd</td><td>2</td><td>0</td><td>1</td></tr>
<tr class="uncovered"><td>#.Fire.Fire.GUI.OnCancelSearch</td><td>1</td><td>0</td><td>1</td></tr>
<tr class="uncovered"><td>#.Fire.Fire.GUI.OnCase</td><td>1</td><td>0</td><td>1</td></tr>
Expand All @@ -262,6 +263,7 @@ <h1 id="top">Coverage Report</h1>
<tr class="uncovered"><td>#.Fire.Fire.GUI.OnHelp</td><td>1</td><td>0</td><td>1</td></tr>
<tr class="uncovered"><td>#.Fire.Fire.GUI.OnHiddenButtonGotFocus</td><td>2</td><td>0</td><td>1</td></tr>
<tr class="uncovered"><td>#.Fire.Fire.GUI.OnInvertSelectionCmd</td><td>2</td><td>0</td><td>1</td></tr>
<tr class="uncovered"><td>#.Fire.Fire.GUI.OnKeyPressInHitList</td><td>8←≢2-9</td><td>0</td><td>8</td></tr>
<tr class="uncovered"><td>#.Fire.Fire.GUI.OnKeyPressInLookIn</td><td>31←≢2-12,14-17,19-26,29-32,34,37-38,43</td><td>0</td><td>31</td></tr>
<tr class="uncovered"><td>#.Fire.Fire.GUI.OnKeyPressInLookIn_</td><td>54←≢1-21,23,25-32,34,36-57,59</td><td>0</td><td>54</td></tr>
<tr class="uncovered"><td>#.Fire.Fire.GUI.OnKeyPressInSearchFor</td><td>17←≢2-18</td><td>0</td><td>17</td></tr>
Expand Down Expand Up @@ -388,6 +390,7 @@ <h1 id="top">Coverage Report</h1>
<tr class="uncovered"><td>#.Fire.Fire.Replace.OnFixAll</td><td>2</td><td>0</td><td>1</td></tr>
<tr class="uncovered"><td>#.Fire.Fire.Replace.OnFixAndNext</td><td>2</td><td>0</td><td>1</td></tr>
<tr class="uncovered"><td>#.Fire.Fire.Replace.OnHiddenButtonGotFocus</td><td>2</td><td>0</td><td>1</td></tr>
<tr class="uncovered"><td>#.Fire.Fire.Replace.OnKeyPressStandard</td><td>5←≢3-7</td><td>0</td><td>5</td></tr>
<tr class="uncovered"><td>#.Fire.Fire.Replace.OnOneByOneMode</td><td>1, 2</td><td>0</td><td>2</td></tr>
<tr class="uncovered"><td>#.Fire.Fire.Replace.OnSelectAll</td><td>1, 2, 3</td><td>0</td><td>3</td></tr>
<tr class="uncovered"><td>#.Fire.Fire.Replace.OnSkip</td><td>2</td><td>0</td><td>1</td></tr>
Expand Down Expand Up @@ -488,10 +491,9 @@ <h1 id="top">Coverage Report</h1>
<tr><td>#.Fire.Fire.ListNamespaceTree</td><td>7←≢9,11,15-19</td><td>50</td><td>14</td></tr>
<tr><td>#.Fire.Fire.RegExSearch</td><td>5, 6, 7</td><td>50</td><td>6</td></tr>
<tr><td>#.Fire.Fire.ToggleAutoStatus</td><td>4←≢9-12</td><td>50</td><td>8</td></tr>
<tr><td>#.Fire.Fire.GUI.OnKeyPressInHitList</td><td>4←≢6-9</td><td>50</td><td>8</td></tr>
<tr><td>#.Fire.Fire.Replace.TellAcre</td><td>6, 7, 8</td><td>50</td><td>6</td></tr>
<tr><td>#.Fire.Fire.Replace.ChangeItByRegEx</td><td>7←≢12-15,17,19-20</td><td>56</td><td>16</td></tr>
<tr><td>#.Fire.Fire.GetCode</td><td>11←≢7,21,25-27,29-31,33-34,38</td><td>58</td><td>26</td></tr>
<tr><td>#.Fire.Fire.GetCode</td><td>11←≢7,21,25-27,29-31,33-34,38</td><td>59</td><td>27</td></tr>
<tr><td>#.Fire.Fire.Replace.Run</td><td>16←≢9-10,17-21,28-33,37-38,50</td><td>59</td><td>39</td></tr>
<tr><td>#.Fire.Fire.Replace.ChangeThem_</td><td>33←≢21,25-27,32,37-38,51-53,57,72-76,78,80-89,96-97,103-106</td><td>60</td><td>83</td></tr>
<tr><td>#.Fire.Fire.GUI.RemoveFromHitList</td><td>6←≢15-20</td><td>63</td><td>16</td></tr>
Expand Down Expand Up @@ -524,12 +526,12 @@ <h1 id="top">Coverage Report</h1>
<tr><td>#.Fire.Fire.OneByOneComparison.Run</td><td>6←≢13,23,29-31,33</td><td>79</td><td>29</td></tr>
<tr><td>#.Fire.Fire.Replace.ProcessOneByOne</td><td>15, 16, 18</td><td>79</td><td>14</td></tr>
<tr><td>#.Fire.Fire.ReportHits.MarkupRegExHitsInSimpleVars</td><td>7, 8</td><td>80</td><td>10</td></tr>
<tr><td>#.Fire.Fire.ListNamespaceTree_</td><td>5←≢20-23,32</td><td>81</td><td>27</td></tr>
<tr><td>#.Fire.Fire.RemoveUnwanted</td><td>4←≢18,22,24-25</td><td>81</td><td>21</td></tr>
<tr><td>#.Fire.Fire.GUI.CheckLookIn</td><td>11, 17, 18</td><td>81</td><td>16</td></tr>
<tr><td>#.Fire.Fire.Replace.ChangeIt</td><td>5←≢6-8,10,13</td><td>81</td><td>27</td></tr>
<tr><td>#.Fire.Fire.Replace.ReplaceSingleLineDfnsInScriptCode</td><td>5←≢21-22,24-25,27</td><td>81</td><td>26</td></tr>
<tr><td>#.Fire.Fire.ReportHits.Run_</td><td>5←≢11-15</td><td>81</td><td>26</td></tr>
<tr><td>#.Fire.Fire.ListNamespaceTree_</td><td>5←≢21-24,33</td><td>82</td><td>28</td></tr>
<tr><td>#.Fire.Fire.GUI.OnStartBtn</td><td>4←≢9,33,35-36</td><td>82</td><td>22</td></tr>
<tr><td>#.Fire.Fire.Replace.OnClose</td><td>12, 13</td><td>83</td><td>12</td></tr>
<tr><td>#.Fire.Fire.Replace.Replace_Split</td><td>8, 9</td><td>83</td><td>12</td></tr>
Expand Down Expand Up @@ -624,7 +626,6 @@ <h1 id="top">Coverage Report</h1>
<tr class="fullyCovered"><td>#.Fire.Fire.GUI.CenterIn</td><td></td><td>100</td><td>12</td></tr>
<tr class="fullyCovered"><td>#.Fire.Fire.GUI.CheckHitList</td><td></td><td>100</td><td>5</td></tr>
<tr class="fullyCovered"><td>#.Fire.Fire.GUI.CheckStartButton</td><td></td><td>100</td><td>3</td></tr>
<tr class="fullyCovered"><td>#.Fire.Fire.GUI.ClickFindButton</td><td></td><td>100</td><td>5</td></tr>
<tr class="fullyCovered"><td>#.Fire.Fire.GUI.CopyGuiToGlobal</td><td></td><td>100</td><td>23</td></tr>
<tr class="fullyCovered"><td>#.Fire.Fire.GUI.CreateCheckBoxes</td><td></td><td>100</td><td>23</td></tr>
<tr class="fullyCovered"><td>#.Fire.Fire.GUI.CreateEditMenu</td><td></td><td>100</td><td>25</td></tr>
Expand Down Expand Up @@ -723,7 +724,6 @@ <h1 id="top">Coverage Report</h1>
<tr class="fullyCovered"><td>#.Fire.Fire.Replace.NoOfCandidatesForChange</td><td></td><td>100</td><td>1</td></tr>
<tr class="fullyCovered"><td>#.Fire.Fire.Replace.NonReplaceVars</td><td></td><td>100</td><td>5</td></tr>
<tr class="fullyCovered"><td>#.Fire.Fire.Replace.OnConfigure</td><td></td><td>100</td><td>0</td></tr>
<tr class="fullyCovered"><td>#.Fire.Fire.Replace.OnKeyPressStandard</td><td></td><td>100</td><td>5</td></tr>
<tr class="fullyCovered"><td>#.Fire.Fire.Replace.OnReplaceByGotFocus</td><td></td><td>100</td><td>0</td></tr>
<tr class="fullyCovered"><td>#.Fire.Fire.Replace.OnReplaceByGotFocusGotFocus</td><td></td><td>100</td><td>0</td></tr>
<tr class="fullyCovered"><td>#.Fire.Fire.Replace.OnReplaceByLostFocus</td><td></td><td>100</td><td>0</td></tr>
Expand Down Expand Up @@ -797,7 +797,7 @@ <h1 id="top">Coverage Report</h1>
},
buttons: [
{
text: "Partly covered (92)",
text: "Partly covered (91)",
titleAttr: "50%",
className: "active",
action: function ( e, dt, node, config ) {
Expand All @@ -811,7 +811,7 @@ <h1 id="top">Coverage Report</h1>
}
},
{
text: "Uncovered (327)",
text: "Uncovered (330)",
titleAttr: "0%",
className: "active",
action: function ( e, dt, node, config ) {
Expand All @@ -825,7 +825,7 @@ <h1 id="top">Coverage Report</h1>
}
},
{
text: "Fully covered (215)",
text: "Fully covered (213)",
titleAttr: "100%",
className: "active",
action: function ( e, dt, node, config ) {
Expand Down
2 changes: 1 addition & 1 deletion packages/apl-buildlist.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ packageID: [ "aplteam-WinReg-5.0.4", "aplteam-OS-3.0.1", "aplteam-GitHubAPIv3-0.7.0", "aplteam-FilesAndDirs-5.3.2", "aplteam-APLTreeUtils2-1.1.3", ], principal: [ 1, 1, 1, 1, 1, ], url: [ "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", ],}
{ packageID: [ "aplteam-WinReg-5.0.4", "aplteam-OS-3.0.1", "aplteam-GitHubAPIv3-0.7.0", "aplteam-FilesAndDirs-5.3.4", "aplteam-APLTreeUtils2-1.1.3", ], principal: [ 1, 1, 1, 1, 1, ], url: [ "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", ],}
Expand Down
2 changes: 1 addition & 1 deletion packages/apl-dependencies.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
aplteam-APLTreeUtils2-1.1.3
aplteam-FilesAndDirs-5.3.2
aplteam-FilesAndDirs-5.3.4
aplteam-WinReg-5.0.4
aplteam-OS-3.0.1
aplteam-GitHubAPIv3-0.7.0
2 changes: 1 addition & 1 deletion packages_dev/apl-buildlist.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ packageID: [ "aplteam-Tester2-3.2.7", "aplteam-MakeHelpers-0.5.0", "aplteam-Inno-1.0.0", "aplteam-FilesAndDirs-5.3.2", "aplteam-CodeCoverage-0.9.4", "aplteam-APLTreeUtils2-1.1.3", "aplteam-APLProcess-0.4.1", "F@aplteam-FilesAndDirs-5.2.1", "aplteam-ZipArchive-1.0.0", "aplteam-WinSys-5.0.1", "aplteam-OS-3.0.1", "aplteam-MarkAPL-11.0.4", "aplteam-IniFiles-5.0.3", "aplteam-Execute-3.0.2", "aplteam-DotNetZip-2.0.2", "aplteam-CommTools-1.2.1", "A@aplteam-APLTreeUtils2-1.1.3", ], principal: [ 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ], url: [ "https://tatin.dev/", "https://localhost/", "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", ],}
{ packageID: [ "aplteam-Tester2-3.3.1", "aplteam-Inno-1.0.0", "aplteam-FilesAndDirs-5.3.4", "aplteam-CodeCoverage-0.9.4", "aplteam-APLTreeUtils2-1.1.3", "aplteam-APLProcess-0.4.1", "aplteam-WinSys-5.0.1", "aplteam-OS-3.0.1", "aplteam-IniFiles-5.0.3", "aplteam-Execute-3.0.2", "aplteam-CommTools-1.2.3", ], principal: [ 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, ], url: [ "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", "https://tatin.dev/", ],}
Expand Down
5 changes: 2 additions & 3 deletions packages_dev/apl-dependencies.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
aplteam-APLTreeUtils2-1.1.3
aplteam-FilesAndDirs-5.3.2
aplteam-FilesAndDirs-5.3.4
aplteam-CodeCoverage-0.9.4
aplteam-Tester2-3.2.7
aplteam-Tester2-3.3.1
aplteam-APLProcess-0.4.1
aplteam-Inno-1.0.0
aplteam-MakeHelpers-0.5.0

0 comments on commit b7a8848

Please sign in to comment.