Skip to content

Commit 653c00b

Browse files
author
emmett1
committed
update for new release
1 parent 9714a0b commit 653c00b

File tree

3 files changed

+19
-17
lines changed

3 files changed

+19
-17
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,3 +150,6 @@ yarn-error.log
150150

151151
# End of https://www.toptal.com/developers/gitignore/api/vue,vuejs,yarn,node
152152

153+
# lock file
154+
yarn.lock
155+
package-lock.json

src/views/Download.vue

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
<strong>Venom Linux</strong> can be obtained from various sources. Choose
66
the source and variant that suits you.
77
<br />
8-
Users can use the
9-
<code>scratch</code> command to keep their <strong>Venom Linux</strong> up
10-
to date, since <strong>Venom Linux</strong> is a rolling release.<br /><br />
8+
Current version is <strong>2.0</strong> <br /><br />
119
<Fieldset legend="Download">
1210
<Panel header="Venomlinux Server (Location: Germany)">
1311
<DataTable :value="download_server_germany">
@@ -139,41 +137,42 @@ export default {
139137
download_server_germany: [
140138
{
141139
version: "Openbox ISO",
142-
download: "https://dl.venomlinux.org/venomlinux-20210312.iso",
143-
md5: "https://dl.venomlinux.org/venomlinux-20210312.iso.md5"
140+
download: "https://dl.venomlinux.org/venomlinux-2.0.iso",
141+
md5: "https://dl.venomlinux.org/venomlinux-2.0.iso.md5"
144142
},
145143
{
146144
version: "Base rootfs tarball",
147-
download: "https://dl.venomlinux.org/venomlinux-rootfs.tar.xz",
148-
md5: "https://dl.venomlinux.org/venomlinux-rootfs.tar.xz.md5"
145+
download: "https://dl.venomlinux.org/venomlinux-rootfs-2.0.tar.xz",
146+
md5: "https://dl.venomlinux.org/venomlinux-rootfs-2.0.tar.xz.md5"
149147
}
150148
],
151149
download_osdn: [
152150
{
153151
version: "Openbox ISO",
154-
download: "https://osdn.net/dl/venomlinux/venomlinux-20210312.iso",
155-
md5: "https://osdn.net/dl/venomlinux/venomlinux-20210312.iso.md5"
152+
download: "https://osdn.net/dl/venomlinux/venomlinux-2.0.iso",
153+
md5: "https://osdn.net/dl/venomlinux/venomlinux-2.0.iso.md5"
156154
},
157155
{
158156
version: "Base rootfs tarball",
159-
download: "https://osdn.net/dl/venomlinux/venomlinux-rootfs.tar.xz",
160-
md5: "https://osdn.net/dl/venomlinux/venomlinux-rootfs.tar.xz.md5"
157+
download:
158+
"https://osdn.net/dl/venomlinux/venomlinux-rootfs-2.0.tar.xz",
159+
md5: "https://osdn.net/dl/venomlinux/venomlinux-rootfs-2.0.tar.xz.md5"
161160
}
162161
],
163162
download_sourceforge: [
164163
{
165164
version: "Openbox ISO",
166165
download:
167-
"https://sourceforge.net/projects/venomlinux/files/202103/venomlinux-20210312.iso/download",
166+
"https://sourceforge.net/projects/venomlinux/files/2.0/venomlinux-2.0.iso/download",
168167
md5:
169-
"https://sourceforge.net/projects/venomlinux/files/202103/venomlinux-20210312.iso/download"
168+
"https://sourceforge.net/projects/venomlinux/files/2.0/venomlinux-2.0.iso/download"
170169
},
171170
{
172171
version: "Base rootfs tarball",
173172
download:
174-
"https://sourceforge.net/projects/venomlinux/files/202103/venomlinux-rootfs.tar.xz/download",
173+
"https://sourceforge.net/projects/venomlinux/files/2.0/venomlinux-rootfs-2.0.tar.xz/download",
175174
md5:
176-
"https://sourceforge.net/projects/venomlinux/files/202103/venomlinux-rootfs.tar.xz.md5/download"
175+
"https://sourceforge.net/projects/venomlinux/files/2.0/venomlinux-rootfs-2.0.tar.xz.md5/download"
177176
}
178177
]
179178
};

src/views/Packages.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export default {
8484
loadPackages() {
8585
axios
8686
.get(
87-
"https://raw.githubusercontent.com/venomlinux/ports/master/scripts/packages.json"
87+
"https://raw.githubusercontent.com/venomlinux/ports/2.0/scripts/packages.json"
8888
)
8989
.then(
9090
function(response) {
@@ -98,7 +98,7 @@ export default {
9898
},
9999
goToPackage(repo, pack) {
100100
window.open(
101-
"https://github.com/venomlinux/ports/tree/master/" + repo + "/" + pack,
101+
"https://github.com/venomlinux/ports/tree/2.0/" + repo + "/" + pack,
102102
"_blank"
103103
);
104104
},

0 commit comments

Comments
 (0)