Skip to content

Commit be1103a

Browse files
committed
Minor fixes
1 parent 6d146cf commit be1103a

File tree

5 files changed

+15
-118
lines changed

5 files changed

+15
-118
lines changed

content/tutorials/gui.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ In the View menu at the top, toolbars and tools related to the selected viewer c
3838
* DICOM Video player (default system player associated with mpg files)
3939

4040
### List of other workspaces
41-
* Dicomizer
41+
* [Dicomizer](../dicomizer) - Dicomizer workspace
4242
* Explorer of standard images (based on the non-dicom-explorer.json configuration profile)
4343

4444

layouts/shortcodes/latest-download.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
</span>
4747
</td>
4848
<td style="text-align: left;">{{ cond (eq $package ".msi") "Requires Windows 10 or higher"
49-
(cond (eq $package ".pkg") (cond (eq $arch "arm-64") "Requires macOS 12 or higher (Apple Silicon)" "Requires macOS 11 or higher" )
49+
(cond (eq $package ".pkg") (cond (eq $arch "arm-64") "Requires macOS 12 or higher (Apple Silicon)" "Requires macOS 11 or higher (Intel)" )
5050
(cond (eq $arch "arm-32") "Requires GLIBC_2.17. Only tested with Raspberry Pi 4"
5151
(cond (eq $arch "arm-64") "Requires GLIBC_2.27" (cond (eq $package ".rpm") "Requires GLIBC_2.17, libstdc++.so.6 and libgcc" "Requires GLIBC_2.17" ))))
5252
}}

layouts/shortcodes/old-download.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
{{ end }}
5858
</td>
5959
<td style="text-align: left;">{{ cond ( ge $elem_index 1) "" (cond (eq $package ".msi") "Requires Windows 10 or higher"
60-
(cond (eq $package ".pkg") (cond (eq $arch "arm-64") "Requires macOS 12 or higher (Apple Silicon)" "Requires macOS 11 or higher" )
60+
(cond (eq $package ".pkg") (cond (eq $arch "arm-64") "Requires macOS 12 or higher (Apple Silicon)" "Requires macOS 11 or higher (Intel)")
6161
(cond (eq $arch "arm-32") "Requires GLIBC_2.17. Only tested with Raspberry Pi 4"
6262
(cond (eq $arch "arm-64") "Requires GLIBC_2.27" (cond (eq $package ".rpm") "Requires GLIBC_2.17, libstdc++.so.6 and libgcc" "Requires GLIBC_2.17" )))))
6363
}}
Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
1-
{{ $jsonFile := readFile "/static/viewer-hub/compatibility/version-compatibility.json" }}
2-
{{ $data := unmarshal $jsonFile }}
1+
{{ $url := "https://raw.githubusercontent.com/nroduit/Weasis/refs/heads/master/weasis-distributions/etc/config/version-compatibility.json" }}
2+
{{ $jsonFile := resources.GetRemote $url }}
3+
{{ $data := $jsonFile | transform.Unmarshal }}
4+
{{ $lastIndex := sub (len $data) 1 }}
35
<table>
46
<thead>
5-
<tr>
6-
<th>Release Version</th>
7-
<th>Minimal Version</th>
8-
<th>i18n Version</th>
9-
</tr>
7+
<tr>
8+
<th>Release Version</th>
9+
<th>Minimal Version</th>
10+
<th>i18n Version</th>
11+
</tr>
1012
</thead>
1113
<tbody>
1214
{{ range $index, $element := $data }}
15+
{{ if ne $index $lastIndex }}
1316
<tr>
1417
<td>{{ index $element "release-version" }}</td>
1518
<td>{{ index $element "minimal-version" }}</td>
1619
<td>{{ index $element "i18n-version" }}</td>
1720
</tr>
1821
{{ end }}
22+
{{ end }}
1923
</tbody>
20-
</table>
24+
</table>

static/viewer-hub/compatibility/version-compatibility.json

Lines changed: 0 additions & 107 deletions
This file was deleted.

0 commit comments

Comments
 (0)