Skip to content

Commit 2c44cd9

Browse files
committed
Package dependencies updated
1 parent a97fb44 commit 2c44cd9

File tree

181 files changed

+1014
-2000
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

181 files changed

+1014
-2000
lines changed

APLSource/Cider/Version.aplf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
r←Version
22
⍝ See als History
3-
r←'0.37.0+609'
3+
r←'0.37.0+611'

APLSource/Cider_uc.dyalog

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -910,16 +910,21 @@
910910
:EndIf
911911
912912

913-
{name}CreateConfigFile(filename name);config;globalCiderConfigFilename
913+
{name}CreateConfigFile(filename name);config;globalCiderConfigFilename;tatinVars
914914
Copies the config template file over and injects the last part of the path of "filename" as "projectSpace"
915915
('The folder already hosts a file "',configFilename,'"')Assert~⎕NEXISTS filename
916916
globalCiderConfigFilenameP.GetCiderGlobalConfigHomeFolder,'cider.config.template'
917+
:If '#'=1P
918+
tatinVarsP.##.##.TatinVars
919+
:Else
920+
tatinVarsP.##.TatinVars
921+
:EndIf
917922
:If 0=⎕NEXISTS globalCiderConfigFilename
918923
First attempt
919-
globalCiderConfigFilename(⎕NCOPY P.##.F.ExecNfunction)P.##.TatinVars.HOME,'/cider.config.template'
920-
:ElseIf /{⎕NGET }¨globalCiderConfigFilename(P.##.TatinVars.HOME,'/cider.config.template')
924+
globalCiderConfigFilename(⎕NCOPY P.##.F.ExecNfunction)tatinVars.HOME,'/cider.config.template'
925+
:ElseIf /{⎕NGET }¨globalCiderConfigFilename(tatinVars.HOME,'/cider.config.template')
921926
Replace by the template if changed
922-
globalCiderConfigFilename(⎕NCOPY P.##.F.ExecNfunction)P.##.TatinVars.HOME,'/cider.config.template'
927+
globalCiderConfigFilename(⎕NCOPY P.##.F.ExecNfunction)tatinVars.HOME,'/cider.config.template'
923928
:EndIf
924929
config⎕JSON('Dialect' 'JSON5')P.##.F.NGET globalCiderConfigFilename
925930
:If 0=⎕SE.Link.⎕NC'Version' There was no such function prior to Link 3
@@ -938,6 +943,8 @@
938943
Checks whether the user has already a personal config file template.
939944
If not the generic Cider config file template is copied into the user's Cider home folder,
940945
Eventually the template is returned.
946+
⎕trap0'S'
947+
∘∘∘ TODO⍝ ⍝TODO⍝
941948
folderP.GetCiderGlobalConfigHomeFolder
942949
filenamefolder',/cider.config.template'
943950
:If ~P.##.F.Exists filename
@@ -1294,7 +1301,7 @@
12941301
Note that when the Cider project itself is about to be opened, the code is not yet available in #,
12951302
and even if it is as a left-over from earlier operations, it's potentially an outdated version.
12961303
Has side affects in case a ref to #.Cider is returned: prints a message and creates some essential refs.
1297-
:If {2⎕SE.Cider.⎕NC :0 0<⎕SE.Cider}'DEVELOPMENT' Does the developer really want this?
1304+
:If {2⎕SE.Cider.⎕NC :0 0<⎕SE.Cider}'DEVELOPMENT' Does the developer really want this?
12981305
:AndIf 0<#.⎕NC'Cider' And is there no...
12991306
:AndIf 0<#.Cider.⎕NC'Cider' ... namespace #.Cider yet?
13001307
:AndIf ('#.Cider')(1⎕SE.Link.Status )[;1] And is that namespace LINKed?

apl-package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@
1919
source: "APLSource/Cider/",
2020
tags: "project-management",
2121
userCommandScript: "APLSource/Cider_UC.dyalog",
22-
version: "0.37.0+609",
22+
version: "0.37.0+611",
2323
}

tatin-packages/apl-buildlist.json

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,29 @@
1-
{ packageID: [ "aplteam-FilesAndDirs-5.5.1", "aplteam-CommTools-1.7.0", "aplteam-APLTreeUtils2-1.2.0", "aplteam-APLGit2-0.15.3", "dyalog-HttpCommand-5.2.0", "aplteam-OS-3.1.1", "aplteam-GitHubAPIv3-0.7.0", ], principal: [ 1, 1, 1, 1, 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/", ],}
1+
{
2+
packageID: [
3+
"aplteam-FilesAndDirs-5.5.1",
4+
"aplteam-CommTools-1.7.0",
5+
"aplteam-APLTreeUtils2-1.2.1",
6+
"aplteam-APLGit2-0.15.3",
7+
"dyalog-HttpCommand-5.2.0",
8+
"aplteam-OS-3.1.1",
9+
"aplteam-GitHubAPIv3-0.7.0",
10+
],
11+
principal: [
12+
1,
13+
1,
14+
1,
15+
1,
16+
0,
17+
0,
18+
0,
19+
],
20+
url: [
21+
"https://tatin.dev/",
22+
"https://tatin.dev/",
23+
"https://tatin.dev/",
24+
"https://tatin.dev/",
25+
"https://tatin.dev/",
26+
"https://tatin.dev/",
27+
"https://tatin.dev/",
28+
],
29+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
aplteam-APLTreeUtils2-1.2.0
1+
aplteam-APLTreeUtils2-1.2.1
22
aplteam-FilesAndDirs-5.5.1
33
aplteam-CommTools-1.7.0
44
aplteam-APLGit2-0.15.3

0 commit comments

Comments
 (0)