Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add NODE_MODULE_VERSION column to the releases table #160

Merged
merged 3 commits into from
Sep 19, 2015
Merged
Show file tree
Hide file tree
Changes from 2 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 NODE_MODULE_VERSION."
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

NODE_MODULE_VERSION.

Might render better. (Also: period.) :)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Fishrock123 the period is in the diff, not in the screenshot sorry. Heres what it looks like wrapped with a <code>:

screen shot 2015-09-19 at 10 09 59 am

And without (the current version in the branch now):

screen shot 2015-09-19 at 10 10 29 am

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks better with <code> IMHO. Let's get this merged. ;)

---