Skip to content

Commit

Permalink
Update JPro to version 2023.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
besidev committed Dec 7, 2023
1 parent e5e5cef commit 27e9129
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
JPRO_PLATFORM_VERSION = 0.2.7-SNAPSHOT

JPRO_VERSION = 2023.3.2-SNAPSHOT
JPRO_VERSION = 2023.3.2
JAVAFX_VERSION = 17.0.9
SIMPLEFX_VERSION = 3.2.27
JMEMORYBUDDY_VERSION = 0.5.1
Expand Down
3 changes: 3 additions & 0 deletions jpro-file/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Once the user confirm their choice, a provided callback handler is invoked for f
3. **Callback Handler**: Once the user selects the file(s), a provided handler function is invoked.

* Usage Example

```java
ExtensionFilter textExtensionFilter = ExtensionFilter.of("Subtitle files", ".txt", ".srt", ".vtt");
ExtensionFilter videoExtensionFilter = ExtensionFilter.of("Video files", ".mp4", ".avi", ".mkv");
Expand All @@ -25,6 +26,7 @@ Once the user confirm their choice, a provided callback handler is invoked for f
fileOpenPicker.setSelectionMode(SelectionMode.MULTIPLE);
fileOpenPicker.setOnFilesSelected(fileSources -> openFiles(fileSources));
```

- `FileSavePicker`: Assists the user in saving files to their file system. We can set supported file types, default
file names and starting directories. A callback handler is invoked to specify the saving tasks upon the successfully
selected file. For the `Web` implementation this picker acts as a file downloader.
Expand Down Expand Up @@ -71,6 +73,7 @@ a specified callback handler is invoked for further processing.
dropPane.pseudoClassStateChanged(FILES_DRAG_OVER_PSEUDO_CLASS, false));
fileDropper.setOnFilesSelected(fileSources -> openFiles(fileSources));
```

### Configuration
- Gradle
```groovy
Expand Down

0 comments on commit 27e9129

Please sign in to comment.