Files
circuitjs1/war/about.html

39 lines
2.6 KiB
HTML

<meta charset="UTF-8">
<style>
body {
font-family: Arial Unicode MS, Arial, sans-serif;
font-size: small;
}
</style>
<div>
<p>Circuit Simulator version <span class="ver"></span>.</p>
<p>Original by Paul Falstad.<br><a href="http://www.falstad.com/" target="_blank">http://www.falstad.com/</a></p>
<p>JavaScript conversion by Iain Sharp.<br><a href="http://lushprojects.com/" target="_blank">http://lushprojects.com/</a></p>
<p>Thanks to: Edward Calver for 15 new components and other improvements;
Rodrigo Hausen for file import/export and many other UI improvements;
J. Mike Rollins for the Zener diode code;
Julius Schmidt for the spark gap code and some examples;
Dustin Soodak for help with the user interface improvements;
Jacob Calvert for the T Flip Flop; Ben Hayden for scope spectrum;
Francisco Campos for the DC Motor;
Bill Collis for the thermistor and LDR;
Thomas Reitinger, Krystian Sławiński, Usevalad Khatkevich, Lucio Sciamanna, Mauro Hemerly Gazzani, J. Miguel Silva, Kristian Keilen, and Franck Viard for translations;
Andre Adrian for improved emitter coupled oscillator; Felthry for many examples; Colin Howell for code improvements. LZString (c) 2013 pieroxy.</p>
<p style="font-size:9px">This program uses free icons. For more information, please read the <a href="font/webfontlicense.html" target="_self">list of authors and licenses of these icons and webfonts</a>.</p>
<p style="font-size:9px">This program 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 2 of the License, or (at your option) any later version.</p>
<p style="font-size:9px">This program 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.</p>
<p style="font-size:9px">For details of licensing see <a href="http://www.gnu.org/licenses/" target="_blank">http://www.gnu.org/licenses/</a>.</p>
<p style="font-size:9px">Source code (Paul):<a href="https://github.com/pfalstad/circuitjs1" target="_blank">https://github.com/pfalstad/circuitjs1</a></p>
<p style="font-size:9px">Source code (Iain):<a href="https://github.com/sharpie7/circuitjs1" target="_blank">https://github.com/sharpie7/circuitjs1</a></p>
</div>
<script>
// Add version from versionString variable
let versionString = document.querySelector('.ver');
let verStr = sessionStorage.getItem('versionString');
if (verStr == null) {
versionString.textContent = "... ";
} else {
versionString.textContent = verStr;
}
</script>