Skip to content

Commit

Permalink
1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
WhiteMagic2014 committed Nov 13, 2024
1 parent 349fe45 commit 7c06b73
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ public static void main(String[] args) {

## Version

### 1.2.4

- Optimize: The default value for the `overWrite` parameter is now true.

### 1.2.3

- Optimize: A new parameter, overWrite, has been added. When the same file name is provided, if overWrite = true, it
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<url>https://github.com/WhiteMagic2014/tts-edge-java.git</url>
<groupId>io.github.whitemagic2014</groupId>
<artifactId>tts-edge-java</artifactId>
<version>1.2.3</version>
<version>1.2.4</version>


<developers>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/github/whitemagic2014/tts/TTS.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class TTS {
private String storage = "./storage";
private String fileName;
private int connectTimeout = 0;
private Boolean overwrite;
private Boolean overwrite = true;


public TTS voicePitch(String voicePitch) {
Expand Down

0 comments on commit 7c06b73

Please sign in to comment.