Skip to content

Commit f363206

Browse files
committed
small changes
1 parent 28a4d40 commit f363206

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ![icon](icon.png) LogicSimulator
1+
# ![icon](icon.png) LogicSimulator v1.1
22
This 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

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
group 'com.orangomango'
8-
version '1.0'
8+
version '1.1'
99

1010
repositories {
1111
mavenCentral()

src/main/java/com/orangomango/logicsim/MainApplication.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
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
*/
4949
public 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();

0 commit comments

Comments
 (0)