Skip to content

Commit bad100b

Browse files
committed
1 parent 26be0fc commit bad100b

File tree

3 files changed

+11
-24
lines changed

3 files changed

+11
-24
lines changed

APLSource/Cider/Cider.aplc

Lines changed: 4 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@
99

1010
∇ r←Version
1111
:Access Public Shared
12-
r←'0.23.2+367'
12+
r←'0.23.3+367'
13+
⍝ * 0.23.3 ⋄ 2023-03-03
14+
⍝ * Bug fix: Cider did not attempt to load its packages in case they are not found in ⎕SE in case
15+
⍝ a Cider user command is executed by the user.
1316
⍝ * 0.23.2 ⋄ 2023-02-19
1417
⍝ * Bug fix in PrinToSession: needs to check whether ∆LOG does exist or not
1518
⍝ * In case of a Git problem a VALUE ERROR occured
@@ -61,25 +64,6 @@
6164
⍝ is thrown anymore, only a reasonable message is printed to the session.
6265
⍝ * Bug fixes
6366
⍝ * The Cider config file defined a function `Initial` that did not exist as "init" function.
64-
⍝ * 0.20.1 ⋄ 2022-11-01
65-
⍝ * Bug fixes
66-
⍝ * In case the current branch (Git) is "main" or "master" the Git status was displayed as a
67-
⍝ vector rather than a matrix.
68-
⍝ * When a folder was inspected for later versions but did not contain a build list Cider
69-
⍝ got confused; should carry on without checking
70-
⍝ * 0.20.0 ⋄ 2022-10-23
71-
⍝ * New command `ListTatinPackages` added
72-
⍝ * When a project is loaded with packages that were not loaded from the principal Tatin Registry
73-
⍝ then those packages are explicitly reported because this might be okay or not
74-
⍝ * Bug fixes
75-
⍝ * When ]Cider.Make and ]Cider.RunTests were called without any project being opened a message
76-
⍝ "cancelled by user" was printed to the session
77-
⍝ * "Make" had a problem with selecting the latest script
78-
⍝ * 0.19.0 ⋄ 2022-10-10
79-
⍝ * With the "?" and the "*" syntax Cider does not offer already opened projects anymore
80-
⍝ * 0.18.0 ⋄ 2022-10-08
81-
⍝ * New `YesOrNo`
82-
⍝ * `Version` returned a two-item vector with the expected result being the first item
8367
8468

8569
:Field Private Shared ReadOnly FAILURE←0

APLSource/Cider_uc.dyalog

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
:Class Cider_UC
1+
:Class Cider_UC
22
User Command class for the project manager "Cider"
33
Kai Jaeger
4-
2023-01-30
4+
2023-03-03
55

66
⎕IO1 ⎕ML1 ⎕WX3
77
MinimumVersionOfDyalog'18.0'
@@ -92,10 +92,13 @@
9292
:EndIf
9393
9494

95-
rRun(Cmd Args);folder;P
95+
rRun(Cmd Args);folder;P;⎕TRAP
9696
:Access Shared Public
9797
r0 0''
9898
('Cider needs at least version ',MinimumVersionOfDyalog,' of Dyalog APL')Assert AtLeastVersion(//)⎕VFI MinimumVersionOfDyalog
99+
:If 0=⎕SE.⎕NC'Cider'
100+
{}⎕SE.Tatin.LoadDependencies(⎕NPARTS ##.SourceFile)'⎕SE'
101+
:EndIf
99102
P⎕SE.Cider
100103
:If 18={(//)⎕VFI ¯1+'.'}aplVersion2'.'⎕WG'aplversion'
101104
:AndIf 44280>(//)⎕VFI 3'.'()aplVersion 44280 has essential ⎕FIX fix for Link to work

apl-package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ api: "Cider", assets: "html", description: "A project manager for Dyalog APL that cooperates with Tatin", documentation: "", files: "cider.config.template", group: "aplteam", io: 1, license: "MIT", lx: "Init", maintainer: "kai@aplteam.com", minimumAplVersion: "18.0", ml: 1, name: "Cider", os_lin: 1, os_mac: 1, os_win: 1, project_url: "https://github.com/aplteam/Cider", source: "APLSource/Cider/", tags: "project-management", userCommandScript: "APLSource/Cider_UC.dyalog", version: "0.23.2+374",}
1+
{ api: "Cider", assets: "html", description: "A project manager for Dyalog APL that cooperates with Tatin", documentation: "", files: "cider.config.template", group: "aplteam", io: 1, license: "MIT", lx: "Init", maintainer: "kai@aplteam.com", minimumAplVersion: "18.0", ml: 1, name: "Cider", os_lin: 1, os_mac: 1, os_win: 1, project_url: "https://github.com/aplteam/Cider", source: "APLSource/Cider/", tags: "project-management", userCommandScript: "APLSource/Cider_UC.dyalog", version: "0.23.3+375",}

0 commit comments

Comments
 (0)