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
|
<html>
<!--
* Jalview - A Sequence Alignment Editor and Viewer (2.11.4.1)
* Copyright (C) 2024 The Jalview Authors
*
* This file is part of Jalview.
*
* Jalview is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version.
*
* Jalview is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Jalview. If not, see <http://www.gnu.org/licenses/>.
* The Jalview Authors are detailed in the 'AUTHORS' file.
-->
<head>
<title>Release History</title>
<style>
table, th, td {
border: solid #cccccc 1px;
border-collapse: collapse;
}
ul {
padding: 2;
margin-left: 18;
list-style-type: disc;
}
ul ul {
list-style-type: circle;
}
ul ul ul {
list-style-type: square;
}
li::marker {
color: #0084A8;
}
li {
padding-bottom: 5;
}
th {
font-size: 100%;
text-style: none;
font-weight: bold;
padding: 5;
}
.release {
text-align: center;
}
.new_features,
.issues_resolved {
text-align: left;
}
td {
vertical-align: top;
padding: 2;
}
td.release {
width: 8%;
font-weight: bold;
text-style: italic;
text-overflow: ellipsis;
white-space: nowrap;
padding-top: 15;
}
td.new_features,
td.issues_resolved {
width: 46%;
text-align: left;
}
</style>
</head>
<body>
<p>
<strong>Release History</strong>
</p>
<table border="1">
<tr>
<th class="release" width="8%" align="center" valign="top" nowrap><a id="Jalview.2.11.4.1">Release</th>
<th class="new_features" width="46%" align="left" valign="top">New Features</th>
<th class="issues_resolved" width="46%" align="left" valign="top">Issues Resolved</th>
</tr>
<tr>
__VERSION_LOOP_START__
<td class="release" align="center" valign="top" nowrap>
<strong>__VERSION_LINK__</strong>
<br />
<em>__DISPLAY_DATE__</em>
</td>
<td class="new_features" align="left" valign="top">
__NEW_FEATURES__
</td>
<td class="issues_resolved" align="left" valign="top">
__ISSUES_RESOLVED__
</td>
</tr>
__VERSION_LOOP_END__
</table>
<p> </p>
</body>
</html>
|