-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Packages updated & Several bug fixes & References report improved
- Loading branch information
Showing
1,046 changed files
with
78,356 additions
and
184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
.acre/ | ||
aplcore | ||
Dist/ | ||
change_history/ | ||
/Dist/ | ||
CONTINUE.dws | ||
conga.crash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
Make flag;targetPath;home;M;name;setupExe;myUCMDsFolder;C | ||
⍝ Version 7.0.0 ⋄ 2022-08-30 | ||
⎕IO←1 ⋄ ⎕ML←1 | ||
:If flag | ||
home←##.CiderConfig.HOME,'/' | ||
targetPath←home,'Dist/' | ||
{⍵:.}' '≠1↑0⍴⎕FX↑'r←M' 'r←⎕SE.MakeHelpers' ⍝ avoids creating a link in # that point to ⎕SE | ||
C←##.CiderConfig | ||
myUCMDsFolder←M.GetMyUCMDsFolder'\' | ||
name←'Fire' | ||
⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝⍝ | ||
M.RecreateFolder targetPath | ||
M.IncreaseBuildID'#.',name,'.',name,'.Version' | ||
M.CopyBetter(myUCMDsFolder,'Fire/Fire_uc.dyalog')(home,C.CIDER.source,'/Fire_uc.dyalog')'MyUCMDs/'(C.CIDER.source,'/') | ||
{}⎕SE.Cider.CloseProject'' ⍝ Precaution | ||
⎕WSID←targetPath,name,'.dws' | ||
0 ⎕SAVE ⎕WSID | ||
#.⎕EX ⎕NL⍳16 | ||
⎕LX←'#.',name,'.Run 0' | ||
'#.Fire.Fire'#.⎕CY ⎕WSID | ||
0 ⎕SAVE ⎕WSID | ||
'./packages'M.CopyTo targetPath | ||
M.ConvertMarkdownToHtml5(home,'Docs/')(targetPath,'html/') | ||
##.FilesAndDirs.DeleteFile targetPath,'/html/readme.html' | ||
(home,##.CiderConfig.CIDER.source,'/',name,'_UC.dyalog')M.CopyTo targetPath | ||
(home,'LICENSE')M.CopyTo targetPath | ||
(home,'Fire.ico')M.CopyTo targetPath | ||
setupExe←##.TestCases.Inno.Run name | ||
M.RemoveStuffButSetupExe targetPath | ||
:If 1 M.YesOrNo'Would you like to execute "',setupExe,'" ?' | ||
⎕CMD setupExe | ||
:EndIf | ||
⎕←'Clearing the workspace...' | ||
⎕CLEAR | ||
:EndIf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
OnConfigure←{rf←0⊃r←⍵ ⋄ r[5]⌈←1⊃⍺ ⋄ r[4]⌈←0⊃⍺ ⋄ r} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,23 @@ | ||
( | ||
'⍝ Contains information regarding the last release. A full history is available on GitHub. (This line is ignored)' | ||
'' | ||
'* 9.3.0 from 2021-12-23' | ||
' * Because if the danger involved Fire "Replace" refuses to act in case there are threads running.' | ||
' * Bug fixes: ' | ||
' * In case a function needs to be deleted as a result of "Delete lines with hits" (when no code it left)' | ||
' Link was not informed.' | ||
' * In case of hits in `#` the very first one was not reported.' | ||
'* 9.2.1 from 2021-10-24' | ||
' * "Case sensitive" in "Search QNL" did not work.' | ||
'* 9.2.0 from 2021-10-03' | ||
' * Fire now cooperates with Link but needs at least version 3.0 of Link for that to work' | ||
'* 9.1.3 from 2021-04-30' | ||
' * Fire does not leave behind orphaned refs anymore. Important because that may cause a performance penalty ' | ||
' * Attempt to change something in a scripted namespaces that is embedded in a scripted namespaces causes a ' | ||
' "Not supported by design" warning now.' | ||
'* 9.1.2 from 2021-04-18' | ||
' * Bug fix: ReportHits.MarkUpAllHits was buggy' | ||
'* 9.1.1 from 2021-04-17' | ||
' * Replace with one-by-one did not work' | ||
'* 9.1.0 from 2021-04-07' | ||
' * New parameter "StartSearchIn" introduced for searching ⎕NL (CreateParmsFor_QNL_Search) that defaults to "#" but' | ||
' can also be "⎕SE".' | ||
' * Bug fixes' | ||
' * In case "searchFor" was specified as a parameter via the left argument of `SearchQNL` this was overwritten' | ||
' by the right argument, even in case this was empty.' | ||
' * Fire 9 did not run under Dyalog 18.1' | ||
'* 9.0.1' | ||
' * There was a problem with the Fire icon. It hit only on PCs were Fire has never been installed before.' | ||
'* 9.0.0' | ||
' * Breaking changes: ' | ||
' * Requires at least Dyalog 18.0 Unicode.' | ||
' * Requires the Tatin package manager to be available.' | ||
' * New option "Ignore references" defaults to 1.' | ||
' * New option "Ignore Tatin packages" defaults to 1.' | ||
' * Two new functions added to the API: `SearchQNL` and `CreateParmsFor_QNL_Search`.' | ||
' * Messages in the status bar are now explicitly mentioning whether the hit list was searched.' | ||
' * When a search of the current hit list yields no results the "Search hit list" button is un-ticked and the' | ||
' "Search in" field is made available.' | ||
' * The API is now (also) available from `⎕SE.Fire`' | ||
' * Bug fixes:' | ||
' * Attempts to remove variables from the hit report failed.' | ||
' * In the hit list, moving the selection with the keyboard did not update the right pane accordingly.' | ||
' * Ctrl+A in the hit report did not select all items.' | ||
' * Removing an item from the hit list did not remove it from the HTML.' | ||
' * "Remove from hit report" could result in a WS FULL in case of a very large hit list.' | ||
' * When in the "Start looking here" field a space was entered Fire got confused; it should not be possible to ' | ||
' enter a space since it makes no sense in this field.' | ||
' * It was possible to enter a dot in the "Start looking here" field even if there weren''t any sub-namespaces' | ||
' available. That should be prevented.' | ||
' * The replace preview failed to show anything sensible when the replace string refered to groups.' | ||
' * When after a search for an RegEx a one-by-one replace operation was triggered Fire might produce a VALUE ERRROR.' | ||
' * In the "Replace" dialog the "Delete lines" options should not be available (active) when it is a RegEx search.' | ||
' * The `∆List` function created by `Fire.API.CreateSearchParms` was buggy.' | ||
' * Internal change: all calls to acre via ⎕SE.UCMDS have now been replaced by calls to acre''s API.' | ||
'\\\\' | ||
'For information regarding older version see <https://github.com/aplteam/Fire/releases>' | ||
'⍝ Contains information regarding the last release. A full history is available on GitHub. (This line is ignored)' | ||
'' | ||
'* 9.4.0 from 2022-09-11' | ||
' * The "References" report now offers to ignore Tatin packages ' | ||
' * Bug fixes ' | ||
' * Searching for a RegEx and then replacing it by a multi-line expression let to a wrong report, though the' | ||
' replace operation would have worked just fine.' | ||
' * When the special syntax ]Fire . was used while a function was on the stack that came from a class instance' | ||
' then the setting of "Start looking here" was both wrong and invalid' | ||
' * Under certain (and rare) circumstances closing the "Replace" dialog box resulted in a VALUE ERROR' | ||
' * Resizing the "Remove all objects from namespace... from list" dialog box resulted in a stream of VALUE ERROR ' | ||
' on a missing `OnConfiguration` handler' | ||
' * In the "References" report the message regarding anomalies always mentioned a wrong line number' | ||
'* 9.3.0 from 2021-12-23' | ||
' * Because if the danger involved Fire "Replace" refuses to act in case there are threads running.' | ||
' * Bug fixes: ' | ||
' * In case a function needs to be deleted as a result of "Delete lines with hits" (when no code it left)' | ||
' Link was not informed.' | ||
' * In case of hits in `#` the very first one was not reported.' | ||
'\\\\' | ||
'For information regarding older version see <https://github.com/aplteam/Fire/releases>' | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.