Skip to content

Commit

Permalink
Version 1.14.16
Browse files Browse the repository at this point in the history
  • Loading branch information
bertfrees committed Dec 1, 2023
1 parent 3ff10fb commit f76883a
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 4 deletions.
37 changes: 35 additions & 2 deletions src/_data/downloads.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,41 @@
## Generate with:
## curl -u bertfrees:*** https://api.github.com/repos/daisy/pipeline-assembly/releases | jq --arg version 1.14.15 '.[] | select(.tag_name == ("v"+$version))|{group:"main",version:$version,sort:$version,state:"stable",github_tag:("v"+$version),github_url:.html_url,description:"FIXME",files:.assets|map({platform:.browser_download_url|capture("^.+\\.(?<ext>[^\\.]+)$")["ext"]|(if .=="zip" then "linux" elif .=="deb" then "debian" else "?" end),package:.browser_download_url|capture("^.+\\.(?<ext>[^\\.]+)$")["ext"]|sub("exe";"installer"),content:(if .browser_download_url|endswith(".zip") then ["server", "cli"] else ["server"] end),url:.browser_download_url,size:.size})}' | ruby -ryaml -rjson -e 'puts YAML.dump(JSON.load(ARGF))'
## curl -u bertfrees:*** https://api.github.com/repos/daisy/pipeline-ui/releases | jq --arg version 1.1.0 '.[] | select(.tag_name == $version)|{gui_github_tag:$version,gui_github_url:.html_url,files:.assets|map({platform:.browser_download_url|capture("^.+\\.(?<ext>[^\\.]+)$")["ext"]|(if .=="exe" then "windows" elif.=="dmg" then "macosx" else "?" end),package:.browser_download_url|capture("^.+\\.(?<ext>[^\\.]+)$")["ext"]|sub("exe";"installer"),content:["gui","server"],url:.browser_download_url,size:.size})}' | ruby -ryaml -rjson -e 'puts YAML.dump(JSON.load(ARGF))'
## curl -u bertfrees:*** https://api.github.com/repos/daisy/pipeline-assembly/releases | jq --arg version 1.14.16 '.[] | select(.tag_name == ("v"+$version))|{group:"main",version:$version,sort:$version,state:"stable",github_tag:("v"+$version),github_url:.html_url,description:"FIXME",files:.assets|map({platform:.browser_download_url|capture("^.+\\.(?<ext>[^\\.]+)$")["ext"]|(if .=="zip" then "linux" elif .=="deb" then "debian" else "?" end),package:.browser_download_url|capture("^.+\\.(?<ext>[^\\.]+)$")["ext"]|sub("exe";"installer"),content:(if .browser_download_url|endswith(".zip") then ["server", "cli"] else ["server"] end),url:.browser_download_url,size:.size})}' | ruby -ryaml -rjson -e 'puts YAML.dump(JSON.load(ARGF))'
## curl -u bertfrees:*** https://api.github.com/repos/daisy/pipeline-ui/releases | jq --arg version 1.2.7-RC1 '.[] | select(.tag_name == $version)|{gui_github_tag:$version,gui_github_url:.html_url,files:.assets|map({platform:.browser_download_url|capture("^.+\\.(?<ext>[^\\.]+)$")["ext"]|(if .=="exe" then "windows" elif.=="dmg" then "macosx" else "?" end),package:.browser_download_url|capture("^.+\\.(?<ext>[^\\.]+)$")["ext"]|sub("exe";"installer"),content:["gui","server"],url:.browser_download_url,size:.size})}' | ruby -ryaml -rjson -e 'puts YAML.dump(JSON.load(ARGF))'
## curl -u bertfrees:*** https://api.github.com/repos/daisy/pipeline-cli-go/releases | jq --arg version 2.1.7 '.[] | select(.tag_name == ("v"+$version))|{group:"main",version:$version,state:"stable",github_tag:("v"+$version),github_url:.html_url,files:.assets|map({platform:.browser_download_url|capture("^.+/cli-\\Q"+$version+"\\E-(?<platform>[^\\.]+)\\.zip$")["platform"]|(if .=="windows_amd64" then "windows-64" elif .=="windows_386" then "windows-32" elif .=="linux_amd64" then "linux-64" elif .=="linux_386" then "linux-32" elif .=="darwin_amd64" then "macosx" else "?" end),package:"zip",content: "cli", url:.browser_download_url,size:.size})}' | ruby -ryaml -rjson -e 'puts YAML.dump(JSON.load(ARGF))'

- group: main
version: "1.14.16"
sort: "1.14.16"
state: stable
github_tag: "v1.14.16"
github_url: "https://github.com/daisy/pipeline-assembly/releases/tag/v1.14.16"
description: >
Includes the standalone desktop application and the web server. Versions available for
Windows (an installer EXE) and Mac OS (a DMG disk image containing a standard Mac OS
application). The Linux packages (ZIP and DEB files) include only the web server. The
ZIP package also includes the command line interface.
files:
- platform: macosx
package: dmg
content: [gui, server]
url: "https://github.com/daisy/pipeline-ui/releases/download/1.2.7-RC1/daisy-pipeline-2023-setup-1.2.7-RC1.dmg"
size: 191566963
- platform: windows
package: installer
content: [gui, server]
url: "https://github.com/daisy/pipeline-ui/releases/download/1.2.7-RC1/daisy-pipeline-2023-setup-1.2.7-RC1.exe"
size: 145116184
- platform: debian
package: deb
content: [server]
url: "https://github.com/daisy/pipeline-assembly/releases/download/v1.14.16/pipeline2-1.14.16_debian.deb"
size: 77002452
- platform: linux
package: zip
content: [server, cli]
url: "https://github.com/daisy/pipeline-assembly/releases/download/v1.14.16/pipeline2-1.14.16_linux.zip"
size: 84827123

- group: cli
version: "2.1.7"
state: stable
Expand Down
2 changes: 1 addition & 1 deletion src/_data/versions.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
assembly: 1.14.15
assembly: 1.14.16
css-spec: 20210129
Loading

0 comments on commit f76883a

Please sign in to comment.