Skip to content

Commit

Permalink
Release 1.14.17
Browse files Browse the repository at this point in the history
  • Loading branch information
bertfrees committed Jan 24, 2024
1 parent 10942db commit 7f94dc0
Show file tree
Hide file tree
Showing 7 changed files with 51 additions and 20 deletions.
2 changes: 1 addition & 1 deletion src/Download.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ For installation instructions see

{% assign stable = all | where:'state','stable' %}

## Latest major version: {{ stable.last.version }}
## Latest stable version: {{ stable.last.version }} (App version {{ stable.last.app_version }})

{{ stable.last.description }}

Expand Down
4 changes: 0 additions & 4 deletions src/_data/api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,6 @@ xprocdoc:
artifact: zedai-utils
- group: org.daisy.pipeline.modules
artifact: audio-common
- group: org.daisy.pipeline.modules
artifact: css-speech
- group: org.daisy.pipeline.modules
artifact: tts-common
- group: org.daisy.pipeline.modules
Expand All @@ -167,8 +165,6 @@ xprocdoc:
artifact: epub3-tts
- group: org.daisy.pipeline.modules
artifact: mathml-to-ssml
- group: org.daisy.pipeline.modules
artifact: text-to-ssml
- group: org.daisy.pipeline.modules
artifact: nlp-common
- group: org.daisy.pipeline.modules
Expand Down
55 changes: 48 additions & 7 deletions src/_data/downloads.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,43 @@
## Generate with:
## 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-RC3 '.[] | 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.8 '.[] | select(.tag_name == ("v"+$version))|{group:"cli",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))'
## curl -u bertfrees:$(pass github-tokens/curl | head -1) https://api.github.com/repos/daisy/pipeline-assembly/releases | jq --arg version 1.14.17-p1 '.[] | 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:$(pass github-tokens/curl | head -1) https://api.github.com/repos/daisy/pipeline-ui/releases | jq --arg version 1.2.7 '.[] | select(.tag_name == $version)|{app_version:$version,app_github_tag:$version,app_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:$(pass github-tokens/curl | head -1) https://api.github.com/repos/daisy/pipeline-cli-go/releases | jq --arg version 2.1.8 '.[] | select(.tag_name == ("v"+$version))|{group:"cli",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.17-p1"
sort: "1.14.17-p1"
state: stable
github_tag: "v1.14.17-p1"
github_url: "https://github.com/daisy/pipeline-assembly/releases/tag/v1.14.17-p1"
app_version: "1.2.7"
app_github_tag: "1.2.7"
app_github_url: "https://github.com/daisy/pipeline-ui/releases/tag/1.2.7"
description: >
Includes the standalone desktop application and the web server. Versions available for
Windows (an installer EXE) and Mac OS (an installer PKG). 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: pkg
content: [gui, server]
url: https://github.com/daisy/pipeline-ui/releases/download/1.2.7/daisy-pipeline-setup-1.2.7.pkg
size: 191946498
- platform: windows
package: installer
content: [gui, server]
url: https://github.com/daisy/pipeline-ui/releases/download/1.2.7/daisy-pipeline-setup-1.2.7.exe
size: 145307816
- platform: debian
package: deb
content: [server]
url: "https://github.com/daisy/pipeline-assembly/releases/download/v1.14.17-p1/pipeline2-1.14.17-p1_debian.deb"
size: 77089612
- platform: linux
package: zip
content: [server, cli]
url: "https://github.com/daisy/pipeline-assembly/releases/download/v1.14.17-p1/pipeline2-1.14.17-p1_linux.zip"
size: 85063106

