Skip to content

Commit

Permalink
Merge pull request RPTools#4228 from cwisniew/main-merge-1.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cwisniew authored Aug 2, 2023
2 parents 3f39060 + 77384c8 commit 58ac64e
Show file tree
Hide file tree
Showing 834 changed files with 60,144 additions and 29,661 deletions.
34 changes: 34 additions & 0 deletions .github/ISSUE_TEMPLATE/code_improvement.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Refactoring
description: Suggest a refactoring to improve the codebase
title: "[Refactoring]: "
labels: ["code maintenance"]
body:
- type: markdown
attributes:
value: Thanks for taking the time to make a suggestion! Please fill out this form as completely and specifically as possible.
- type: textarea
attributes:
label: Describe the problem
description: A concise description of a problem in the codebase.
placeholder: E.g., a critical piece of code is duplicated many times.
validations:
required: true
- type: textarea
attributes:
label: The improvement you'd like to see
description: Explanation of how exactly you want the codebase to be changed.
placeholder: E.g., adding a new utility class would allow us to reduce the code duplication.
validations:
required: true
- type: textarea
attributes:
label: Expected Benefits
description: Explanation of why this suggestion is actually an improvement.
placeholder: E.g., deduplicating the code will allow us to make changes more easily without introducing discrepancies.
validations:
required: true
- type: textarea
attributes:
label: Additional Context
description: Add any other context about the problem here.
placeholder: E.g., improving this part of the code will be useful as part of a larger change that is in the works.
10 changes: 5 additions & 5 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
name: Feature Request
description: Suggest and idea for this project
description: Suggest an idea for this project
title: "[Feature]: "
labels: feature
body:
- type: textarea
attributes:
label: Feature Request
description: Describe your feature request
label: Describe the Problem
description: A clear and concise description of the problem you're facing.
placeholder: |
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Ex. I'm always frustrated when [...]
validations:
required: true
- type: textarea
attributes:
label: The Solution you'd like
description: A clear and concise description of what you want to happen.
description: A clear and concise description of the feature you would like added. The feature should be a way to solve the problem stated above.
validations:
required: true
- type: textarea
Expand Down
4 changes: 4 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ changelog:
exclude:
labels:
- repo-admin
- ignore-for-release-note
authors:
- rptools-automation
categories:
Expand All @@ -17,6 +18,9 @@ changelog:
- title: Bug Fixes 🩹
labels:
- bug
- title: Code Maintenance 🔧
labels:
- code-maintenance
- title: Other Changes 💬
labels:
- "*"
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macOS-latest]
java: [ '16' ]
java: [ '17' ]
fail-fast: false
steps:
# ____ _ __ __ ___ ____ __
Expand Down
15 changes: 8 additions & 7 deletions .github/workflows/verify-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,21 @@ jobs:
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: "16"
- uses: axel-op/googlejavaformat-action@v3
- name: Git checkout
uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v1
with:
args: "--dry-run --skip-sorting-imports --replace"
java-version: "17"
- name: spotlessCheck
run: ./gradlew spotlessCheck
build:
name: ${{ matrix.os }} w/JDK ${{ matrix.java }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macOS-latest]
java: [ '16' ]
java: [ '17' ]
fail-fast: false
steps:
- name: Git checkout
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,4 @@ build-resources/rptools-keystore
/report.html
/output.xml
/lib/jide/
/local.properties
347 changes: 226 additions & 121 deletions CHANGE_LOG.md

Large diffs are not rendered by default.

Loading

0 comments on commit 58ac64e

Please sign in to comment.