Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up JDK 19
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '19'
java-version: '11'
distribution: 'temurin'
- name: Build with Gradle
uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
Expand Down
4 changes: 2 additions & 2 deletions .idea/misc.xml

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

8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ ext {
junitVersion = '5.9.1'
}

sourceCompatibility = '19'
targetCompatibility = '19'
sourceCompatibility = '11'
targetCompatibility = '11'

tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
Expand All @@ -30,7 +30,7 @@ application {
}

javafx {
version = '19'
version = '11'
modules = ['javafx.controls', 'javafx.fxml']
}

Expand All @@ -55,4 +55,4 @@ jlink {

jlinkZip {
group = 'distribution'
}
}
2 changes: 1 addition & 1 deletion src/main/resources/com/simonorow/zoomscheduler/mainUI.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.text.Font?>

<VBox prefHeight="590.0" prefWidth="907.0" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1">
<VBox prefHeight="590.0" prefWidth="907.0" xmlns="http://javafx.com/javafx/11" xmlns:fx="http://javafx.com/fxml/1">
<children>
<MenuBar prefHeight="20.0" prefWidth="852.0" VBox.vgrow="NEVER">
<menus>
Expand Down