X Tutup
Skip to content

Commit 225b04b

Browse files
Require Java 21 in README and gradle
1 parent b328213 commit 225b04b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Basic4GL for Java - BASIC language compiler and IDE
66

77
This repository contains the Java port of Basic4GL, a BASIC programming language that features OpenGL functionality.
88

9-
Basic4GLj features Windows and Mac OS support, requiring Java 17, and uses LWJGL to provide support for OpenGL functions.
9+
Basic4GLj features Windows and Mac OS support, requiring Java 21, and uses LWJGL to provide support for OpenGL functions.
1010

1111
Basic4GLj is licensed under a New BSD license - please see the LICENSES folder for more details and licenses for third-party libraries used.
1212

@@ -20,7 +20,7 @@ A `/samples` folder with example programs is included with each release that can
2020

2121
### Building the Application
2222

23-
This project requires Java 17 and uses Gradle for its builds.
23+
This project requires Java 21 and uses Gradle for its builds.
2424

2525
> ./gradlew :app:build
2626

app/src/main/dist/README.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Basic4GLj by Nathaniel Nielsen (c) 2023
55
Basic4GL by Tom Mulgrew (c) 2010
66
License: New BSD; see LICENSES folder
7-
Requires: Java 17
7+
Requires: Java 21
88

99
Site: https://github.com/NateIsStalling/Basic4GLj
1010
Twitter: @NateIsStalling
@@ -19,7 +19,7 @@
1919

2020
Exporting applications generates a launcher batch script.
2121

22-
Java 17 must be installed and in your system path.
22+
Java 21 must be installed and in your system path.
2323

2424
Paths of images resources and files loaded in user-made applications are relative to the current directory of the jar; this is a compatibility issue currently since earlier versions of Basic4GL find resources relative to the source code file
2525
Resources will need to be manually added to exported applications at this time; simply copy the files to the directory where the output jar is located, maintaining their path relative to the jar.
@@ -28,7 +28,7 @@
2828
Change Log
2929
================================================
3030
0.5.0 - Implemented sound library
31-
- Java 17 now embedded
31+
- Java 21 now embedded
3232

3333
0.4.1 - Updated LWJGL to stable version 3.3.1
3434
- Added LWJGL natives for macOS arm64, Linux arm32, Linux arm64, Windows x86, and Windows arm64

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44

55
java {
66
toolchain {
7-
languageVersion.set(JavaLanguageVersion.of(17))
7+
languageVersion.set(JavaLanguageVersion.of(21))
88
}
99
}
1010

0 commit comments

Comments
 (0)
X Tutup