Skip to content

Commit

Permalink
Add CHANGELOG.md for versions after migration from jpro-utils to …
Browse files Browse the repository at this point in the history
…`jpro-platform`
  • Loading branch information
besidev committed Dec 5, 2023
1 parent 9940429 commit 649063a
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
### 0.2.7 (TBD)

#### Improvements
* Updated JPro to version `2023.3.1`.
* Updated **SimpleFX** to version `3.2.27`.
* Improve documentation for the `jpro-media` module.

#### Features
* Add `jpro-file` module to `JPro Platform`. For more information, navigate to the
[jpro-file](https://github.com/JPro-one/JPro-Platform/tree/main/jpro-file#readme) module.
* Add `jpro-webartc` module to `JPro Platform`. Provides an API to use WebRTC in JPro running application.
* Add `jpro-youtube` module to `JPro Platform`. Makes easy to embed a YouTube video by simply using `YoutubeNode`.
* Add `ensemble` module to publish platform examples.
* Added Domain Filters to the `jpro-routing-core` module. This is a simple example on how to use it:

```java
public class DomainExample extends RouteApp {
@Override
public Route createRoute() {
return Route.empty()
.domain("127.0.0.1", request -> FXFuture.unit(new Redirect("http://localhost:" +
request.port() + request.path() + toQueryString(request.queryParameters()))));
}
}
```

### 0.2.6 (September 28, 2023)

#### Improvements
* Updated JPro to version `2023.3.0`.
* Update **SimpleFX** to version `3.2.25`.

#### Features
* Add `deleteCache` script for Windows platform. This script is used to delete the jars related to JPro Platform
modules from Gradle and Maven locally on Windows.

#### Bugfixes
* Provide a more compatible solution to open URls on Windows platform via the OpenLink internal module.

### 0.2.5 (September 28, 2023)

#### Improvements
* Improved **Null** checks for URLs and logging in the OpenLink internal module.

#### Bugfixes
* ScrollPane hotfix applied in the `jpro-scrollpane` module.

### 0.2.4 (September 27, 2023)

* Migrating everything from `JPro Utils` to `JPro Platform`. Change module prefixes to `one.jpro.platform`
in the process.
* Importing `jpro-routing` projects under `JPro Platform`.
* Add `jpro-image-manager` module to `JPro Platform`.
* Add `jpro-mdfx` module to `JPro Platform`.
* Add `jpro-internal-openlink` module to `JPro Platform`.
* Add `deleteCache` script for Linux/macOS platform. This script is used to delete the jars related to JPro Platform
modules from Gradle and Maven locally on Linux/macOS.

#### Features
* Added new **StatisticsFilter** to the `jpro-routing-core` module.
* Java version compatibility for the Openlink module is now set to `11`.

#### Bugfixes
* Fixed routing on the desktop platform.

0 comments on commit 649063a

Please sign in to comment.