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 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | <!DOCTYPE html> <html> <head> <meta charset='UTF-8'> <title>Kerbal Engineer Redux - ReadMe</title> <link href='http://fonts.googleapis.com/css?family=PT+Sans:400,700' rel='stylesheet' type='text/css'> <style> * { margin: 0; padding: 0; box-sizing: border-box; moz-box-sizing: border-box; webkit-box-sizing: border-box; } html, body { height: 100%; font-family: 'PT Sans', Verdana, Geneva, sans-serif; } a { text-decoration: none; font-weight: 700; color: inherit; } a:hover { text-decoration: underline; } h3 { display: block; line-height: 1.5em; font-size: 1.1em; font-weight: 700; } p { display: block; margin: 0 0.5em; text-align: justify; } ul { display: block; margin-left: 1.5em; list-style-type: square; } li { margin-top: 0.5em; text-align: justify; } header { display: block; padding: 25px; text-align: center; font-size: 3rem; font-weight: 700; letter-spacing: 0.2em; color: white; background-color: black; } section { display: block; margin: 10px; padding: 0.5em 1em; line-height: 1.5em; background-color: #DDD; } footer { display: block; text-align: center; line-height: 50px; font-size: 0.8rem; letter-spacing: 0.2em; color: white; background-color: black; } #changelog > li { margin-top: 1em; } #changelog > li:first-child { margin-top: 0.5em; } #root { clear: both; min-height: 100%; height: auto !important; height: 100%; margin-bottom: -50px; } #root > #root_footer { height: 50px; } #footer { clear: both; position: relative; height: 50px; } </style> </head> <body> <div id='root'> <header>Kerbal Engineer Redux v1.0</header> <section> <h3>Current Version</h3> <p>1.0.1.0</p> </section> <section> <h3>Developers</h3> <p> CYBUTEK: Developer<br> Padishar: Simulation Logic<br> Mic_e: Impact Readouts </p> </section> <section> <h3>KSP-AVC Ready</h3> <p> KSP Add-on Version Checker is a standardised system for versioning mods. You can get more information on the <a href='http://forum.kerbalspaceprogram.com/threads/79745' target='_blank'>forum thread</a>. </p> </section> <section> <h3>Description</h3> <p> This plugin will allow you to view important statistics about your ship on the fly, whilst building it and in flight. </p> </section> <section> <h3>Installation</h3> <ul> <li>Copy the 'KerbalEngineer' folder into the 'GameData' folder located within your Kerbal Space Program installation directory.</li> <li> Attach an Engineer part from the science tab to your ship. <ul> <li>ER7500 includes flight engineer.</li> </ul> </li> </ul> </section> <section> <h3>Change Log</h3> <ul id='changelog'> <li> 1.0.1.0 <ul> <li>Added: Part-less Flight Engineer.</li> <li>Added: Ability to collapse the Build Engineer into compact mode from left or right.</li> <li>Added: Settings in Build Engineer for compact collapse mode and partless/module Flight Engineer.</li> <li>Added: Biome, Impact Biome and Slope readouts.</li> <li>Added: Extra logging and exception handling.</li> <li>Added: The original Engineer Chip part.</li> <li>Added: "Show Engineer" toggle on the Flight Engineer toolbar.</li> <li>Changed: Extended logging system now also writes to the standard KSP logs.</li> <li>Changed: Extended logging saves next to the .dll file.</li> <li>Changed: ER7500 part has no physical significance.</li> <li>Fixed: ActionMenu and DisplayStack destruction bug.</li> </ul> </li> <li> 1.0.0.1 <ul> <li>Added: Stock toolbar support in the Flight Engineer.</li> <li>Changed: Orbital Period has higher precision.</li> <li>Fixed: Various NullRefs in editor window and overlay.</li> </ul> </li> <li> 1.0.0.0 <ul> <li>Initial release for public testing.</li> </ul> </li> </ul> </section> <section> <h3>Software License</h3> <p> Copyright © 2014 CYBUTEK <br><br> This program is free software: you can redistribute it and/or modify<br> it under the terms of the GNU General Public License as published by<br> the Free Software Foundation, either version 3 of the License, or<br> (at your option) any later version. <br><br> This program is distributed in the hope that it will be useful,<br> but WITHOUT ANY WARRANTY; without even the implied warranty of<br> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the<br> GNU General Public License for more details. <br><br> Licensed under <a href='http://www.gnu.org/licenses/gpl-3.0.html' target='_blank'>GNU General Public License v3</a> </p> </section> <div id='root_footer'></div> </div> <footer id='footer'> ReadMe Design by <a href='http://ksp.cybutek.net' target='_blank'><strong>CYBUTEK</strong></a> (GPLv3) </footer> </body> </html> |