Skip to content

Commit 9423c24

Browse files
new release 0.5.8
1 parent 61114f7 commit 9423c24

7 files changed

Lines changed: 43 additions & 42 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Changelog
22

33
## 0.5.x
4+
### 0.5.9 (TBD)
45

5-
### 0.5.8-SNAPSHOT (TBD)
6+
### 0.5.8 (February 20, 2026)
67
#### Features
78
* Added AuthUIProvider to the `jpro-auth-routing` module. This filters can be used, to limit access to the whole app,
89
without the need to change anything in the RouteApp.

README.md

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ and OAuth2 (and to some extent OpenID Connect) implementation.
6363
<dependency>
6464
<groupId>one.jpro.platform</groupId>
6565
<artifactId>jpro-auth-core</artifactId>
66-
<version>0.5.8-SNAPSHOT</version>
66+
<version>0.5.8</version>
6767
</dependency>
6868
</dependencies>
6969
```
7070

7171
#### Gradle configuration
7272
```groovy
7373
dependencies {
74-
implementation("one.jpro.platform:jpro-auth-core:0.5.8-SNAPSHOT")
74+
implementation("one.jpro.platform:jpro-auth-core:0.5.8")
7575
}
7676
```
7777

@@ -84,15 +84,15 @@ Creates human and AI friendly String representations of JavaFX SceneGraphs.
8484
<dependency>
8585
<groupId>one.jpro.platform</groupId>
8686
<artifactId>jpro-scenegraph</artifactId>
87-
<version>0.5.8-SNAPSHOT</version>
87+
<version>0.5.8</version>
8888
</dependency>
8989
</dependencies>
9090
```
9191

9292
#### Gradle configuration
9393
```groovy
9494
dependencies {
95-
implementation("one.jpro.platform:jpro-scenegraph:0.5.8-SNAPSHOT")
95+
implementation("one.jpro.platform:jpro-scenegraph:0.5.8")
9696
}
9797
```
9898

@@ -105,15 +105,15 @@ This library provides a simple way to pick, drop, upload and download files in *
105105
<dependency>
106106
<groupId>one.jpro.platform</groupId>
107107
<artifactId>jpro-file</artifactId>
108-
<version>0.5.8-SNAPSHOT</version>
108+
<version>0.5.8</version>
109109
</dependency>
110110
</dependencies>
111111
```
112112

113113
#### Gradle configuration
114114
```groovy
115115
dependencies {
116-
implementation("one.jpro.platform:jpro-file:0.5.8-SNAPSHOT")
116+
implementation("one.jpro.platform:jpro-file:0.5.8")
117117
}
118118
```
119119

@@ -149,15 +149,15 @@ to the desired size.
149149
<dependency>
150150
<groupId>one.jpro.platform</groupId>
151151
<artifactId>jpro-image-manager</artifactId>
152-
<version>0.5.8-SNAPSHOT</version>
152+
<version>0.5.8</version>
153153
</dependency>
154154
</dependencies>
155155
```
156156

157157
#### Gradle configuration
158158
```groovy
159159
dependencies {
160-
implementation("one.jpro.platform:jpro-image-manager:0.5.8-SNAPSHOT")
160+
implementation("one.jpro.platform:jpro-image-manager:0.5.8")
161161
}
162162
```
163163

@@ -171,15 +171,15 @@ using SMTP and SMTPS protocols. It also provides a simple way to compose and sen
171171
<dependency>
172172
<groupId>one.jpro.platform</groupId>
173173
<artifactId>jpro-mail</artifactId>
174-
<version>0.5.8-SNAPSHOT</version>
174+
<version>0.5.8</version>
175175
</dependency>
176176
</dependencies>
177177
```
178178

179179
#### Gradle configuration
180180
```groovy
181181
dependencies {
182-
implementation("one.jpro.platform:jpro-mail:0.5.8-SNAPSHOT")
182+
implementation("one.jpro.platform:jpro-mail:0.5.8")
183183
}
184184
```
185185

@@ -194,7 +194,7 @@ all while utilizing the same codebase.
194194
<dependency>
195195
<groupId>one.jpro.platform</groupId>
196196
<artifactId>jpro-media</artifactId>
197-
<version>0.5.8-SNAPSHOT</version>
197+
<version>0.5.8</version>
198198
</dependency>
199199

200200
<dependency>
@@ -215,7 +215,7 @@ plugins {
215215
}
216216
217217
dependencies {
218-
implementation("one.jpro.platform:jpro-media:0.5.8-SNAPSHOT")
218+
implementation("one.jpro.platform:jpro-media:0.5.8")
219219
implementation "org.bytedeco:javacv-platform:1.5.10" // use compileOnly configuration when running/deploying with JPro
220220
}
221221
```
@@ -233,15 +233,15 @@ Currently, there are three routing modules available:
233233
<dependency>
234234
<groupId>one.jpro.platform</groupId>
235235
<artifactId>jpro-routing-core</artifactId>
236-
<version>0.5.8-SNAPSHOT</version>
236+
<version>0.5.8</version>
237237
</dependency>
238238
</dependencies>
239239
```
240240

241241
#### Gradle configuration
242242
```groovy
243243
dependencies {
244-
implementation("one.jpro.platform:jpro-routing-core:0.5.8-SNAPSHOT")
244+
implementation("one.jpro.platform:jpro-routing-core:0.5.8")
245245
}
246246
```
247247

@@ -253,15 +253,15 @@ dependencies {
253253
<dependency>
254254
<groupId>one.jpro.platform</groupId>
255255
<artifactId>jpro-routing-dev</artifactId>
256-
<version>0.5.8-SNAPSHOT</version>
256+
<version>0.5.8</version>
257257
</dependency>
258258
</dependencies>
259259
```
260260

