-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
113 lines (108 loc) · 2.62 KB
/
index.html
File metadata and controls
113 lines (108 loc) · 2.62 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<title>MacroQuest LuaRocks Repository</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
background-color: #f5f5f5;
font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
font-size: 16px;
line-height: 1.6;
margin: 0;
padding: 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
background: white;
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
h1 {
color: #333;
border-bottom: 2px solid #4a90d9;
padding-bottom: 10px;
}
h2 {
color: #555;
margin-top: 30px;
}
a {
color: #4a90d9;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.version-list {
list-style: none;
padding: 0;
}
.version-list li {
padding: 12px 15px;
margin: 8px 0;
background: #f8f9fa;
border-left: 4px solid #4a90d9;
border-radius: 0 4px 4px 0;
}
.version-list li:hover {
background: #e9ecef;
}
.version-list a {
font-weight: 500;
font-size: 18px;
}
.legacy {
border-left-color: #6c757d;
}
.legacy a {
color: #6c757d;
}
.info {
background: #e7f3ff;
border: 1px solid #b8daff;
padding: 15px;
border-radius: 4px;
margin: 20px 0;
}
.info code {
background: #d1e7fd;
padding: 2px 6px;
border-radius: 3px;
}
footer {
margin-top: 30px;
padding-top: 20px;
border-top: 1px solid #ddd;
color: #666;
font-size: 14px;
}
</style>
</head>
<body>
<div class="container">
<h1>MacroQuest LuaRocks Repository</h1>
<p>Pre-built Lua modules for use with <a href="https://www.luarocks.org">LuaRocks</a> and <a href="https://docs.macroquest.org">MacroQuest</a>.</p>
<div class="info">
This repository should not be used directly. Use PackageMan for installing packages:<br>
<a href="https://docs.macroquest.org/lua/luarocks-modules/">https://docs.macroquest.org/lua/luarocks-modules/</a>
</div>
<h2>Available Versions</h2>
<ul class="version-list">
<!-- VERSION_LIST_START -->
<li><a href="2.1.1774638290/index.html">2.1.1774638290</a></li>
<li><a href="2.1.1697887905/index.html">2.1.1697887905</a></li>
<li><a href="2.1.0-beta3/index.html">2.1.0-beta3</a></li>
<li><a href="2.0.5/index.html">2.0.5</a></li>
<!-- VERSION_LIST_END -->
<li class="legacy"><a href="index-older.html">Legacy (root)</a> - Original repository, kept for backwards compatibility</li>
</ul>
<footer>
<p>This page is automatically updated when new versions are added.</p>
</footer>
</div>
</body>
</html>