Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions layouts/css/page-modules/_download.styl
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ td.download-table-last
> a
padding 0 10px

#modules-description
font-size: small

@media (max-width: 700px)
.download-hero ul
width auto
Expand Down
3 changes: 3 additions & 0 deletions layouts/download-releases.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<td>Date</td>
<td>V8</td>
<td>npm</td>
<td>Modules</td>
<td></td>
</tr>
</thead>
Expand All @@ -35,6 +36,7 @@
<td data-label="Date"><time>{{date}}</time></td>
<td data-label="V8">{{v8}}</td>
<td data-label="npm">{{npm}}</td>
<td data-label="Modules">{{modules}}</td>
<td class="download-table-last">
<a href="{{url}}">
{{i18n 'releases.downloads'}}
Expand All @@ -47,6 +49,7 @@
{{/project.versions}}
</tbody>
</table>
<p id="modules-description">{{{modules}}}</p>
</section>
</article>

Expand Down
1 change: 1 addition & 0 deletions locale/en/download/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ layout: download-releases.hbs
title: Previous Releases
iojs:
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."
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>."
---