|
9 | 9 | <code>scratch</code> command to keep their <strong>Venom Linux</strong> up
|
10 | 10 | to date, since <strong>Venom Linux</strong> is a rolling release.<br /><br />
|
11 | 11 | <Fieldset legend="Download">
|
12 |
| - <Panel header="Venom"> |
13 |
| - <DataTable :value="download_own"> |
14 |
| - <Column field="version" header="Version"> |
15 |
| - <template #body="slotProps"> |
16 |
| - <strong>{{ slotProps.data.version }}</strong> |
17 |
| - </template> |
18 |
| - </Column> |
19 |
| - <Column field="download" header="Download"> |
20 |
| - <template #body="slotProps"> |
21 |
| - <Button |
22 |
| - type="button" |
23 |
| - label="Download" |
24 |
| - icon="pi pi-download" |
25 |
| - class="p-button-info down" |
26 |
| - @click="open(slotProps.data.download)" |
27 |
| - /> |
28 |
| - </template> |
29 |
| - </Column> |
30 |
| - <Column field="md5" header="Verify"> |
31 |
| - <template #body="slotProps"> |
32 |
| - <Button |
33 |
| - type="button" |
34 |
| - label="md5sum" |
35 |
| - icon="pi pi-key" |
36 |
| - class="p-button-secondary down" |
37 |
| - @click="open(slotProps.data.md5)" |
38 |
| - /> |
39 |
| - </template> |
40 |
| - </Column> |
41 |
| - <Column field="sha512" header="SHA512"> |
42 |
| - <template #body="slotProps"> |
43 |
| - <Button |
44 |
| - type="button" |
45 |
| - label="sha512sum" |
46 |
| - icon="pi pi-key" |
47 |
| - class="p-button-secondary down" |
48 |
| - v-if="slotProps.data.sha512" |
49 |
| - @click="open(slotProps.data.sha512)" |
50 |
| - /> |
51 |
| - </template> |
52 |
| - </Column> |
53 |
| - </DataTable> </Panel |
54 |
| - ><br /> |
| 12 | + |
55 | 13 | <Panel header="OSDN">
|
56 | 14 | <DataTable :value="download_osdn">
|
57 | 15 | <Column field="version" header="Version">
|
|
148 | 106 | export default {
|
149 | 107 | data() {
|
150 | 108 | return {
|
151 |
| - download_own: [ |
152 |
| - { |
153 |
| - version: "A complete xfce4 desktop (ISO)", |
154 |
| - download: "https://files.venomlinux.org/venomlinux.iso", |
155 |
| - md5: "https://files.venomlinux.org/venomlinux.md5", |
156 |
| - sha512: "https://files.venomlinux.org/venomlinux.sha512" |
157 |
| - }, |
158 |
| - { |
159 |
| - version: "A minimal base system (ISO)", |
160 |
| - download: "https://files.venomlinux.org/venomlinux-base.iso", |
161 |
| - md5: "https://files.venomlinux.org/venomlinux-base.md5", |
162 |
| - sha512: "https://files.venomlinux.org/venomlinux-base.sha512" |
163 |
| - }, |
164 |
| - { |
165 |
| - version: "A tarball of the rootfs (tar.xz)", |
166 |
| - download: "https://files.venomlinux.org/venomlinux-rootfs.tar.xz", |
167 |
| - md5: "https://files.venomlinux.org/venomlinux-rootfs.md5", |
168 |
| - sha512: "https://files.venomlinux.org/venomlinux-rootfs.sha512" |
169 |
| - } |
170 |
| - ], |
171 | 109 | download_osdn: [
|
172 | 110 | {
|
173 | 111 | version: "A complete xfce4 desktop (ISO)",
|
|
0 commit comments