Skip to content

Commit

Permalink
Merge pull request #516 from yermak/development
Browse files Browse the repository at this point in the history
Missing Edit Button
  • Loading branch information
yermak authored Nov 18, 2023
2 parents eeeffc0 + 8e15be1 commit cc35f7d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 9 deletions.
18 changes: 9 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
<version>2.15.0</version>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
<version>3.13.0</version>
</dependency>

<dependency>
Expand All @@ -97,13 +97,13 @@
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.9</version>
<version>2.10.1</version>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>31.0.1-jre</version>
<version>32.0.0-jre</version>
</dependency>

<dependency>
Expand All @@ -115,18 +115,18 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.0-alpha1</version>
<version>2.0.9</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>2.0.0-alpha1</version>
<version>2.0.9</version>
</dependency>

<dependency>
<groupId>org.antlr</groupId>
<artifactId>ST4</artifactId>
<version>4.3.1</version>
<version>4.3.4</version>
</dependency>

<!-- https://mvnrepository.com/artifact/com.apple/AppleJavaExtensions -->
Expand All @@ -139,7 +139,7 @@
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.4.0</version>
<version>7.5.1</version>
<scope>test</scope>
</dependency>

Expand All @@ -150,7 +150,7 @@
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.4</version>
<version>0.0.8</version>
<configuration>
<mainClass>AudioBookConverter</mainClass>
<executable>${java.home}\bin\java</executable>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,15 @@
</Button>
<Separator orientation="VERTICAL"/>

<Button text="Edit" minWidth="${screen.visualBounds.width * 0.05}"
onAction="#editChapter"
disable="false">
<tooltip>
<Tooltip text="Edit Chapter"/>
</tooltip>
</Button>
<Separator orientation="VERTICAL"/>

<Button text="Split" minWidth="${screen.visualBounds.width * 0.05}"
onAction="#split"
disable="false">
Expand Down

0 comments on commit cc35f7d

Please sign in to comment.