forked from vasl-developers/vasl-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathother.htm
80 lines (74 loc) · 3.17 KB
/
other.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon">
<link rel="icon" href="./favicon.ico" type="image/x-icon"><title>VASL - Other Boards & CG Maps</title>
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link href="./css/vasl_styles.css" rel="stylesheet">
<link href="./css/board_styles.css" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-7W4JY7C21F"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-7W4JY7C21F');
</script>
</head>
<body>
<div id="navbar"></div>
<div class="container-fluid">
<div class="row">
<div class="col-md-2 sidebar"></div>
<div class="main-content col-md-10">
<div class="userHeader">
<h1 class="pull-right">Other Boards & CG Maps</h1>
</div>
<div class="panel panel-default">
<div class="panel-body">
<h4><b>Status Update: December, 2023</b></h4>
<p>Since VASL has automated the board update process, there is no longer a need for players themselves to download boards, even new boards as they are issued. You will always have access to the latest version of any VASL-ized board, just select it from the board picker in VASL!</p>
<br>
<p>Due to the success of the automated board update process, <i>this webpage is no longer being updated and will be removed entirely in early 2024</i>. </p>
<br>
<p>It was intended to leave this page as an archive of VASL boards. However, continued requests for changes to the page make that unfeasible.</p>
</div>
</div>
</div>
</div>
</div>
<footer></footer>
<script src="./js/jquery.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#navbar").load("./include/navbar.htm", function() {
$("ul.navbar-nav li.download").addClass("active");
});
$("div.sidebar").load("./include/sidebar.htm", function() {
$("a.other").addClass("active");
});
$("footer").load("./include/copyright.htm");
// var url = 'https://raw.githubusercontent.com/vasl-developers/vasl/develop/boards/v5boardVersions.xml';
// $.ajax({
// type: "GET",
// url: url,
// dataType: "xml",
// success: function (xml) {
// $(xml).find('otherBoards').find('boarddata').each(function(){
// var name = $(this).attr("name");
// if(name === 'B&I' || name === 'B&I') name = 'BI';
// if(name.indexOf('&') >= 0) return;
// var version = $(this).attr("version");
// $("sub.version."+name).text(" v"+version);
// });
// }
// });
});
</script>
</body>
</html>