- group: cli
version: "2.1.8"
Expand Down Expand Up @@ -41,6 +77,9 @@
state: stable
github_tag: "v1.14.16"
github_url: "https://github.com/daisy/pipeline-assembly/releases/tag/v1.14.16"
app_version: "1.2.7-RC3"
app_github_tag: "1.2.7-RC3"
app_github_url: "https://github.com/daisy/pipeline-ui/releases/tag/1.2.7-RC3"
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
Expand Down Expand Up @@ -129,8 +168,9 @@
state: stable
github_tag: "v1.14.14"
github_url: "https://github.com/daisy/pipeline-assembly/releases/tag/v1.14.14"
gui_github_tag: "1.1.0"
gui_github_url: "https://github.com/daisy/pipeline-ui/releases/tag/1.1.0"
app_version: "1.1.0"
app_github_tag: "1.1.0"
app_github_url: "https://github.com/daisy/pipeline-ui/releases/tag/1.1.0"
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
Expand Down Expand Up @@ -191,8 +231,9 @@
state: stable
github_tag: "v1.14.12"
github_url: "https://github.com/daisy/pipeline-assembly/releases/tag/v1.14.12"
gui_github_tag: "1.0.0"
gui_github_url: "https://github.com/daisy/pipeline-ui/releases/tag/1.0.0"
app_version: "1.0.0"
app_github_tag: "1.0.0"
app_github_url: "https://github.com/daisy/pipeline-ui/releases/tag/1.0.0"
description: >
Includes the standalone desktop application and the server. Versions available for
Windows (an installer EXE) and Mac OS (a DMG disk image containing a standard Mac OS
Expand Down
4 changes: 0 additions & 4 deletions src/_data/modules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,16 +121,12 @@
artifact: audio-common
- group: org.daisy.pipeline.modules
artifact: tts-common
- group: org.daisy.pipeline.modules
artifact: css-speech
- group: org.daisy.pipeline.modules
artifact: dtbook-tts
- group: org.daisy.pipeline.modules
artifact: epub3-tts
- group: org.daisy.pipeline.modules
artifact: mathml-to-ssml
- group: org.daisy.pipeline.modules
artifact: text-to-ssml
- group: org.daisy.pipeline.modules
artifact: nlp-common
- group: org.daisy.pipeline.modules
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.16
assembly: 1.14.17-p1
css-spec: 20210129
2 changes: 0 additions & 2 deletions src/_wiki/Get-Help/API-Documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ FIXME: add short description for every package
- [`http://www.daisy.org/pipeline/modules/braille/pef-utils/library.xpl`](http://daisy.github.io/pipeline/api/org/daisy/pipeline/modules/braille/pef-utils/library.xpl)
- [`http://www.daisy.org/pipeline/modules/file-utils/library.xpl`](http://daisy.github.io/pipeline/api/org/daisy/pipeline/modules/file-utils/library.xpl)
- [`http://www.daisy.org/pipeline/modules/common-utils/library.xpl`](http://daisy.github.io/pipeline/api/org/daisy/pipeline/modules/common-utils/library.xpl)
- [`http://www.daisy.org/pipeline/modules/css-speech/library.xpl`](http://daisy.github.io/pipeline/api/org/daisy/pipeline/modules/css-speech/library.xpl)
- [`http://www.daisy.org/pipeline/modules/daisy202-utils/library.xpl`](http://daisy.github.io/pipeline/api/org/daisy/pipeline/modules/daisy202-utils/library.xpl)
- [`http://www.daisy.org/pipeline/modules/daisy202-validator/library.xpl`](http://daisy.github.io/pipeline/api/org/daisy/pipeline/modules/daisy202-validator/library.xpl)
- [`http://www.daisy.org/pipeline/modules/daisy3-to-daisy202/library.xpl`](http://daisy.github.io/pipeline/api/org/daisy/pipeline/modules/daisy3-to-daisy202/library.xpl)
Expand Down Expand Up @@ -142,7 +141,6 @@ FIXME: add short description for every package
- [`http://www.daisy.org/pipeline/modules/nlp-common/library.xpl`](http://daisy.github.io/pipeline/api/org/daisy/pipeline/modules/nlp-common/library.xpl)
- [`http://www.daisy.org/pipeline/modules/odf-utils/library.xpl`](http://daisy.github.io/pipeline/api/org/daisy/pipeline/modules/odf-utils/library.xpl)
- [`http://www.daisy.org/pipeline/modules/smil-utils/library.xpl`](http://daisy.github.io/pipeline/api/org/daisy/pipeline/modules/smil-utils/library.xpl)
- [`http://www.daisy.org/pipeline/modules/text-to-ssml/library.xpl`](http://daisy.github.io/pipeline/api/org/daisy/pipeline/modules/text-to-ssml/library.xpl)
- [`http://www.daisy.org/pipeline/modules/tts-common/library.xpl`](http://daisy.github.io/pipeline/api/org/daisy/pipeline/modules/tts-common/library.xpl)
- [`http://www.daisy.org/pipeline/modules/validation-utils/library.xpl`](http://daisy.github.io/pipeline/api/org/daisy/pipeline/modules/validation-utils/library.xpl)
- [`http://www.daisy.org/pipeline/modules/zedai-to-epub3/library.xpl`](http://daisy.github.io/pipeline/api/org/daisy/pipeline/modules/zedai-to-epub3/library.xpl)
Expand Down
2 changes: 1 addition & 1 deletion target/maven/pom.xml

Large diffs are not rendered by default.

0 comments on commit 7f94dc0

Please sign in to comment.