Skip to content

Commit

Permalink
Merge pull request #6 from opetany93/master
Browse files Browse the repository at this point in the history
Few improvements.
  • Loading branch information
tainfante authored Dec 7, 2017
2 parents b684e5a + 20bba34 commit 4ad298b
Show file tree
Hide file tree
Showing 32 changed files with 642 additions and 487 deletions.
49 changes: 44 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,49 @@
# Compiled class file
*.class
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

# Output files
# User-specific stuff:
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/dictionaries

# Sensitive or high-churn files:
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.xml
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml

# Gradle:
.idea/**/gradle.xml
.idea/**/libraries

# CMake
cmake-build-debug/

# Mongo Explorer plugin:
.idea/**/mongoSettings.xml

## File-based project format:
*.iws

## Plugin-specific files:

# IntelliJ
out/

\.idea/misc\.xml
# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

\.idea/workspace\.xml
# Cursive Clojure plugin
.idea/replstate.xml

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties
3 changes: 3 additions & 0 deletions .idea/dictionaries/opetany.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion RealTimeSerialPlotter.iml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="jssc-2.8.0" level="project" />
<orderEntry type="library" name="jSerialComm-1.3.11" level="project" />
</component>
</module>
Binary file added Resources/jSerialComm-1.3.11.jar
Binary file not shown.
Binary file removed Resources/jssc-2.8.0.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
24 changes: 0 additions & 24 deletions out/production/RealTimeSerialPlotter/mainwindow/channel.fxml

This file was deleted.

54 changes: 0 additions & 54 deletions out/production/RealTimeSerialPlotter/mainwindow/chart.fxml

This file was deleted.

19 changes: 0 additions & 19 deletions out/production/RealTimeSerialPlotter/mainwindow/comPortLayout.fxml

This file was deleted.

44 changes: 0 additions & 44 deletions out/production/RealTimeSerialPlotter/mainwindow/export.fxml

This file was deleted.

14 changes: 0 additions & 14 deletions out/production/RealTimeSerialPlotter/mainwindow/log.fxml

This file was deleted.

This file was deleted.

Binary file not shown.
2 changes: 1 addition & 1 deletion src/application/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class Main extends Application {
public void start(Stage primaryStage) throws Exception{
Parent root = FXMLLoader.load(getClass().getResource("/mainwindow/mainWindowLayout.fxml"));
primaryStage.setTitle("Real Time Serial Plotter");
primaryStage.setScene(new Scene(root, 600, 400));
primaryStage.setScene(new Scene(root, 640, 480));
primaryStage.setMinHeight(450.0);
primaryStage.setMinWidth(620.0);

Expand Down
Loading

0 comments on commit 4ad298b

Please sign in to comment.