261261
#### Gradle configuration
262262
```groovy
263263
dependencies {
264-
implementation("one.jpro.platform:jpro-routing-dev:0.5.8-SNAPSHOT")
264+
implementation("one.jpro.platform:jpro-routing-dev:0.5.8")
265265
}
266266
```
267267

@@ -273,15 +273,15 @@ dependencies {
273273
<dependency>
274274
<groupId>one.jpro.platform</groupId>
275275
<artifactId>jpro-routing-popup</artifactId>
276-
<version>0.5.8-SNAPSHOT</version>
276+
<version>0.5.8</version>
277277
</dependency>
278278
</dependencies>
279279
```
280280

281281
#### Gradle configuration
282282
```groovy
283283
dependencies {
284-
implementation("one.jpro.platform:jpro-routing-popup:0.5.8-SNAPSHOT")
284+
implementation("one.jpro.platform:jpro-routing-popup:0.5.8")
285285
}
286286
```
287287

@@ -295,15 +295,15 @@ applications.
295295
<dependency>
296296
<groupId>one.jpro.platform</groupId>
297297
<artifactId>jpro-mdfx</artifactId>
298-
<version>0.5.8-SNAPSHOT</version>
298+
<version>0.5.8</version>
299299
</dependency>
300300
</dependencies>
301301
```
302302

303303
#### Gradle configuration
304304
```groovy
305305
dependencies {
306-
implementation("one.jpro.platform:jpro-mdfx:0.5.8-SNAPSHOT")
306+
implementation("one.jpro.platform:jpro-mdfx:0.5.8")
307307
}
308308
```
309309

@@ -318,15 +318,15 @@ This data is only accessible in the JPro Server, not in the browser - which can
318318
<dependency>
319319
<groupId>one.jpro.platform</groupId>
320320
<artifactId>jpro-session</artifactId>
321-
<version>0.5.8-SNAPSHOT</version>
321+
<version>0.5.8</version>
322322
</dependency>
323323
</dependencies>
324324
```
325325

326326
#### Gradle configuration
327327
```groovy
328328
dependencies {
329-
implementation("one.jpro.platform:jpro-session:0.5.8-SNAPSHOT")
329+
implementation("one.jpro.platform:jpro-session:0.5.8")
330330
}
331331
```
332332

@@ -339,15 +339,15 @@ This library offers essential tools for various functionalities to enhance the d
339339
<dependency>
340340
<groupId>one.jpro.platform</groupId>
341341
<artifactId>jpro-utils</artifactId>
342-
<version>0.5.8-SNAPSHOT</version>
342+
<version>0.5.8</version>
343343
</dependency>
344344
</dependency>
345345
```
346346

347347
#### Gradle configuration
348348
```groovy
349349
dependencies {
350-
implementation 'one.jpro.platform:jpro-utils:0.5.8-SNAPSHOT'
350+
implementation 'one.jpro.platform:jpro-utils:0.5.8'
351351
}
352352
```
353353

@@ -368,15 +368,15 @@ capabilities.
368368
<dependency>
369369
<groupId>one.jpro.platform</groupId>
370370
<artifactId>jpro-webrtc</artifactId>
371-
<version>0.5.8-SNAPSHOT</version>
371+
<version>0.5.8</version>
372372
</dependency>
373373
</dependencies>
374374
```
375375

376376
#### Gradle configuration
377377
```groovy
378378
dependencies {
379-
implementation("one.jpro.platform:jpro-webrtc:0.5.8-SNAPSHOT")
379+
implementation("one.jpro.platform:jpro-webrtc:0.5.8")
380380
}
381381
```
382382

@@ -391,15 +391,15 @@ the embedded controls. The video can be played in full-screen mode.
391391
<dependency>
392392
<groupId>one.jpro.platform</groupId>
393393
<artifactId>jpro-youtube</artifactId>
394-
<version>0.5.8-SNAPSHOT</version>
394+
<version>0.5.8</version>
395395
</dependency>
396396
</dependencies>
397397
```
398398

399399
#### Gradle configuration
400400
```groovy
401401
dependencies {
402-
implementation("one.jpro.platform:jpro-youtube:0.5.8-SNAPSHOT")
402+
implementation("one.jpro.platform:jpro-youtube:0.5.8")
403403
}
404404
```
405405

@@ -428,15 +428,15 @@ Provides a skin implementation of a scrollpane for **JPro** applications only.
428428
<dependency>
429429
<groupId>one.jpro.platform</groupId>
430430
<artifactId>jpro-html-scrollpane</artifactId>
431-
<version>0.5.8-SNAPSHOT</version>
431+
<version>0.5.8</version>
432432
</dependency>
433433
</dependencies>
434434
```
435435

436436
#### Gradle configuration
437437
```groovy
438438
dependencies {
439-
implementation("one.jpro.platform:jpro-html-scrollpane:0.5.8-SNAPSHOT")
439+
implementation("one.jpro.platform:jpro-html-scrollpane:0.5.8")
440440
}
441441
```
442442

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
JPRO_PLATFORM_VERSION = 0.5.8-SNAPSHOT
1+
JPRO_PLATFORM_VERSION = 0.5.8
22

33
JPRO_VERSION = 2025.3.1
44
JAVAFX_BUILD_VERSION = 17.0.18

jpro-auth/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ processes. Add the following configuration to your project based on the build to
101101
- Gradle
102102
```groovy
103103
dependencies {
104-
implementation("one.jpro.platform:jpro-auth:0.5.8-SNAPSHOT")
104+
implementation("one.jpro.platform:jpro-auth:0.5.8")
105105
}
106106
```
107107
- Maven
@@ -110,7 +110,7 @@ processes. Add the following configuration to your project based on the build to
110110
<dependency>
111111
<groupId>one.jpro.platform</groupId>
112112
<artifactId>jpro-auth-core</artifactId>
113-
<version>0.5.8-SNAPSHOT</version>
113+
<version>0.5.8</version>
114114
</dependency>
115115
</dependencies>
116116
```
@@ -121,7 +121,7 @@ the authentication process. Add the following configuration to your project base
121121
- Gradle
122122
```groovy
123123
dependencies {
124-
implementation("one.jpro.platform:jpro-auth-routing:0.5.8-SNAPSHOT")
124+
implementation("one.jpro.platform:jpro-auth-routing:0.5.8")
125125
}
126126
```
127127
- Maven
@@ -130,7 +130,7 @@ the authentication process. Add the following configuration to your project base
130130
<dependency>
131131
<groupId>one.jpro.platform</groupId>
132132
<artifactId>jpro-auth-routing</artifactId>
133-
<version>0.5.8-SNAPSHOT</version>
133+
<version>0.5.8</version>
134134
</dependency>
135135
</dependencies>
136136
```

jpro-file/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Add the following configuration to your project based on the build tool you are
8888
- Gradle
8989
```groovy
9090
dependencies {
91-
implementation("one.jpro.platform:jpro-file:0.5.8-SNAPSHOT")
91+
implementation("one.jpro.platform:jpro-file:0.5.8")
9292
}
9393
```
9494
- Maven
@@ -97,7 +97,7 @@ Add the following configuration to your project based on the build tool you are
9797
<dependency>
9898
<groupId>one.jpro.platform</groupId>
9999
<artifactId>jpro-file</artifactId>
100-
<version>0.5.8-SNAPSHOT</version>
100+
<version>0.5.8</version>
101101
</dependency>
102102
</dependencies>
103103
```

jpro-mail/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ email attributes such as sender, recipients, subject, and date, as well as metho
5959
- Gradle
6060
```groovy
6161
dependencies {
62-
implementation("one.jpro.platform:jpro-mail:0.5.8-SNAPSHOT")
62+
implementation("one.jpro.platform:jpro-mail:0.5.8")
6363
}
6464
```
6565
- Maven
@@ -68,7 +68,7 @@ email attributes such as sender, recipients, subject, and date, as well as metho
6868
<dependency>
6969
<groupId>one.jpro.platform</groupId>
7070
<artifactId>jpro-mail</artifactId>
71-
<version>0.5.8-SNAPSHOT</version>
71+
<version>0.5.8</version>
7272
</dependency>
7373
</dependencies>
7474
```

jpro-media/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ plugins {
3737
}
3838
3939
dependencies {
40-
implementation 'one.jpro.platform:jpro-media:0.5.8-SNAPSHOT'
40+
implementation 'one.jpro.platform:jpro-media:0.5.8'
4141
4242
// use compileOnly configuration when running/deploying with JPro,
4343
// since the platform specific libraries are no more needed
@@ -72,7 +72,7 @@ the `release` zipped file. Even the `jpro:run` task is faster since these files
7272
<dependency>
7373
<groupId>one.jpro.platform</groupId>
7474
<artifactId>jpro-media</artifactId>
75-
<version>0.5.8-SNAPSHOT</version>
75+
<version>0.5.8</version>
7676
</dependency>
7777
<dependency>
7878
<groupId>org.bytedeco</groupId>

0 commit comments

Comments
 (0)