Skip to content
This repository has been archived by the owner on Jan 9, 2024. It is now read-only.

Commit

Permalink
feat: upgrade jdk version to 18 (#311)
Browse files Browse the repository at this point in the history
* feat: upgrade jdk version to 18

* feat: update action name

* feat: update issue template
  • Loading branch information
vran-dev authored Feb 23, 2023
1 parent ef45751 commit 64fcf38
Show file tree
Hide file tree
Showing 8 changed files with 53 additions and 59 deletions.
23 changes: 0 additions & 23 deletions .github/ISSUE_TEMPLATE/bug-report-----.md

This file was deleted.

17 changes: 0 additions & 17 deletions .github/ISSUE_TEMPLATE/feature-request-----.md

This file was deleted.

22 changes: 22 additions & 0 deletions .github/ISSUE_TEMPLATE/issue-report-----.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: 'Create Issue From Template'
about: 'PrettyZoo application ISSUE report'
title: 'Issue title'
assignees: 'vran-dev'
---

## Info

* Version: `latest`
* App distribution: `prettyzoo-win.msi`
* OS version: `win11`


## Description

> details what happened and expected

## Logs

> you can find log in {user.home}/.prettyZoo/log
12 changes: 0 additions & 12 deletions .github/ISSUE_TEMPLATE/question-----.md

This file was deleted.

22 changes: 22 additions & 0 deletions .github/ISSUE_TEMPLATE/问题反馈-----.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: 'Create Issue From Template'
about: 'PrettyZoo application ISSUE report'
title: 'Issue title'
assignees: 'vran-dev'
---

## 基本信息

* 版本号: `latest`
* 安装类型: `prettyzoo-win.msi`
* 系统版本: `win11`
* 当前系统是否安装有 JDK/JRE:`no`

## 描述

> 描述具体发生了什么和期望的结果,可选

## 日志

> 你可以在 `{user.home}/.prettyZoo/log` 目录下找到日志
10 changes: 6 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@ jobs:
os: [ windows-latest, macos-latest, ubuntu-latest ]

steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v1
- uses: actions/checkout@v3
- name: Set Up Java18
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'zulu'
java-version: '18'
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file

Expand All @@ -33,6 +34,7 @@ jobs:
with:
files: |
app/build/jpackage/*.msi
app/build/jpackage/*.zip
draft: true
fail_on_unmatched_files: true
env:
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'org.openjfx.javafxplugin' version '0.0.10'
id 'org.beryx.jlink' version '2.25.0'
id 'org.beryx.jlink' version '2.26.0'
id 'antlr'
id 'idea'
id 'application'
Expand All @@ -9,7 +9,7 @@ plugins {
checkstyleMain.source = "src/main/java"

javafx {
version = "17.0.1"
version = "18.0.2"
modules = ['javafx.controls', 'javafx.fxml', 'javafx.graphics', 'javafx.base']
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 64fcf38

Please sign in to comment.