Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
aplcore
CONTINUE.dws
conga.crash
/packages/*
!/packages/apl-dependencies.txt
!/packages/apl-buildlist.json
/packages_dev/*
!/packages_dev/apl-dependencies.txt
!/packages_dev/apl-buildlist.json
/Dist/
2 changes: 1 addition & 1 deletion APLSource/.linkconfig
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ LinkVersion: { ID: "4.0.20"}, Settings: { arrays: 1, },}
{ LinkVersion: { ID: "4.0.17"}, Settings: { arrays: 1, },}
Expand Down
22 changes: 22 additions & 0 deletions APLSource/Admin/Make.aplf
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Make flag;M;C;path;zipFilename;res;version;cfg;parms
⍝ "Make" a new version of this project
:If flag
:If 0=⎕SE.⎕NC'MakeHelpers'
⎕←'Loading package "MakeHelpers" into ⎕SE...'
{}⎕SE.Tatin.LoadPackages'[tatin]aplteam-MakeHelpers'⎕SE
⎕←' Done!'
:EndIf
M←⎕SE.MakeHelpers
C←##.CiderConfig
path←C.HOME,'/',C.CIDER.distributionFolder
cfg←⎕JSON⍠('Dialect' 'JSON5')⊢⊃⎕NGET C.HOME,'/apl-package.json'
version←M.CompileVersionNumberPattern cfg
M.RecreateFolder path
{}⎕SE.Tatin.CreateAPIfromCFG ##.Sort cfg
parms←⎕SE.Tatin.CreateBuildParms C.HOME
parms.targetPath←path
parms.version←version
zipFilename←⎕SE.Tatin.BuildPackage parms
⎕←'*** New version build successfully:',M.CR,' ',zipFilename
:EndIf
⍝Done
1 change: 1 addition & 0 deletions APLSource/Sort/API/Classic.aplo
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Classic←{⍺←⊢ ⋄ 1:shy←⍺ (⍺⍺ ##.Classic) ⍵}
1 change: 1 addition & 0 deletions APLSource/Sort/API/Danish.aplo
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Danish←{⍺←⊢ ⋄ 1:shy←⍺ (⍺⍺ ##.Danish) ⍵}
1 change: 1 addition & 0 deletions APLSource/Sort/API/Finnish.aplo
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Finnish←{⍺←⊢ ⋄ 1:shy←⍺ (⍺⍺ ##.Finnish) ⍵}
1 change: 1 addition & 0 deletions APLSource/Sort/API/German.aplo
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
German←{⍺←⊢ ⋄ 1:shy←⍺ (⍺⍺ ##.German) ⍵}
1 change: 1 addition & 0 deletions APLSource/Sort/API/Natural.aplo
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Natural←{⍺←⊢ ⋄ 1:shy←⍺ (⍺⍺ ##.Natural) ⍵}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions APLSource/Sort/Public.aplf
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
r←Public
r←'Classic' 'Natural' 'Danish' 'Finnish' 'German'
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions apl-package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
api: "",
api: "API",
assets: "",
description: "Allow sorting according to various rules",
documentation: "",
Expand All @@ -11,13 +11,13 @@
maintainer: "a.brudz@gmail.com",
minimumAplVersion: "18.0",
ml: 1,
name: "sort",
name: "Sort",
os_lin: 1,
os_mac: 1,
os_win: 1,
project_url: "https://github.com/abrudz/sort",
source: "APLSource",
source: "APLSource/Sort",
tags: "sorting,natural-sort,language",
userCommandScript: "",
version: "0.1.0+3",
version: "0.1.1+9",
}
9 changes: 4 additions & 5 deletions cider.config
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
{
CIDER: {
cider_version: "0.42.2",
cider_version: "0.44.0",
dependencies: {
nuget: "nuget-dependencies",
tatin: "tatin-dependencies",
nuget: "",
tatin: "",
},
dependencies_dev: {
tatin: "tatin-dependencies_dev",
},
distributionFolder: "Dist",
init: "",
make: "",
make: "Admin.Make 1",
parent: "#",
projectSpace: "Sort",
project_url: "",
source: "APLSource",
tests: "",
version: "",
},
LINK: {
},
Expand Down