File tree Expand file tree Collapse file tree
src/main/java/com/orangomango/logicsim Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- # ![ icon] ( icon.png ) LogicSimulator
1+ # ![ icon] ( icon.png ) LogicSimulator v1.1
22This is a simple circuit simulator made in Java using the JavaFX framework.
33
44# Download
@@ -11,7 +11,7 @@ Try the web-version now at https://orangomango.itch.io/logicsimulator.
1111# Features
1212## Building blocks
1313* Switches (input)
14- * Lights (output)
14+ * Lights/RGB Lights (output)
1515* AND gate
1616* NOT gate
1717* Bus
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ plugins {
55}
66
77group ' com.orangomango'
8- version ' 1.0 '
8+ version ' 1.1 '
99
1010repositories {
1111 mavenCentral()
Original file line number Diff line number Diff line change 4444 * Using AND and NOT gates you can build every other chip.
4545 *
4646 * @author OrangoMango [https://orangomango.github.io]
47- * @version 1.0
47+ * @version 1.1
4848 */
4949public class MainApplication extends Application {
5050 private static int WIDTH = 950 ;
@@ -792,7 +792,7 @@ public void start(Stage stage){
792792 } else {
793793 scene .setCursor (Cursor .DEFAULT );
794794 }
795- stage .setTitle ("LogicSim v1.0 " +(this .currentFile == null ? "" : " - " +this .currentFile .getName ()));
795+ stage .setTitle ("LogicSim v1.1 " +(this .currentFile == null ? "" : " - " +this .currentFile .getName ()));
796796 }));
797797 loop .setCycleCount (Animation .INDEFINITE );
798798 loop .play ();
You can’t perform that action at this time.
0 commit comments