Skip to content

Commit

Permalink
Bug fix in <Search QNL>
Browse files Browse the repository at this point in the history
  • Loading branch information
aplteam committed Oct 24, 2021
1 parent bf5e475 commit 9b07089
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 77 deletions.
1 change: 1 addition & 0 deletions APLSource/Fire/GUI/SearchQNL/OnOK.aplf
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
parms.FullPathn2.FullPath.State
parms.SearchIsRegExn2.IsRegEx.State
parms.SearchForn2.SearchFor.Text
parms.Casen2.Case.State
Search parms
}
2 changes: 2 additions & 0 deletions APLSource/Fire/History.apla
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
(
'⍝ Contains information regarding the last release. A full history is available on GitHub. (This line is ignored)'
''
'* 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'
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(1¯1⎕NPARTS⎕THIS)'9.2.0+207' '2020-10-03'
r(1¯1⎕NPARTS⎕THIS)'9.2.1+207' '2020-10-24'
4 changes: 4 additions & 0 deletions Docs/ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ Note that with version 9.0.0 Fire started using the concept of semantic versioni

In short this means that a bump of the major version number indicates a breaking change. For example, 9.* does not run on versions of Dyalog older than 18.0.

## Version 9.2.1 from 2021-10-24

* "Case sensitive" in the ""Search QNL" report" did not work.

## Version 9.2.0 from 2021-10-03

* Fire now supports Link. This means that...
Expand Down
Binary file modified Fire.dws
Binary file not shown.
2 changes: 1 addition & 1 deletion Fire.iss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
; This script is best executed by Fire's "Make" utility.

#define MyAppVersion "9.2.0+208"
#define MyAppVersion "9.2.1+208"
#define MyAppName "Fire"
#define MyAppExeName "Fire.dws"
#define MyAppPublisher "APL Team Ltd"
Expand Down
76 changes: 1 addition & 75 deletions cider.config
Original file line number Diff line number Diff line change
@@ -1,75 +1 @@
// Configuration file for the Dyalog project manager Cider.
// Relative paths refer to the folder this config file stems from.
// Use ]Cider.OpenProject to open a project that carries a file "cider.config".

{
CIDER: {
// These are Cider's own configuration parameters
"projectSpace": "Fire", // Where the project is going to live; overwrite with ]Cider.OpenProject {path} -target=#.foo
"parent": "#",
"source": "APLSource", // Where does the code live? (relative to the project folder; might be empty)
"tatinFolder": "./packages/,./packages_dev=TestCases", // Folder(s) with installed Tatin packages
"lx": "Initialize", // Project fn; executed when everything else is done. Must be relative to projectSpace
"io": 1,
"ml": 1,
"wx": 3,
"info_url": "", // For exmaple a URL pointing to a GitHub project
},

LINK: {
// These are LINK parameters which are passed on to LINK when Cider brings the APL code into the WS with LINK
"arrays": 0, // [0|1]: 1 means that all variables are watched, 0 means that Cider does not care
"beforeRead": "", // Empty or fully qualified function name
"beforeWrite": "", // Empty or fully qualified function name
// Do not change the following LINK entries unless you a) have to and b) know exactly what you are doing:
"caseCode": 0, // [0|1]; 1:add octal suffixes to preserve capitalisation on systems that ignore case
"codeExtensions": [ // name of vector of file extensions to be considered code
"aplf",
"aplo",
"apln",
"aplc",
"apli",
"dyalog",
"apl",
"mipage",
],
"fastLoad": 0, // [0,1]; 1:reduce the load time by not inspecting source to detect name clashes
"flatten": 0, // [0|1]; 1:merge items from all subdirectories into target directory
"forceExtensions": 0, // [0,1]; 1=rename existing files so they adhere to the type specific file extensions
"forceFilenames": 1, // [0,1]; 1=rename existing files so their names match their contents
"getFilename": "", // Empty or fully qualified fn name to call to specify a custom file name for a given APL item
"typeExtensions": [ // Two-column matrix with name classes ([;1]) and extensions ([;2])
[
2,
"apla",
],
[
3,
"aplf",
],
[
4,
"aplo",
],
[
9.1,
"apln",
],
[
9.4,
"aplc",
],
[
9.5,
"apli",
],
],
"watch": "both", // [none|ns|dir|both]; which source to track for changes so the other can be synchronised
},


USER: {
// User-defined stuff (ignored by Cider); what follows is an example
// "convertFromAcre": 1,
},
}
{ CIDER: { info_url: "", lx: "Initialize", parent: "#", projectSpace: "Fire", source: "APLSource", tatinFolder: "./packages/,./packages_dev=TestCases", }, LINK: { arrays: 0, beforeRead: "", beforeWrite: "", caseCode: 0, codeExtensions: [ "aplf", "aplo", "apln", "aplc", "apli", "dyalog", "apl", "mipage", ], fastLoad: 0, flatten: 0, forceExtensions: 0, forceFilenames: 1, getFilename: "", typeExtensions: [ [ 2, "apla", ], [ 3, "aplf", ], [ 4, "aplo", ], [ 9.1, "apln", ], [ 9.4, "aplc", ], [ 9.5, "apli", ], ], watch: "both", }, SYSVARS: { io: 1, ml: 1, wx: 3, }, USER: { },}
Expand Down
Binary file modified project.dws
Binary file not shown.

0 comments on commit 9b07089

Please sign in to comment.