Skip to content

Commit 86aab6e

Browse files
committed
Enhance CI configuration to support multiple Java versions and update project licenses
1 parent b41a11d commit 86aab6e

7 files changed

Lines changed: 250 additions & 247 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ jobs:
1111

1212
runs-on: ubuntu-latest
1313
timeout-minutes: 10
14+
strategy:
15+
matrix:
16+
java-version: [17, 21, 25]
1417
env:
1518
JAVA_TOOL_OPTIONS: >
1619
-Djava.awt.headless=true
@@ -20,10 +23,10 @@ jobs:
2023
-Dmonocle.platform=Headless
2124
steps:
2225
- uses: actions/checkout@v4
23-
- name: Set up JDK 17
26+
- name: Set up JDK ${{ matrix.java-version }}
2427
uses: actions/setup-java@v4
2528
with:
26-
java-version: 17
29+
java-version: ${{ matrix.java-version }}
2730
distribution: liberica
2831
java-package: jdk+fx # optional (jdk, jre, jdk+fx or jre+fx) - defaults to jdk
2932
cache: maven

README.md

Lines changed: 77 additions & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -1,77 +1,77 @@
1-
# fx-onscreen-keyboard
2-
[![CI](https://github.com/comtel2000/fx-experience/actions/workflows/ci.yml/badge.svg)](https://github.com/comtel2000/fx-experience/actions/workflows/ci.yml) [![Maven Central Version](https://img.shields.io/maven-central/v/org.comtel2000/fx-parent)](https://central.sonatype.com/artifact/org.comtel2000/fx-parent) [![License](https://img.shields.io/badge/license-BSD--3--Clause-blue.svg)](http://opensource.org/licenses/BSD-3-Clause)
3-
4-
*FXOK* provides a JavaFX 8 (OpenJFX 11-17) based virtual on-screen keyboard component for touch based monitors with xml layout configuration
5-
6-
## Features
7-
* support multiple key button layouts (numeric, symbol, text, shift)
8-
* free movable with auto positioning
9-
* select all, copy, paste, cut buttons
10-
* resizable by zoom in/out button
11-
* dynamic text node property definition ('vkType', 'vkLocale', 'vkState')
12-
* context popup with additional chars
13-
* switch locale (language) layouts
14-
* css style
15-
16-
## Modules
17-
* fx-onscreen-keyboard (fx components)
18-
* fx-onscreen-keyboard-swing (swing components)
19-
* fx-onscreen-keyboard-samples (sample package)
20-
21-
![num block ctrl](https://github.com/comtel2000/fx-experience/blob/master/doc/num_block.png)
22-
23-
![num block](https://github.com/comtel2000/fx-experience/blob/master/doc/num_block_ctrl.png)
24-
25-
![layout ru](https://github.com/comtel2000/fx-experience/blob/master/doc/layout_ru.png)
26-
27-
[![video](http://img.youtube.com/vi/CD9lS_HZ4fA/0.jpg)](http://youtu.be/CD9lS_HZ4fA)
28-
29-
## How to build and run sample
30-
31-
```shell
32-
mvn clean install
33-
java -jar fx-onscreen-keyboard-samples/target/fx-onscreen-keyboard-jar-with-dependencies.jar
34-
```
35-
36-
## Maven central repository
37-
38-
Java 8:
39-
40-
```xml
41-
<dependency>
42-
<groupId>org.comtel2000</groupId>
43-
<artifactId>fx-onscreen-keyboard</artifactId>
44-
<version>8.2.5</version>
45-
</dependency>
46-
```
47-
Java 9 module support (java9 branch):
48-
49-
```xml
50-
<dependency>
51-
<groupId>org.comtel2000</groupId>
52-
<artifactId>fx-onscreen-keyboard</artifactId>
53-
<version>9.0.0-SNAPSHOT</version>
54-
</dependency>
55-
```
56-
Java 11 (java11 branch):
57-
58-
```xml
59-
<dependency>
60-
<groupId>org.comtel2000</groupId>
61-
<artifactId>fx-onscreen-keyboard</artifactId>
62-
<version>11.0.1</version>
63-
</dependency>
64-
```
65-
66-
Java 17 (dev):
67-
68-
```xml
69-
<dependency>
70-
<groupId>org.comtel2000</groupId>
71-
<artifactId>fx-onscreen-keyboard</artifactId>
72-
<version>17.0.2</version>
73-
</dependency>
74-
```
75-
76-
## License
77-
[BSD 3-Clause License](http://opensource.org/licenses/BSD-3-Clause)
1+
# fx-onscreen-keyboard
2+
[![CI](https://github.com/comtel2000/fx-experience/actions/workflows/ci.yml/badge.svg)](https://github.com/comtel2000/fx-experience/actions/workflows/ci.yml) [![Maven Central Version](https://img.shields.io/maven-central/v/org.comtel2000/fx-parent)](https://central.sonatype.com/artifact/org.comtel2000/fx-parent) [![License](https://img.shields.io/badge/license-BSD--3--Clause-blue.svg)](http://opensource.org/licenses/BSD-3-Clause)
3+
4+
*FXOK* provides a JavaFX 8 (OpenJFX 11-17) based virtual on-screen keyboard component for touch based monitors with xml layout configuration
5+
6+
## Features
7+
* support multiple key button layouts (numeric, symbol, text, shift)
8+
* free movable with auto positioning
9+
* select all, copy, paste, cut buttons
10+
* resizable by zoom in/out button
11+
* dynamic text node property definition ('vkType', 'vkLocale', 'vkState')
12+
* context popup with additional chars
13+
* switch locale (language) layouts
14+
* css style
15+
16+
## Modules
17+
* fx-onscreen-keyboard (fx components)
18+
* fx-onscreen-keyboard-swing (swing components)
19+
* fx-onscreen-keyboard-samples (sample package)
20+
21+
![num block ctrl](https://github.com/comtel2000/fx-experience/blob/master/doc/num_block.png)
22+
23+
![num block](https://github.com/comtel2000/fx-experience/blob/master/doc/num_block_ctrl.png)
24+
25+
![layout ru](https://github.com/comtel2000/fx-experience/blob/master/doc/layout_ru.png)
26+
27+
[![video](http://img.youtube.com/vi/CD9lS_HZ4fA/0.jpg)](http://youtu.be/CD9lS_HZ4fA)
28+
29+
## How to build and run sample
30+
31+
```shell
32+
mvn clean install
33+
java -jar fx-onscreen-keyboard-samples/target/fx-onscreen-keyboard-jar-with-dependencies.jar
34+
```
35+
36+
## Maven central repository
37+
38+
Java 8:
39+
40+
```xml
41+
<dependency>
42+
<groupId>org.comtel2000</groupId>
43+
<artifactId>fx-onscreen-keyboard</artifactId>
44+
<version>8.2.5</version>
45+
</dependency>
46+
```
47+
Java 9 module support (java9 branch):
48+
49+
```xml
50+
<dependency>
51+
<groupId>org.comtel2000</groupId>
52+
<artifactId>fx-onscreen-keyboard</artifactId>
53+
<version>9.0.0-SNAPSHOT</version>
54+
</dependency>
55+
```
56+
Java 11 (java11 branch):
57+
58+
```xml
59+
<dependency>
60+
<groupId>org.comtel2000</groupId>
61+
<artifactId>fx-onscreen-keyboard</artifactId>
62+
<version>11.0.1</version>
63+
</dependency>
64+
```
65+
66+
Java 17 (dev):
67+
68+
```xml
69+
<dependency>
70+
<groupId>org.comtel2000</groupId>
71+
<artifactId>fx-onscreen-keyboard</artifactId>
72+
<version>17.0.2</version>
73+
</dependency>
74+
```
75+
76+
## License
77+
[BSD 3-Clause License](http://opensource.org/licenses/BSD-3-Clause)
Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
1-
fx-onscreen-keyboard
2-
3-
Copyright (C) 2014 - 2025, comtel2000
4-
5-
Redistribution and use in source and binary forms, with or without modification,
6-
are permitted provided that the following conditions are met:
7-
8-
1. Redistributions of source code must retain the above copyright notice, this
9-
list of conditions and the following disclaimer.
10-
11-
2. Redistributions in binary form must reproduce the above copyright notice,
12-
this list of conditions and the following disclaimer in the documentation
13-
and/or other materials provided with the distribution.
14-
15-
3. Neither the name of the comtel2000 nor the names of its contributors
16-
may be used to endorse or promote products derived from this software without
17-
specific prior written permission.
18-
19-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20-
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22-
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
23-
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
24-
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25-
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26-
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
27-
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
1+
fx-onscreen-keyboard
2+
3+
Copyright (C) 2014 - 2025, comtel2000
4+
5+
Redistribution and use in source and binary forms, with or without modification,
6+
are permitted provided that the following conditions are met:
7+
8+
1. Redistributions of source code must retain the above copyright notice, this
9+
list of conditions and the following disclaimer.
10+
11+
2. Redistributions in binary form must reproduce the above copyright notice,
12+
this list of conditions and the following disclaimer in the documentation
13+
and/or other materials provided with the distribution.
14+
15+
3. Neither the name of the comtel2000 nor the names of its contributors
16+
may be used to endorse or promote products derived from this software without
17+
specific prior written permission.
18+
19+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22+
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
23+
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
24+
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
27+
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
2828
OF THE POSSIBILITY OF SUCH DAMAGE.
Lines changed: 51 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,52 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2-
<modelVersion>4.0.0</modelVersion>
3-
<parent>
4-
<groupId>org.comtel2000</groupId>
5-
<artifactId>fx-parent</artifactId>
6-
<version>17.0.3-SNAPSHOT</version>
7-
</parent>
8-
9-
<artifactId>fx-onscreen-keyboard-samples</artifactId>
10-
<packaging>jar</packaging>
11-
12-
<name>fx-onscreen-keyboard-samples</name>
13-
<description>JavaFX on-screen keyboard component with xml layout configuration. Samples</description>
14-
<url>http://comtel2000.org</url>
15-
16-
<properties>
17-
<app.main.class>org.comtel2000.samples.fx.StandAloneApp</app.main.class>
18-
</properties>
19-
20-
<dependencies>
21-
<dependency>
22-
<groupId>org.comtel2000</groupId>
23-
<artifactId>fx-onscreen-keyboard</artifactId>
24-
<version>${project.version}</version>
25-
</dependency>
26-
<dependency>
27-
<groupId>org.comtel2000</groupId>
28-
<artifactId>fx-onscreen-keyboard-swing</artifactId>
29-
<version>${project.version}</version>
30-
</dependency>
31-
<dependency>
32-
<groupId>org.openjfx</groupId>
33-
<artifactId>javafx-swing</artifactId>
34-
<version>${javafx.version}</version>
35-
</dependency>
36-
<dependency>
37-
<groupId>org.openjfx</groupId>
38-
<artifactId>javafx-media</artifactId>
39-
<version>${javafx.version}</version>
40-
</dependency>
41-
<dependency>
42-
<groupId>org.slf4j</groupId>
43-
<artifactId>slf4j-api</artifactId>
44-
</dependency>
45-
<dependency>
46-
<groupId>org.slf4j</groupId>
47-
<artifactId>slf4j-simple</artifactId>
48-
<version>${slf4j.version}</version>
49-
</dependency>
50-
</dependencies>
51-
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<modelVersion>4.0.0</modelVersion>
3+
<parent>
4+
<groupId>org.comtel2000</groupId>
5+
<artifactId>fx-parent</artifactId>
6+
<version>17.0.3-SNAPSHOT</version>
7+
</parent>
8+
9+
<artifactId>fx-onscreen-keyboard-samples</artifactId>
10+
<packaging>jar</packaging>
11+
12+
<name>fx-onscreen-keyboard-samples</name>
13+
<description>JavaFX on-screen keyboard component with xml layout configuration. Samples</description>
14+
<url>http://comtel2000.org</url>
15+
16+
<properties>
17+
<app.main.class>org.comtel2000.samples.fx.StandAloneApp</app.main.class>
18+
</properties>
19+
20+
<dependencies>
21+
<dependency>
22+
<groupId>org.comtel2000</groupId>
23+
<artifactId>fx-onscreen-keyboard</artifactId>
24+
<version>${project.version}</version>
25+
</dependency>
26+
<dependency>
27+
<groupId>org.comtel2000</groupId>
28+
<artifactId>fx-onscreen-keyboard-swing</artifactId>
29+
<version>${project.version}</version>
30+
</dependency>
31+
<dependency>
32+
<groupId>org.openjfx</groupId>
33+
<artifactId>javafx-swing</artifactId>
34+
<version>${javafx.version}</version>
35+
</dependency>
36+
<dependency>
37+
<groupId>org.openjfx</groupId>
38+
<artifactId>javafx-media</artifactId>
39+
<version>${javafx.version}</version>
40+
</dependency>
41+
<dependency>
42+
<groupId>org.slf4j</groupId>
43+
<artifactId>slf4j-api</artifactId>
44+
</dependency>
45+
<dependency>
46+
<groupId>org.slf4j</groupId>
47+
<artifactId>slf4j-simple</artifactId>
48+
<version>${slf4j.version}</version>
49+
</dependency>
50+
</dependencies>
51+
5252
</project>
Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
1-
fx-onscreen-keyboard
2-
3-
Copyright (C) 2014 - 2025, comtel2000
4-
5-
Redistribution and use in source and binary forms, with or without modification,
6-
are permitted provided that the following conditions are met:
7-
8-
1. Redistributions of source code must retain the above copyright notice, this
9-
list of conditions and the following disclaimer.
10-
11-
2. Redistributions in binary form must reproduce the above copyright notice,
12-
this list of conditions and the following disclaimer in the documentation
13-
and/or other materials provided with the distribution.
14-
15-
3. Neither the name of the comtel2000 nor the names of its contributors
16-
may be used to endorse or promote products derived from this software without
17-
specific prior written permission.
18-
19-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20-
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22-
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
23-
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
24-
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25-
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26-
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
27-
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
1+
fx-onscreen-keyboard
2+
3+
Copyright (C) 2014 - 2025, comtel2000
4+
5+
Redistribution and use in source and binary forms, with or without modification,
6+
are permitted provided that the following conditions are met:
7+
8+
1. Redistributions of source code must retain the above copyright notice, this
9+
list of conditions and the following disclaimer.
10+
11+
2. Redistributions in binary form must reproduce the above copyright notice,
12+
this list of conditions and the following disclaimer in the documentation
13+
and/or other materials provided with the distribution.
14+
15+
3. Neither the name of the comtel2000 nor the names of its contributors
16+
may be used to endorse or promote products derived from this software without
17+
specific prior written permission.
18+
19+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22+
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
23+
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
24+
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
27+
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
2828
OF THE POSSIBILITY OF SUCH DAMAGE.

0 commit comments

Comments
 (0)