Compare commits

..

No commits in common. "49fe0f65bda8cc7d16ecd64b0eb59621fee7cdce" and "cdcfd92f606b577ec51decdc772a1d23c92d9721" have entirely different histories.

6 changed files with 6 additions and 9 deletions

View File

@ -2,7 +2,7 @@
kotlin = "2.0.20"
detekt = "1.23.7"
jfx-plugin = "0.1.0"
javafx = "23"
javafx = "22.0.1"
kotest = "5.9.1"

View File

@ -1,3 +0,0 @@
package com.marvinelsen.willow.tatoeba
data class TatoebaSentence(val traditional: String)

View File

@ -5,7 +5,7 @@
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.web.WebView?>
<?import javafx.geometry.Insets?>
<VBox xmlns="http://javafx.com/javafx/23" xmlns:fx="http://javafx.com/fxml/1"
<VBox xmlns="http://javafx.com/javafx/22" xmlns:fx="http://javafx.com/fxml/1"
fx:controller="com.marvinelsen.willow.ui.controllers.DetailsController"
stylesheets="/css/details.css">
<Label fx:id="labelHeadword" styleClass="headword" text="Label">

View File

@ -7,7 +7,7 @@
<?import javafx.scene.control.ProgressIndicator?>
<?import javafx.scene.control.SplitPane?>
<?import javafx.scene.layout.*?>
<BorderPane xmlns="http://javafx.com/javafx/23" xmlns:fx="http://javafx.com/fxml/1"
<BorderPane xmlns="http://javafx.com/javafx/22" xmlns:fx="http://javafx.com/fxml/1"
fx:controller="com.marvinelsen.willow.ui.controllers.MainController"
stylesheets="/css/main.css">
<top>

View File

@ -3,7 +3,7 @@
<?import javafx.scene.control.*?>
<?import javafx.scene.input.KeyCodeCombination?>
<?import javafx.scene.layout.BorderPane?>
<MenuBar xmlns="http://javafx.com/javafx/23" xmlns:fx="http://javafx.com/fxml/1"
<MenuBar xmlns="http://javafx.com/javafx/22" xmlns:fx="http://javafx.com/fxml/1"
fx:controller="com.marvinelsen.willow.ui.controllers.MenuController" BorderPane.alignment="CENTER"
useSystemMenuBar="true">
<Menu text="%menubar.file">
@ -23,7 +23,7 @@
<Menu text="%menubar.edit">
<MenuItem fx:id="menuItemCopyHeadword" text="%menubar.edit.copy.headword" onAction="#onMenuItemCopyHeadwordAction">
<accelerator>
<KeyCodeCombination alt="UP" code="H" control="UP" meta="UP" shift="UP"
<KeyCodeCombination alt="UP" code="C" control="UP" meta="UP" shift="UP"
shortcut="DOWN"/>
</accelerator>
</MenuItem>

View File

@ -5,7 +5,7 @@
<?import javafx.scene.layout.FlowPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.VBox?>
<VBox xmlns="http://javafx.com/javafx/23" xmlns:fx="http://javafx.com/fxml/1"
<VBox xmlns="http://javafx.com/javafx/22" xmlns:fx="http://javafx.com/fxml/1"
fx:controller="com.marvinelsen.willow.ui.controllers.SearchController" spacing="8">
<TextField fx:id="textFieldSearch" promptText="%search.prompt" HBox.hgrow="ALWAYS"/>
<FlowPane hgap="8.0" vgap="8.0">