Skip to content

Commit 7b0ffaa

Browse files
committed
Merge pull request #160 from maxogden/release-table
add NODE_MODULE_VERSION column to the releases table
2 parents 476cb7a + 0e54e73 commit 7b0ffaa

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

layouts/css/page-modules/_download.styl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@ td.download-table-last
7676
> a
7777
padding 0 10px
7878

79+
#modules-description
80+
font-size: small
81+
7982
@media (max-width: 700px)
8083
.download-hero ul
8184
width auto

layouts/download-releases.hbs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
<td>Date</td>
2626
<td>V8</td>
2727
<td>npm</td>
28+
<td>Modules</td>
2829
<td></td>
2930
</tr>
3031
</thead>
@@ -35,6 +36,7 @@
3536
<td data-label="Date"><time>{{date}}</time></td>
3637
<td data-label="V8">{{v8}}</td>
3738
<td data-label="npm">{{npm}}</td>
39+
<td data-label="Modules">{{modules}}</td>
3840
<td class="download-table-last">
3941
<a href="{{url}}">
4042
{{i18n 'releases.downloads'}}
@@ -50,6 +52,7 @@
5052
{{/project.versions}}
5153
</tbody>
5254
</table>
55+
<p id="modules-description">{{{modules}}}</p>
5356
</section>
5457
</article>
5558

locale/en/download/releases.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ layout: download-releases.hbs
33
title: Previous Releases
44
iojs:
55
intro: "Releases 1.x through 3.x were called \"io.js\" as they were part of the io.js fork. As of Node.js 4.0.0 the former release lines of io.js converged with Node.js 0.12.x into unified Node.js releases."
6+
modules: "\"Modules\" refers to the ABI (application binary interface) version number of Node.js, used to determine which versions of Node.js compiled C++ add-on binaries can be loaded in to without needing to be re-compiled. This version number is also referred to as <code>NODE_MODULE_VERSION</code>."
67
---

0 commit comments

Comments
 (0)