mirror of
https://github.com/pfalstad/circuitjs1.git
synced 2026-03-04 15:44:04 +01:00
62 lines
4.1 KiB
HTML
62 lines
4.1 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;
|
|
Mark McGarry for AVR8js support; Uri Shaked for AVR8js;
|
|
Thomas Reitinger, Krystian Sławiński, Usevalad Khatkevich, Lucio Sciamanna, Mauro Hemerly Gazzani, J. Miguel Silva, Kristian Keilen, Linhart Jiří, Karel Kupa, Franck Viard, David Chen, 肖国栋 (Gordon Shaw), 王逸伦 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>
|
|
<p style="font-size:9px">
|
|
Copyright (c) 1985-1991 The Regents of the University of California.
|
|
All rights reserved.</p>
|
|
<p style="font-size:9px">IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
|
|
DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
|
|
OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
|
|
CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</p>
|
|
<p style="font-size:9px">THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
|
|
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN
|
|
"AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO PROVIDE
|
|
MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
<p>canvas2svg: Copyright (c) 2014 Gliffy Inc.</p>
|
|
|
|
<p style="font-size:9px">
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</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>
|