-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreleases.html
295 lines (259 loc) · 6.35 KB
/
releases.html
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Oils Releases</title>
<style>
/* base.css: Style common to all pages on oilshell.org.
*/
@media screen and (max-width: 800px) {
/* mobile: distance from left/right edge */
body {
padding: 0 1em;
}
/* mobile: horizontal scrollbar for code, so the long lines don't make the page small */
pre {
overflow: auto;
}
}
/* wide screens: Center and limit width for readability */
@media screen and (min-width: 801px) {
body {
margin: 0 auto;
line-height: 1.4; /* http://bettermotherfuckingwebsite.com/ */
font-size: large; /* 2024-01 - all pages deserve this */
}
.skinny { width: 30em; } /* Most blog posts */
.wider { width: 45em; } /* A few posts with tables */
/* We don't want too many distinct widths, so pre-declare them here. */
.width40 { width: 40em; } /* the default for doc/*.md */
.width50 { width: 50em; } /* releases.html uses this */
.width60 { width: 60em; } /* test/wild, benchmarks */
.width35 { width: 35em; } /* May 2022 update. Make more room for code. */
}
body {
color: #444;
}
pre {
background-color: #EEE;
padding: 1em;
}
/* Remove left indent of bullet. 0em puts the bullet to the LEFT of
* surrounding text. */
ul { padding-left: 1.2em; }
ol { padding-left: 1.2em; }
#home-link {
text-align: right;
}
#version-in-header {
color: darkgreen;
font-weight: bold;
}
#why-sponsor a:link { text-decoration: none }
#why-sponsor a:hover { text-decoration: underline }
#why-sponsor a { color: darkgreen; }
#build-timestamp {
margin-top: 2em;
padding-top: 0.5em;
padding-bottom: 2em;
border-top: solid 1px #BBB;
}
.in-progress {
color: darkred;
}
/*
* Usage: <table class="col3-right col5-right">
*
* colgroup/col doesn't work for right-justifying columns
*/
.col1-right td:nth-child(1),
.col2-right td:nth-child(2),
.col3-right td:nth-child(3),
.col4-right td:nth-child(4),
.col5-right td:nth-child(5),
.col6-right td:nth-child(6),
.col6-right td:nth-child(7),
.col6-right td:nth-child(8) {
text-align: right
}
/* Style for checksum, file size, etc.
* Included dynamically from release/$VERSION/index.html, and statically
* built into /releases.html.
*/
h1 {
font-size: 1.5em; /* reduce to what browsers apparently use for h2 */
}
h2 {
font-size: 1.2em; /* reduce to what browsers apparently use for h3 */
padding-top: 1em; /* separate sections */
}
h3 {
font-size: 1.0em;
margin-left: 1em;
color: darkgreen; /* different than blog */
}
pre {
color: green;
margin-left: 4em;
}
code {
color: green;
}
/* END COMMON */
/* Download links are in both releases.html and /release/$VERSION/index.html */
.release-table {
padding: 1em;
}
.file-table {
padding: 1em;
background-color: oldlace;
}
.file-table table {
width: 100%
}
.file-table-heading {
color: darkgreen;
}
.filename {
font-size: large;
font-family: monospace;
}
.size {
text-align: right;
}
.checksum {
font-family: monospace;
font-size: small;
color: #444;
}
/* for releases.html */
.version-number {
font-size: large;
font-weight: bold;
}
.date {
font-size: medium;
color: #555;
padding-left: 1em;
padding-right: 1em;
}
h1 {
text-align: center;
}
</style>
</head>
<body class="width50">
<p id="home-link">
<a href="/">oils.pub</a>
</p>
<h1>Oils Releases</h1>
<table class="release-table">
<tr>
<td>
<span class="date">2025-01-06</span>
</td>
<td>
<a name="0.26.0"></a>
<span class="version-number">0.26.0</span>
</td>
<td>
<p> <a href="release/0.26.0/announcement.html">Announcement</a>
| <a href="release/0.26.0/">Docs and Details</a>
</p>
</td>
</tr>
<tr class="file-table-heading">
<td></td>
<td>File / SHA256 checksum</td>
<td class="size">Size</td>
<td></td>
</tr>
<tr>
<td></td>
<td class="filename"><a href="/download/oils-for-unix-0.26.0.tar.gz">oils-for-unix-0.26.0.tar.gz</a></td>
<td class="size">821,833</td>
</tr>
<tr>
<td></td>
<td colspan=2 class="checksum">2b5b295a577a2763814203b4a34880ca03067a29eeb80af4857b6092314d6eed</td>
</tr>
<tr>
<td></td>
<td class="filename"><a href="/download/oil-0.26.0.tar.gz">oil-0.26.0.tar.gz</a></td>
<td class="size">2,321,495</td>
</tr>
<tr>
<td></td>
<td colspan=2 class="checksum">2d5ca8f22b6abce9a7d519d227d74283aa1265453d89f6cfe59086ac1cb949f2</td>
</tr>
<tr>
<td></td>
<td class="filename"><a href="/download/oil-0.26.0.tar.xz">oil-0.26.0.tar.xz</a></td>
<td class="size">1,630,836</td>
</tr>
<tr>
<td></td>
<td colspan=2 class="checksum">6bf492e683c045a615df11f99b3dda7515bf56c1c46d2daeba610c7451cf22dc</td>
</tr>
<tr>
<td colspan="3">
<div style="padding: 1em;" >
</div>
</td>
</tr>
<tr>
<td>
<span class="date">2024-12-27</span>
</td>
<td>
<a name="0.25.0"></a>
<span class="version-number">0.25.0</span>
</td>
<td>
<p> <a href="release/0.25.0/announcement.html">Announcement</a>
| <a href="release/0.25.0/">Docs and Details</a>
</p>
</td>
</tr>
<tr class="file-table-heading">
<td></td>
<td>File / SHA256 checksum</td>
<td class="size">Size</td>
<td></td>
</tr>
<tr>
<td></td>
<td class="filename"><a href="/download/oils-for-unix-0.25.0.tar.gz">oils-for-unix-0.25.0.tar.gz</a></td>
<td class="size">818,854</td>
</tr>
<tr>
<td></td>
<td colspan=2 class="checksum">b7ecb6923e2e2fc301087fee6f1370e6607e0ff5214c41efaabf56459d40fdaa</td>
</tr>
<tr>
<td></td>
<td class="filename"><a href="/download/oil-0.25.0.tar.gz">oil-0.25.0.tar.gz</a></td>
<td class="size">2,319,278</td>
</tr>
<tr>
<td></td>
<td colspan=2 class="checksum">0773334ad14dca266b5c8efe1dc2c2a416b8a45ef49a360dfdeb3fa37672b6f7</td>
</tr>
<tr>
<td></td>
<td class="filename"><a href="/download/oil-0.25.0.tar.xz">oil-0.25.0.tar.xz</a></td>
<td class="size">1,629,352</td>
</tr>
<tr>
<td></td>
<td colspan=2 class="checksum">2a18608e74fd2fc089bb6dbec6a0c8ac5d21e089c36e58966cf2fe1a932e86a5</td>
</tr>
<tr>
<td colspan="3">
<div style="padding: 1em;" >
</div>
</td>
</tr>
</table>
</body>
</html>