commit 9271217f7d1faefcb4e0791aa8970fb641199fc4
Author: Damian Johnson <[email protected]>
Date: Thu Aug 3 19:05:26 2017 -0700
Move changelog to its own page
We frequently update the changelog. Making this its own file will make that
a
tad easier, in addion to making it work without JS.
---
.../legacy.html} | 10 +--
web/index.html | 80 +---------------------
2 files changed, 6 insertions(+), 84 deletions(-)
diff --git a/web/legacy_changelog.html b/web/changelog/legacy.html
similarity index 99%
rename from web/legacy_changelog.html
rename to web/changelog/legacy.html
index 84d0197..0f9428f 100644
--- a/web/legacy_changelog.html
+++ b/web/changelog/legacy.html
@@ -4,8 +4,8 @@
<html>
<head>
<title>Nyx</title>
- <link rel="shortcut icon" href="images/favicon.png"/>
- <link rel="stylesheet" type="text/css" href="styles.css" />
+ <link rel="shortcut icon" href="../images/favicon.png"/>
+ <link rel="stylesheet" type="text/css" href="../styles.css" />
</head>
<body>
@@ -14,9 +14,9 @@
<span id="logo"></span>
<div class="nav">
<ul class="tabs nav" id="js_nav">
- <li><a href="index.html#home">What Is It?</a></li>
- <li><a href="index.html#faq">FAQ</a></li>
- <li><a href="index.html#download">Download</a></li>
+ <li><a href="../index.html#home">What Is It?</a></li>
+ <li><a href="../index.html#faq">FAQ</a></li>
+ <li><a href="../index.html#download">Download</a></li>
</ul>
</div>
</div>
diff --git a/web/index.html b/web/index.html
index de76d91..0bf9d27 100644
--- a/web/index.html
+++ b/web/index.html
@@ -19,10 +19,6 @@
#faq_section {
display: none;
}
-
-#changelog_section {
- display: none;
-}
</style>
</noscript>
</head>
@@ -36,7 +32,6 @@
<li><a id="t1" href="#home">What Is It?</a></li>
<li><a id="t2" href="#faq">FAQ</a></li>
<li><a id="t3" href="#download">Download</a></li>
- <li style="display: none"><a id="t4"
href="#changelog">Changelog</a></li>
</ul>
<noscript>
@@ -327,7 +322,7 @@ sudo python setup.py install</pre><br /></li>
<div class="section"></div>
<a href="#download" class="section-title">Download</a>
- <p>Nyx is available Mac OSX, Linux, and BSD but <a href="#windows">not
Windows</a>. Find your platform below to get started. For what's changed see
our <a href="#changelog">change log</a>.</p>
+ <p>Nyx is available Mac OSX, Linux, and BSD but <a href="#windows">not
Windows</a>. Find your platform below to get started. For what's changed see
our <a href="changelog/index.html">change log</a>.</p>
<br />
@@ -400,79 +395,6 @@ sudo python setup.py install</pre><br /></li>
</div>
</div>
- <div id="changelog_section" class="page">
- <div class="section"></div>
- <a href="#changelog" class="section-title">Change Log</a>
-
- <p>The following is a log of all user-facing changes to Nyx, both
released and unreleased. For a monthly report on work being done see my <a
href="http://blog.atagar.com/">development log</a>.</p>
-
- <ul>
- <li><b><a href="#versioning">Versioning</a></b></li>
- <li><b><a href="#unreleased">Unreleased</a></b></li>
- <li><b><a href="#version_1.x">Version 1.x</a></b></li>
- </ul>
-
- <div id="versioning" class="section" style="padding-top: 15px"></div>
- <a href="#versioning" class="section-title">Versioning</a>
-
- <p>As of the 2.x release Nyx uses <a href="http://semver.org/">semantic
versioning</a>, which means that <b>versions consist of three numbers</b> (such
as '<b>1.2.4</b>'). These are used to convey the kind of backward compatibility
a release has...</p>
-
- <ul>
- <li><p>The first value is the <b>major version</b>. This changes
infrequently, and indicates that backward incompatible changes have been made
(such as the removal of deprecated functions).</p></li>
- <li><p>The second value is the <b>minor version</b>. This is the most
common kind of release, and denotes that the improvements are backward
compatible.</p></li>
- <li><p>The third value is the <b>patch version</b>. When a Nyx release
has a major issue another release is made which fixes just that problem. These
do not contain substantial improvements or new features. This value is
sometimes left off to indicate all releases with a given major/minor
version.</p></li>
- </ul>
-
- <p>Prior to version 2.x nyx did not follow any particular versioning
scheme.</p>
-
- <div id="unreleased" class="section" style="padding-top: 45px"></div>
- <a href="#unreleased" class="section-title">Unreleased</a>
-
- <p>The following are only available within Nyx's <a href="#git">git
repository</a>.</p>
- <p>From a user perspective little has changed, but this release is
nothing less than a complete rewrite of our codebase. This adds long overdue
<b>support for python 3.x</b>, test coverage, and migrate from TorCtl to <a
href="https://stem.torproject.org/">Stem</a>.</p>
- <p>Python 2.5 is no longer supported. Hopefully by now nobody will miss
it. :P</p>
-
- <br />
-
- <ul>
- <li><span class="component">Startup</span>
- <ul>
- <li>Startup is several seconds faster when ran for the first
time</li>
- </ul>
- </li>
-
- <li><span class="component">Graph</span>
- <ul>
- <li>Graph prepopulation no longer requires shifting to 15 minute
intervals</li>
- </ul>
- </li>
-
- <li><span class="component">Connections</span>
- <ul>
- <li>Connections are now shown despite
DisableDebuggerAttachment</li>
- <li>Support for showing IPv6 connections</li>
- </ul>
- </li>
-
- <li><span class="component">Logging</span>
- <ul>
- <li>Order of magnitude faster log deduplication</li>
- </ul>
- </li>
-
- <li><span class="component">Curses</span>
- <ul>
- <li>Interface continues to update while awaiting user input</li>
- </ul>
- </li>
- </ul>
-
- <div id="version_1.x" class="section" style="padding-top: 25px"></div>
- <a href="#version_1.x" class="section-title">Version 1.x</a>
-
- <p>Prior to its 2.x release Nyx went under the name of <b>arm</b>. This
series was under active development 2009 to 2012. Changelog for the series is
available <a href="legacy_changelog.html">here</a>.</p>
- </div>
-
<script>
$(function() {
$(".tabs").tabs(".page", { history: true });
_______________________________________________
tor-commits mailing list
[email protected]
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits