Skip to content

JPro Platform 0.2.7

Compare
Choose a tag to compare
@besidev besidev released this 08 Dec 10:26
· 251 commits to main since this release

Improvements

  • Updated JPro to version 2023.3.2.
  • Updated SimpleFX to version 3.2.27.
  • Improve documentation for the jpro-media module.

Features

  • Added jpro-file module to JPro Platform. For more information, navigate to the jpro-file module.
  • Added jpro-webartc module to JPro Platform. Provides an API to use WebRTC in JPro running application.
  • Added jpro-youtube module to JPro Platform. Makes easy to embed a YouTube video by simply using YoutubeNode.
  • Added ensemble module to publish platform examples.
  • Added Image and YouTube extensions to the jpro-mdfx module.
  • Added Domain Filters to the jpro-routing-core module. This is a simple example on how to use it:
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()))));
  }
}

Bugfixes

  • In jpro-media module, correctly reassign a media engine to the WebMediaView
    by calling setMediaEngine method when running via JPro.
  • In jpro-media module, correctly resize the video element in the WebMediaView
    after calling setMediaEngine method when running via JPro.

Changes

  • In the jpro-auth module, the package named one.jpro.platform.auth.oath2
    was correctly renamed to one.jpro.platform.auth.oauth2.