diff --git a/APLSource/_code-0/releaseNotes-80.aplf b/APLSource/_code-0/releaseNotes-80.aplf index 6a48f2e..473d7c8 100644 --- a/APLSource/_code-0/releaseNotes-80.aplf +++ b/APLSource/_code-0/releaseNotes-80.aplf @@ -2,18 +2,17 @@ z←UT.cq ntbs UT.ft'⍝ ' 1≡⍺ 1:z z⊣#.⎕NEW'ClipBoard'(⊂'Text'z) -⍝ Acre 6.0.0+261 2019-09-05 12.46 +⍝ Acre 6.0.1+263 2019-09-05 21.35 ⍝ ⍝ ## Acre Desktop - Release Notes ⍝ -⍝ * All acre commands and API functions have been consolidated such that both sets are comprised of the union of the two. -⍝ * They are identically named in "PascalCase". -⍝ * Their arguments, although formatted differently contain the same data. -⍝ * Arguments, Options and Flags are specified -⍝ * in commands as - argument1 argument2 -option=value -flag' -⍝ * in functions as - 'argument1' 'argument2' ('option' 'value') ('flag' 1) -⍝ * The API space is changed from "⎕SE.acreAPI" to "⎕SE.acre". -⍝ * The config-file "acre.config" is now created in "JSON" which is supported in all Dyalog versions from 14.1 to present. +⍝ * #196 SYNTAX ERROR starting acre in Dyalog 14.0 - introduced in Acre 6.0.0+248 +⍝ → - setting up API - namespace scope of locals in operators +⍝ * DOMAIN ERROR in CreateProject creating config file in Dyalog 14.0 - introduced in Acre 5.2.0+239 +⍝ → - now created in APLAN as JSON is not available +⍝ * #199 DOMAIN ERROR fixing a function in Dyalog 14.0 - cannot reproduce - proofed code against catenate reduction on empty +⍝ * #198 ProjectSpace default - RFE - configuration or suppied to OpenProject can now specify [#.prefix.]*.* where the number +⍝ → of asterisks defines how many trailing nodes of the project folder are appended to the project space path. ⍝ -⍝ Phil 2019-09-05 12:46 6.0.0+259 +⍝ Phil 2019-09-05 21.35 6.0.0+262 } diff --git a/APLSource/_code-0/setEmulators-8.aplf b/APLSource/_code-0/setEmulators-8.aplf index be8c799..be5ebe7 100644 --- a/APLSource/_code-0/setEmulators-8.aplf +++ b/APLSource/_code-0/setEmulators-8.aplf @@ -5,6 +5,7 @@ f←{ [ 15 'Cc' '(819⌶)' + 17 '_JSON' '⎕JSON⍠(''Compact'' 0)↑' 15 '_MKDIR' '⊢{3 ⎕MKDIR ⍵}' 15 '_NDELETE' '⊢{1 ⎕NDELETE ⍵}' 15 '_NEXISTS' '⎕NEXISTS' @@ -15,7 +16,6 @@ 16 'a_' '{⍺←⊢ ⋄ ⍺(⍺⍺@⍵⍵)⍵ ⊣ ''DO NOT EDIT''}' 16 'c_' '⊆' 16 'i_' '⍸' - 17 '_JSON' '⎕JSON⍠(''Compact'' 0)↑' ] } d←PL.decode 1↓¯1↓⎕NR'f' @@ -24,5 +24,5 @@ ⍝ called at start, this swaps in the primitive itself ⍝ or a much lighter cover than the v14.0 emulator ⍝ if run in a Dyalog version late enough to use it. -⍝ Phil 2019-04-05 07.11 +⍝ Phil 2019-09-05 16:28 6.0.0+261 }