Skip to content

Commit

Permalink
Prepare for the next version
Browse files Browse the repository at this point in the history
  • Loading branch information
besidev committed Dec 29, 2023
1 parent dfbc3f6 commit f2cb4f2
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 35 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 0.2.11-SNAPSHOT (TBD)

----------------------
### 0.2.10 (December 29, 2023)

#### Features
Expand All @@ -11,6 +14,7 @@
* Simplify the authorization process for a given OAuth2 authentication provider via the `jpro-auth-routing` module
by calling the `OAuth2Filter.authorize` method.

----------------------
### 0.2.9 (December 21, 2023)

#### Changes
Expand All @@ -20,6 +24,7 @@ by calling the `OAuth2Filter.authorize` method.
#### Improvements
* Added Documentation for `jpro-routing` modules.

----------------------
### 0.2.8 (December 19, 2023)

#### Changes
Expand All @@ -46,6 +51,7 @@ by calling the `OAuth2Filter.authorize` method.
* Fixed web implementation of the `mediaView` **freezing** after the node was removed from the scene and then added
back.

----------------------
### 0.2.7 (December 8, 2023)

#### Improvements
Expand Down Expand Up @@ -85,6 +91,7 @@ public class DomainExample extends RouteApp {
* In the `jpro-auth` module, the package named `one.jpro.platform.auth.oath2` was correctly renamed to
`one.jpro.platform.auth.oauth2`.

----------------------
### 0.2.6 (September 28, 2023)

#### Improvements
Expand All @@ -98,6 +105,7 @@ public class DomainExample extends RouteApp {
#### Bugfixes
* Provide a more compatible solution to open URls on Windows platform via the OpenLink internal module.

----------------------
### 0.2.5 (September 28, 2023)

#### Improvements
Expand All @@ -106,6 +114,7 @@ public class DomainExample extends RouteApp {
#### Bugfixes
* ScrollPane hotfix applied in the `jpro-scrollpane` module.

----------------------
### 0.2.4 (September 27, 2023)

* Migrating everything from `JPro Utils` to the platform. Change module prefixes to `one.jpro.platform`
Expand Down
56 changes: 28 additions & 28 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,15 @@ and OAuth2 (and to some extent OpenID Connect) implementation.
<dependency>
<groupId>one.jpro.platform</groupId>
<artifactId>jpro-auth-core</artifactId>
<version>0.2.10</version>
<version>0.2.11-SNAPSHOT</version>
</dependency>
</dependencies>
```

#### Gradle configuration
```groovy
dependencies {
implementation("one.jpro.platform:jpro-auth-core:0.2.10")
implementation("one.jpro.platform:jpro-auth-core:0.2.11-SNAPSHOT")
}
```

Expand All @@ -94,15 +94,15 @@ This library provides a simple way to pick, drop, upload and download files in *
<dependency>
<groupId>one.jpro.platform</groupId>
<artifactId>jpro-file</artifactId>
<version>0.2.10</version>
<version>0.2.11-SNAPSHOT</version>
</dependency>
</dependencies>
```

#### Gradle configuration
```groovy
dependencies {
implementation("one.jpro.platform:jpro-file:0.2.10")
implementation("one.jpro.platform:jpro-file:0.2.11-SNAPSHOT")
}
```

Expand Down Expand Up @@ -138,15 +138,15 @@ to the desired size.
<dependency>
<groupId>one.jpro.platform</groupId>
<artifactId>jpro-image-manager</artifactId>
<version>0.2.10</version>
<version>0.2.11-SNAPSHOT</version>
</dependency>
</dependencies>
```

#### Gradle configuration
```groovy
dependencies {
implementation("one.jpro.platform:jpro-image-manager:0.2.10")
implementation("one.jpro.platform:jpro-image-manager:0.2.11-SNAPSHOT")
}
```

Expand All @@ -161,7 +161,7 @@ all while utilizing the same codebase.
<dependency>
<groupId>one.jpro.platform</groupId>
<artifactId>jpro-media</artifactId>
<version>0.2.10</version>
<version>0.2.11-SNAPSHOT</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -190,7 +190,7 @@ plugins {
}
dependencies {
implementation("one.jpro.platform:jpro-media:0.2.10")
implementation("one.jpro.platform:jpro-media:0.2.11-SNAPSHOT")
implementation "org.bytedeco:javacv-platform:1.5.9" // use compileOnly configuration when running/deploying with JPro
runtimeOnly 'org.bytedeco:flandmark-platform:1.07-1.5.8' // when running on desktop/device only
}
Expand All @@ -209,15 +209,15 @@ Currently, there are three routing modules available:
<dependency>
<groupId>one.jpro.platform</groupId>
<artifactId>jpro-routing-core</artifactId>
<version>0.2.10</version>
<version>0.2.11-SNAPSHOT</version>
</dependency>
</dependencies>
```

#### Gradle configuration
```groovy
dependencies {
implementation("one.jpro.platform:jpro-routing-core:0.2.10")
implementation("one.jpro.platform:jpro-routing-core:0.2.11-SNAPSHOT")
}
```

Expand All @@ -229,15 +229,15 @@ dependencies {
<dependency>
<groupId>one.jpro.platform</groupId>
<artifactId>jpro-routing-dev</artifactId>
<version>0.2.10</version>
<version>0.2.11-SNAPSHOT</version>
</dependency>
</dependencies>
```

#### Gradle configuration
```groovy
dependencies {
implementation("one.jpro.platform:jpro-routing-dev:0.2.10")
implementation("one.jpro.platform:jpro-routing-dev:0.2.11-SNAPSHOT")
}
```

Expand All @@ -249,15 +249,15 @@ dependencies {
<dependency>
<groupId>one.jpro.platform</groupId>
<artifactId>jpro-routing-popup</artifactId>
<version>0.2.10</version>
<version>0.2.11-SNAPSHOT</version>
</dependency>
</dependencies>
```

#### Gradle configuration
```groovy
dependencies {
implementation("one.jpro.platform:jpro-routing-popup:0.2.10")
implementation("one.jpro.platform:jpro-routing-popup:0.2.11-SNAPSHOT")
}
```

Expand All @@ -270,15 +270,15 @@ This library allows you to render Markdown formatted content in your **JPro/Java
<dependency>
<groupId>one.jpro.platform</groupId>
<artifactId>jpro-mdfx</artifactId>
<version>0.2.10</version>
<version>0.2.11-SNAPSHOT</version>
</dependency>
</dependencies>
```

#### Gradle configuration
```groovy
dependencies {
implementation("one.jpro.platform:jpro-mdfx:0.2.10")
implementation("one.jpro.platform:jpro-mdfx:0.2.11-SNAPSHOT")
}
```

Expand All @@ -293,15 +293,15 @@ This data is only accessible in the JPro Server, not in the browser - which can
<dependency>
<groupId>one.jpro.platform</groupId>
<artifactId>jpro-sessions</artifactId>
<version>0.2.10</version>
<version>0.2.11-SNAPSHOT</version>
</dependency>
</dependencies>
```

#### Gradle configuration
```groovy
dependencies {
implementation("one.jpro.platform:jpro-sessions:0.2.10")
implementation("one.jpro.platform:jpro-sessions:0.2.11-SNAPSHOT")
}
```

Expand All @@ -322,15 +322,15 @@ capabilities.
<dependency>
<groupId>one.jpro.platform</groupId>
<artifactId>jpro-webrtc</artifactId>
<version>0.2.10</version>
<version>0.2.11-SNAPSHOT</version>
</dependency>
</dependencies>
```

#### Gradle configuration
```groovy
dependencies {
implementation("one.jpro.platform:jpro-webrtc:0.2.10")
implementation("one.jpro.platform:jpro-webrtc:0.2.11-SNAPSHOT")
}
```

Expand All @@ -345,15 +345,15 @@ the embedded controls. The video can be played in full-screen mode.
<dependency>
<groupId>one.jpro.platform</groupId>
<artifactId>jpro-youtube</artifactId>
<version>0.2.10</version>
<version>0.2.11-SNAPSHOT</version>
</dependency>
</dependencies>
```

#### Gradle configuration
```groovy
dependencies {
implementation("one.jpro.platform:jpro-youtube:0.2.10")
implementation("one.jpro.platform:jpro-youtube:0.2.11-SNAPSHOT")
}
```

Expand Down Expand Up @@ -382,15 +382,15 @@ Provides a skin implementation of a scrollpane for **JPro** applications only.
<dependency>
<groupId>one.jpro.platform</groupId>
<artifactId>jpro-html-scrollpane</artifactId>
<version>0.2.10</version>
<version>0.2.11-SNAPSHOT</version>
</dependency>
</dependencies>
```

#### Gradle configuration
```groovy
dependencies {
implementation("one.jpro.platform:jpro-html-scrollpane:0.2.10")
implementation("one.jpro.platform:jpro-html-scrollpane:0.2.11-SNAPSHOT")
}
```

Expand All @@ -409,14 +409,14 @@ bug-free and leak-free applications.
<dependency>
<groupId>one.jpro.platform</groupId>
<artifactId>tree-showing</artifactId>
<version>0.2.10</version>
<version>0.2.11-SNAPSHOT</version>
</dependency>
```

#### Gradle configuration
```groovy
dependencies {
implementation 'one.jpro.platform:tree-showing:0.2.10'
implementation 'one.jpro.platform:tree-showing:0.2.11-SNAPSHOT'
}
```

Expand Down Expand Up @@ -448,15 +448,15 @@ This can be useful for debugging purposes, detecting deadlocks or other optimize
<dependency>
<groupId>one.jpro.platform</groupId>
<artifactId>freeze-detector</artifactId>
<version>0.2.10</version>
<version>0.2.11-SNAPSHOT</version>
</dependency>
</dependency>
```

#### Gradle configuration
```groovy
dependencies {
implementation 'one.jpro.platform:freeze-detector:0.2.10'
implementation 'one.jpro.platform:freeze-detector:0.2.11-SNAPSHOT'
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
JPRO_PLATFORM_VERSION = 0.2.10
JPRO_PLATFORM_VERSION = 0.2.11-SNAPSHOT

JPRO_VERSION = 2023.3.3
JAVAFX_VERSION = 17.0.9
Expand Down
4 changes: 2 additions & 2 deletions jpro-auth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ asynchronous operations preventing UI blocking during authentication processes.
- Gradle
```groovy
dependencies {
implementation("one.jpro.platform:jpro-auth:0.2.10")
implementation("one.jpro.platform:jpro-auth:0.2.11-SNAPSHOT")
}
```
- Maven
Expand All @@ -22,7 +22,7 @@ asynchronous operations preventing UI blocking during authentication processes.
<dependency>
<groupId>one.jpro.platform</groupId>
<artifactId>jpro-auth</artifactId>
<version>0.2.10</version>
<version>0.2.11-SNAPSHOT</version>
</dependency>
</dependencies>
```
Expand Down
4 changes: 2 additions & 2 deletions jpro-file/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ a specified callback handler is invoked for further processing.
- Gradle
```groovy
dependencies {
implementation("one.jpro.platform:jpro-file:0.2.10")
implementation("one.jpro.platform:jpro-file:0.2.11-SNAPSHOT")
}
```
- Maven
Expand All @@ -87,7 +87,7 @@ a specified callback handler is invoked for further processing.
<dependency>
<groupId>one.jpro.platform</groupId>
<artifactId>jpro-file</artifactId>
<version>0.2.10</version>
<version>0.2.11-SNAPSHOT</version>
</dependency>
</dependencies>
```
Expand Down
4 changes: 2 additions & 2 deletions jpro-media/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ plugins {
}
dependencies {
implementation 'one.jpro.platform:jpro-media:0.2.10'
implementation 'one.jpro.platform:jpro-media:0.2.11-SNAPSHOT'
runtimeOnly 'org.bytedeco:flandmark-platform:1.07-1.5.8' // when running on desktop/device only
// use compileOnly configuration when running/deploying with JPro,
Expand Down Expand Up @@ -73,7 +73,7 @@ the `release` zipped file. Even the `jpro:run` task is faster since these files
<dependency>
<groupId>one.jpro.platform</groupId>
<artifactId>jpro-media</artifactId>
<version>0.2.10</version>
<version>0.2.11-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.bytedeco</groupId>
Expand Down

0 comments on commit f2cb4f2

Please sign in to comment.