Skip to content

Commit

Permalink
Some modifications
Browse files Browse the repository at this point in the history
  • Loading branch information
HanSolo committed Jun 12, 2020
1 parent 25b786c commit c355b77
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 38 deletions.
39 changes: 5 additions & 34 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,35 +1,6 @@
.gradle
out
Regulators.iml
.idea
*.class
*.jar
hs_err_pid*
/.idea
/.gradle
.DS_Store
/build/classes/main/eu/hansolo/fx/regulators/FeedbackRegulator$1.class
/build/classes/main/eu/hansolo/fx/regulators/Regulator$3.class
/build/classes/main/eu/hansolo/fx/regulators/Regulator$4.class
/build/classes/main/eu/hansolo/fx/regulators/FeedbackRegulator$2.class
/build/classes/main/eu/hansolo/fx/regulators/Regulator.class
/build/classes/main/eu/hansolo/fx/regulators/FeedbackRegulator$3.class
/build/classes/main/eu/hansolo/fx/regulators/Regulator$9.class
/build/classes/main/eu/hansolo/fx/regulators/FeedbackRegulator$4.class
/build/classes/main/eu/hansolo/fx/regulators/FeedbackRegulator$5.class
/build/classes/main/eu/hansolo/fx/regulators/Regulator$5.class
/build/classes/main/eu/hansolo/fx/regulators/Regulator$10.class
/build/classes/main/eu/hansolo/fx/regulators/FeedbackRegulator$6.class
/build/classes/main/eu/hansolo/fx/regulators/Regulator$6.class
/build/classes/main/eu/hansolo/fx/regulators/FeedbackRegulator$7.class
/build/classes/main/eu/hansolo/fx/regulators/FeedbackRegulator.class
/build/classes/main/eu/hansolo/fx/regulators/Regulator$7.class
/build/classes/main/eu/hansolo/fx/regulators/Regulator$8.class
/build/classes/main/eu/hansolo/fx/regulators/FeedbackRegulator$10.class
/build/classes/main/eu/hansolo/fx/regulators/FeedbackRegulator$8.class
/build/classes/main/eu/hansolo/fx/regulators/Regulator$1.class
/build/classes/main/eu/hansolo/fx/regulators/FeedbackRegulator$9.class
/build/classes/main/eu/hansolo/fx/regulators/Regulator$2.class
/build/tmp
/build/publications
/build/docs
/build/classes/main/eu/hansolo/fx/regulators/Main$1.class
ColorRegulatorBuilder.class
/build
/out
/classes
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ wrapper {
gradleVersion = '6.4'
}

description = 'EVT offers custom Java events with priority'
description = 'JavaFX controls to control things'

Date buildTimeAndDate = new Date()
ext {
Expand All @@ -45,7 +45,7 @@ ext {
}

group 'eu.hansolo.fx.regulators'
version '1.0-SNAPSHOT'
version '11.0'

ext.platform = osdetector.os == 'osx' ? 'mac' : osdetector.os == 'windows' ? 'win' : osdetector.os

Expand Down Expand Up @@ -172,7 +172,7 @@ bintray {
name = project.name
desc = description
licenses = ['Apache-2.0']
labels = ['java']
labels = ['java', 'javafx']
websiteUrl = 'https://github.com/HanSolo/regulators/wiki'
issueTrackerUrl = 'https://github.com/HanSolo/regulators/issues'
vcsUrl = '[email protected]:HanSolo/regulators.git'
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
1 change: 1 addition & 0 deletions src/main/java/eu/hansolo/fx/regulators/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ public class Main extends Application {
.icon(FontAwesome.MUSIC)
.iconColor(Color.WHITE)
//.color(Color.PURPLE)
.color(Color.rgb(42, 42, 42))
.onTargetSet(e -> System.out.println("New target set to " + regulator.getTargetValue()))
.build();

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module regulartors {
module eu.hansolo.fx.regulartors {

// Java
requires java.base;
Expand Down

0 comments on commit c355b77

Please sign in to comment.